edit.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <template>
  2. <view>
  3. <view class="wrap">
  4. <tui-form ref="refLoginForm" :show-message="false">
  5. <view>
  6. <tui-input
  7. v-model="cardObj.name" label="姓名" type="number" padding="26rpx 20rpx 26rpx 0"
  8. placeholder-style="color: #f3c1c4;font-size: 32rpx;" label-color="#ffffff" border-color="#EA5B1D"
  9. placeholder="请输入姓名" background-color="transparent" :border-top="false" color="#ffffff"
  10. style="border-bottom: 2rpx solid #ffffff;"
  11. ></tui-input>
  12. </view>
  13. <view>
  14. <tui-input
  15. v-model="cardObj.phone" label="+ 86" type="number" padding="26rpx 20rpx 26rpx 0"
  16. placeholder-style="color: #f3c1c4;font-size: 32rpx;" label-color="#ffffff" border-color="#EA5B1D"
  17. placeholder="请输入电话" background-color="transparent" :border-top="false" color="#ffffff"
  18. style="border-bottom: 2rpx solid #ffffff;"
  19. ></tui-input>
  20. </view>
  21. <view>
  22. <JUpload
  23. title="头像" :img-url="common.seamingImgUrl(cardObj.head_img)" @upload="handleSaveHeadImg"
  24. @delete="cardObj.head_img = '' || $forceUpdate()"
  25. ></JUpload>
  26. </view>
  27. </tui-form>
  28. <view class="wrap">
  29. <view style="float:left;width: 40px;">
  30. <tui-icon
  31. v-if="checked" name="circle-fill" :size="34" unit="rpx"
  32. color="#c5aa7b" margin="0 15rpx 0 0" @click="checked = false"
  33. ></tui-icon>
  34. <tui-icon
  35. v-else name="circle" :size="34" unit="rpx"
  36. color="#cccccc" margin="0 15rpx 0 0" @click="checked = true"
  37. ></tui-icon>
  38. </view>
  39. <text style="float:left;color:#04498c" @click="goAgree()">同意用户服务协议&隐私政策</text>
  40. </view>
  41. </view>
  42. <view class="bottom-block"></view>
  43. <view class="bottombtn" type="primary" @click="onSave">立即保存</view>
  44. </view>
  45. </template>
  46. <script>
  47. import { USER_INFO } from '../../../constant'
  48. export default {
  49. name: 'Edit',
  50. components: {},
  51. data() {
  52. return {
  53. checked: false,
  54. cardObj: {},
  55. fileList1: [],
  56. isAdd: true,
  57. rules: {
  58. 'cardObj.name': {
  59. type: 'string',
  60. required: true,
  61. message: '必填',
  62. trigger: ['blur', 'change']
  63. },
  64. 'cardObj.phone': {
  65. type: 'string',
  66. required: true,
  67. message: '必填',
  68. trigger: ['blur', 'change']
  69. }
  70. }
  71. }
  72. },
  73. mounted() { },
  74. async onLoad(options) {
  75. if (uni.getStorageSync(USER_INFO)) {
  76. var user = uni.getStorageSync(USER_INFO)
  77. const res = await request('uni-card', 'getMyCard', {
  78. uid: user.id
  79. }, {
  80. showloading: true
  81. })
  82. if (res.uid == null) { this.isAdd = true } else {
  83. if (res.uid != user.id) {
  84. uni.navigateTo({
  85. url: '/pages/index'
  86. })
  87. }
  88. this.cardObj = res
  89. this.isAdd = false
  90. this.fileList1.push({
  91. url: res.head_img
  92. })
  93. }
  94. }
  95. },
  96. methods: {
  97. handleSaveHeadImg() {
  98. this.cardObj.head_img = e
  99. this.$forceUpdate()
  100. },
  101. goAgree() {
  102. uni.navigateTo({
  103. url: '/pages/agree'
  104. })
  105. },
  106. changeClick() {
  107. console.log('this.checked', this.checked)
  108. },
  109. async onSave() {
  110. if (!this.checked) {
  111. this.$showToast('请点击同意用户服务协议&隐私政策')
  112. return
  113. }
  114. if (!this.cardObj.name) {
  115. this.$showToast('请填写姓名')
  116. return
  117. }
  118. if (!this.cardObj.phone) {
  119. this.$showToast('请填写电话')
  120. return
  121. }
  122. var user = uni.getStorageSync(USER_INFO)
  123. this.cardObj.uid = user.id
  124. const res = await request('uni-card', 'saveCard', this.cardObj, {
  125. showloading: true
  126. })
  127. console.log('res', res)
  128. this.$showToast('保存成功')
  129. uni.navigateTo({
  130. url: '/pages/index'
  131. })
  132. },
  133. deletePic(event) {
  134. this.fileList1 = []
  135. this.cardObj.head_img = ''
  136. },
  137. async afterRead(event) {
  138. console.log('event', event)
  139. const result = await this.uploadFilePromise(event.file.url)
  140. },
  141. uploadFilePromise(url) {
  142. return new Promise((resolve, reject) => {
  143. var $chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678'
  144. var maxLen = $chars.length
  145. var noncestr = ''
  146. for (var i = 0; i < 32; i++) {
  147. noncestr += $chars.charAt(Math.floor(Math.random() * maxLen))
  148. }
  149. var that = this
  150. uniCloud.uploadFile({
  151. filePath: url,
  152. cloudPath: noncestr + '.jpg',
  153. onUploadProgress(progressEvent) {
  154. console.log('上传进度', progressEvent)
  155. var percentCompleted = Math.round((progressEvent.loaded * 100) / progressEvent.total)
  156. },
  157. success(e) {
  158. console.log('uploadFile', e)
  159. that.fileList1.push({
  160. url: e.fileID
  161. })
  162. that.cardObj.head_img = e.fileID
  163. },
  164. fail() { },
  165. complete() { }
  166. })
  167. })
  168. }
  169. }
  170. }
  171. </script>
  172. <style lang="less">
  173. /deep/.u-scroll-bar {
  174. background: red !important;
  175. }
  176. .wrap {
  177. padding: 20px;
  178. }
  179. .bottombtn {
  180. position: fixed;
  181. bottom: 0;
  182. width: 100%;
  183. height: 60px;
  184. background: #007AFF;
  185. color: #fff;
  186. line-height: 60px;
  187. text-align: center;
  188. }
  189. .bottom-block {
  190. display: block;
  191. width: 100%;
  192. height: 80px;
  193. }
  194. </style>