userinfo.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <template>
  2. <view class="userinfo u-flex-col u-col-center">
  3. <view class="user-head" @click="changehead">
  4. <image v-if="userinfo.headimg" :src="userinfo.headimg" class="head" mode=""></image>
  5. <image v-else src="../../static/images/head.png" class="head" mode=""></image>
  6. <image src="../../static/images/xiangji.png" class="change" mode=""></image>
  7. </view>
  8. <input type="text" placeholder="请输入昵称" class="input" v-model="userinfo.name">
  9. <view class="user-btn" @click="save">
  10. 确认
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. userinfo: {
  19. headimg:'',
  20. name:''
  21. },
  22. ossdata:{}
  23. }
  24. },
  25. onLoad() {
  26. this.getuser()
  27. this.getoss()
  28. },
  29. methods: {
  30. getoss(){
  31. this.$u.post('/api/Upload/getSignedUrl').then(res => {
  32. this.ossdata = res.data
  33. })
  34. },
  35. changehead(){
  36. uni.chooseImage({
  37. count: 1,
  38. success: (img) => {
  39. var key = this.ossdata.key + new Date().getTime() + Math.floor(Math.random() * 150) + '.png'
  40. uni.uploadFile({
  41. url: this.ossdata.host, //输入你的bucketname.endpoint
  42. filePath: img.tempFilePaths[0],
  43. name: 'file',
  44. formData: {
  45. key: key,
  46. policy: this.ossdata.policy, // 输入你获取的的policy
  47. OSSAccessKeyId: this.ossdata.OSSAccessKeyId, // 输入你的AccessKeyId
  48. success_action_status: '200', // 让服务端返回200,不然,默认会返回204
  49. signature: this.ossdata.Signature, // 输入你获取的的signature
  50. },
  51. success: (res) => {
  52. if (res.statusCode == 200) {
  53. this.userinfo.headimg = this.ossdata.host + '/' + key
  54. this.$u.post('/api/Member/edit_member_info',{
  55. type:1,
  56. headimg:this.userinfo.headimg
  57. }).then(res => {
  58. this.$u.toast(res.msg)
  59. })
  60. }
  61. },
  62. fail: (err) => {
  63. console.log(err);
  64. }
  65. })
  66. }
  67. })
  68. },
  69. save(){
  70. if(!this.userinfo.name){
  71. this.$u.toast("请输入昵称")
  72. return
  73. }
  74. this.$u.post('/api/Member/edit_member_info',{
  75. type:2,
  76. name:this.userinfo.name
  77. }).then(res => {
  78. this.$u.toast(res.msg)
  79. })
  80. },
  81. getuser() {
  82. this.$u.post('/api/Member/member_info').then(res => {
  83. this.userinfo = res.data
  84. })
  85. }
  86. }
  87. }
  88. </script>
  89. <style lang="scss">
  90. .userinfo {
  91. .user-btn {
  92. position: fixed;
  93. bottom: 200rpx;
  94. left: 24rpx;
  95. width: 702rpx;
  96. line-height: 82rpx;
  97. background: #1F7EFF;
  98. border-radius: 8rpx;
  99. text-align: center;
  100. font-size: 28rpx;
  101. font-family: PingFangSC-Regular, PingFang SC;
  102. font-weight: 400;
  103. color: #FFFFFF;
  104. }
  105. .input {
  106. width: 400rpx;
  107. height: 100rpx;
  108. text-align: center;
  109. border-bottom: 2rpx solid rgba(216, 216, 216, 1);
  110. }
  111. .user-head {
  112. width: 256rpx;
  113. height: 256rpx;
  114. border-radius: 100%;
  115. position: relative;
  116. margin: 102rpx 0 30rpx 0;
  117. .head {
  118. width: 256rpx;
  119. height: 256rpx;
  120. border-radius: 100%;
  121. }
  122. .change {
  123. position: absolute;
  124. top: 50%;
  125. left: 50%;
  126. transform: translate(-50%, -50%);
  127. width: 78rpx;
  128. height: 78rpx;
  129. z-index: 10;
  130. }
  131. }
  132. }
  133. </style>