perfect.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <template>
  2. <view class="content">
  3. <view class="card">
  4. <view class="title">
  5. 上传身份证
  6. </view>
  7. <view class="top row">
  8. <view class="left" @click="chooseImg(1)">
  9. <image class="image-dom" :src="cardLeft" v-if="cardLeft !== ''"></image>
  10. </view>
  11. <view class="right" @click="chooseImg(2)">
  12. <image class="image-dom" :src="cardRight" v-if="cardRight !== ''"></image>
  13. </view>
  14. </view>
  15. </view>
  16. <view class="card margin-top">
  17. <view class="title">
  18. 上传营业执照
  19. </view>
  20. <view class="bottom row">
  21. <view class="image" @click="chooseImg(3)">
  22. <image class="image-dom" :src="imgBottom" v-if="imgBottom !== ''"></image>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="bottom-btn">
  27. <view class="btn" @click="push">
  28. 完善
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import {
  35. getToken
  36. } from "@/utils/auth.js";
  37. export default {
  38. data() {
  39. return {
  40. // 身份证正面
  41. cardLeft: "",
  42. // 身份证反面
  43. cardRight: "",
  44. // 营业执照
  45. imgBottom: ""
  46. }
  47. },
  48. methods: {
  49. // 点击确认
  50. push() {
  51. if (this.cardLeft === '') {
  52. this.$u.toast('请上传身份证正面')
  53. return false
  54. }
  55. if (this.cardRight === '') {
  56. this.$u.toast('请上传身份证反面')
  57. return false
  58. }
  59. if (this.imgBottom === '') {
  60. this.$u.toast('请上传营业执照')
  61. return false
  62. }
  63. this.request('/sender/verification', {
  64. id_z: this.cardLeft,
  65. id_f: this.cardRight,
  66. license: this.imgBottom,
  67. }, "POST").then(res => {
  68. if (res.code === 1) {
  69. this.$u.toast('完善成功')
  70. setTimeout(() => {
  71. uni.navigateBack({
  72. delta: 1
  73. })
  74. }, 2000)
  75. }
  76. })
  77. },
  78. // 点击选择图片
  79. chooseImg(type) {
  80. let _this = this
  81. uni.chooseImage({
  82. success(e) {
  83. uni.uploadFile({
  84. url: _this.url + '/common/upload', //仅为示例,非真实的接口地址
  85. filePath: e.tempFilePaths[0],
  86. header: {
  87. "token": getToken()
  88. },
  89. name: 'file',
  90. success: (res) => {
  91. let data = JSON.parse(decodeURIComponent(res.data))
  92. if (type === 1) {
  93. _this.cardLeft = data.data.url
  94. }
  95. if (type === 2) {
  96. _this.cardRight = data.data.url
  97. }
  98. if (type === 3) {
  99. _this.imgBottom = data.data.url
  100. }
  101. }
  102. })
  103. }
  104. })
  105. }
  106. }
  107. }
  108. </script>
  109. <style lang="scss">
  110. .content {
  111. padding-top: 30rpx;
  112. .title {
  113. font-size: 36rpx;
  114. }
  115. .margin-top {
  116. margin-top: 40rpx;
  117. }
  118. }
  119. .card {
  120. width: 93%;
  121. padding: 30rpx;
  122. margin: 0 auto;
  123. background-color: #FFFFFF;
  124. border-radius: 30rpx;
  125. .top {
  126. .left {
  127. width: 300rpx;
  128. height: 200rpx;
  129. background-image: url("https://ldc365.cn/assets/static/1/107.png");
  130. background-size: 100% 100%;
  131. background-repeat: no-repeat;
  132. }
  133. .right {
  134. width: 300rpx;
  135. height: 200rpx;
  136. background-image: url("https://ldc365.cn/assets/static/1/106.png");
  137. background-size: 100% 100%;
  138. background-repeat: no-repeat;
  139. }
  140. }
  141. .bottom {
  142. display: flex;
  143. flex-direction: row;
  144. align-items: center;
  145. justify-content: center;
  146. .image {
  147. height: 300rpx;
  148. width: 600rpx;
  149. background-image: url("https://ldc365.cn/assets/static/1/82.png");
  150. background-size: 100% 100%;
  151. background-repeat: no-repeat;
  152. }
  153. }
  154. }
  155. .image-dom {
  156. width: 100%;
  157. height: 100%;
  158. }
  159. // 完成按钮
  160. .bottom-btn {
  161. position: fixed;
  162. bottom: 0;
  163. width: 100%;
  164. height: 10vh;
  165. display: flex;
  166. flex-direction: column;
  167. align-items: center;
  168. justify-content: center;
  169. background-color: #FFFFFF;
  170. .btn {
  171. width: 100%;
  172. color: #E68500;
  173. background-color: #FFE3A0;
  174. height: 80rpx;
  175. border-radius: 50rpx;
  176. text-align: center;
  177. line-height: 80rpx;
  178. }
  179. }
  180. </style>