personalInformation.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <template>
  2. <view class="page">
  3. <view class="content">
  4. <view class="header">
  5. <text>{{i18n.headerImg}}</text>
  6. <image @click="upimage" class="header-img"
  7. :src="filePath" mode=""></image>
  8. </view>
  9. <view class="bottom-text" @click="toName">
  10. <text>{{i18n.nickname}}</text>
  11. <AllRight :name="nickname"></AllRight>
  12. </view>
  13. </view>
  14. <view class="bottom" style="">
  15. <view class="red" @click="update">{{i18n.preserve}}</view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. import AllRight from '../mineComponent/allRight/allRight.vue'
  21. export default {
  22. components: {
  23. AllRight
  24. },
  25. data() {
  26. return {
  27. nickname: '张三',
  28. filePath: '',
  29. language:'cn'
  30. };
  31. },
  32. computed: {
  33. i18n() {
  34. return this.$t('index')
  35. }
  36. },
  37. mounted() {
  38. if(uni.getStorageSync('user_info')){
  39. this.filePath = uni.getStorageSync('user_info').avatar
  40. this.nickname = uni.getStorageSync('user_info').nickname
  41. }
  42. if(uni.getStorageSync('language')){
  43. this.language = uni.getStorageSync('language')
  44. if(this.language == 'zh-CN'){
  45. this.language = 'cn'
  46. }else if(this.language == 'en-US'){
  47. this.language = 'en'
  48. }else if(this.language == 'es-ES'){
  49. this.language = 'es'
  50. }else if(this.language == 'it-IT'){
  51. this.language = 'ita'
  52. }
  53. }
  54. uni.setNavigationBarTitle({
  55. title: this.i18n.information
  56. })
  57. },
  58. methods: {
  59. update(){
  60. uni.$u.http.post('/api/member/update', {
  61. lang: this.language.slice(0,2),
  62. avatar: this.filePath,
  63. nickname: this.nickname
  64. }).then((res) => {
  65. uni.setStorageSync('user_info',res)
  66. this.$u.toast('保存成功')
  67. setTimeout(()=>{
  68. const eventChannel = this.getOpenerEventChannel();
  69. eventChannel.emit("loadData");
  70. uni.navigateBack()
  71. },500)
  72. }).catch(() => {
  73. })
  74. },
  75. upimage() {
  76. uni.chooseImage({
  77. success: (chooseImageRes) => {
  78. const tempFilePaths = chooseImageRes.tempFilePaths;
  79. uni.uploadFile({
  80. url: 'https://cbec.hdlkeji.com/api/upload/images', //仅为示例,非真实的接口地址
  81. filePath: tempFilePaths[0],
  82. name: 'file',
  83. // formData: {
  84. // 'user': 'test'
  85. // },
  86. success: (uploadFileRes) => {
  87. this.filePath = JSON.parse(uploadFileRes.data).data.filePath
  88. }
  89. });
  90. }
  91. });
  92. },
  93. toName() {
  94. var that = this
  95. uni.navigateTo({
  96. url: '/pageC/editName/editName?name=' + this.nickname,
  97. events:{
  98. getname(res){
  99. console.log(res);
  100. that.nickname = res
  101. }
  102. }
  103. })
  104. }
  105. }
  106. }
  107. </script>
  108. <style lang="scss" scoped>
  109. .bottom {
  110. width: 750rpx;
  111. height: 166rpx;
  112. background: #FFFFFF;
  113. padding: 16rpx 32rpx 64rpx;
  114. position: fixed;
  115. bottom: 0;
  116. left: 0;
  117. box-sizing: border-box;
  118. }
  119. .red {
  120. width: 686rpx;
  121. height: 88rpx;
  122. background: #F83224;
  123. box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
  124. border-radius: 44rpx;
  125. font-family: PingFangSC, PingFang SC;
  126. font-weight: 500;
  127. font-size: 32rpx;
  128. color: #FFFFFF;
  129. line-height: 88rpx;
  130. text-align: center;
  131. font-style: normal;
  132. }
  133. .page {
  134. padding: 20rpx 24rpx;
  135. .content {
  136. background-color: #fff;
  137. border-radius: 16rpx;
  138. padding: 0 20rpx;
  139. .header {
  140. display: flex;
  141. justify-content: space-between;
  142. align-items: center;
  143. height: 176rpx;
  144. border-bottom: 2rpx solid rgba(151, 151, 151, .2);
  145. .header-img {
  146. height: 116rpx;
  147. width: 116rpx;
  148. border-radius: 50%;
  149. }
  150. }
  151. .bottom-text {
  152. display: flex;
  153. height: 116rpx;
  154. justify-content: space-between;
  155. align-items: center;
  156. }
  157. }
  158. }
  159. </style>