applyMaintenance.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <template>
  2. <view class="content">
  3. <view class="box1">
  4. <view class="steps hflex acenter jcenter">
  5. <u-steps :current="current">
  6. <u-steps-item title="个人信息"></u-steps-item>
  7. <u-steps-item title="工作信息"></u-steps-item>
  8. <u-steps-item title="审核"></u-steps-item>
  9. </u-steps>
  10. </view>
  11. <view v-if="current == 0">
  12. <view class="title">个人信息</view>
  13. <view class="hflex acenter jbetween cell">
  14. <view class="left">姓名</view>
  15. <u-input v-model="userInfo.name" placeholder="请输入您的姓名" inputAlign="right" border="none"></u-input>
  16. </view>
  17. <view class="hflex acenter jbetween cell">
  18. <view class="left">身份证号</view>
  19. <u-input v-model="userInfo.idNumber" placeholder="请输入您的身份证号" inputAlign="right" border="none"></u-input>
  20. </view>
  21. <view class="hflex acenter jbetween cell">
  22. <view class="left">邮箱</view>
  23. <u-input v-model="userInfo.eamil" placeholder="请输入您的邮箱" inputAlign="right" border="none"></u-input>
  24. </view>
  25. <view class="hflex acenter jbetween cell">
  26. <view class="left">地址</view>
  27. <u-input v-model="userInfo.address" placeholder="请输入您的地址" inputAlign="right" border="none"></u-input>
  28. </view>
  29. <view class="line"></view>
  30. <view class="cell">
  31. <view class="img_title">身份证人像面照片</view>
  32. <view class="upload_img hflex acenter jcenter">
  33. <u-upload :fileList="userInfo.fileList1" @afterRead="afterRead" @delete="deletePic" :maxCount="1" name="1" multiple :previewFullImage="true" width="110" height="110">
  34. <image src="/static/images/comment/upload-just.png" style="width: 550rpx;height: 324rpx;"></image>
  35. </u-upload>
  36. </view>
  37. </view>
  38. <view class="cell">
  39. <view class="img_title">身份证人像面照片</view>
  40. <view class="upload_img hflex acenter jcenter">
  41. <u-upload :fileList="userInfo.fileList2" @afterRead="afterRead" @delete="deletePic" :maxCount="1" name="1" multiple :previewFullImage="true" width="110" height="110">
  42. <image src="/static/images/comment/upload-back.png" style="width: 550rpx;height: 324rpx;"></image>
  43. </u-upload>
  44. </view>
  45. </view>
  46. <view class="bottom">
  47. <view class="btn" @click="next">下一步</view>
  48. </view>
  49. </view>
  50. <view v-if="current == 1">
  51. <view class="title">工作信息</view>
  52. <view class="cell">
  53. <view class="img_title">营业执照(必填)</view>
  54. <view class="upload_img hflex acenter jcenter">
  55. <u-upload :fileList="userInfo.fileList3" @afterRead="afterRead" @delete="deletePic" :maxCount="1" name="1" multiple :previewFullImage="true" width="110" height="110">
  56. <image src="/static/images/comment/upload-just.png" style="width: 550rpx;height: 324rpx;"></image>
  57. </u-upload>
  58. </view>
  59. </view>
  60. <view class="cell">
  61. <view class="img_title">厂家授权(非必填)</view>
  62. <view class="upload_img hflex acenter jcenter">
  63. <u-upload :fileList="userInfo.fileList4" @afterRead="afterRead" @delete="deletePic" :maxCount="1" name="1" multiple :previewFullImage="true" width="110" height="110">
  64. <image src="/static/images/comment/upload-just.png" style="width: 550rpx;height: 324rpx;"></image>
  65. </u-upload>
  66. </view>
  67. </view>
  68. <view class="cell">
  69. <view class="img_title">以往业绩</view>
  70. </view>
  71. </view>
  72. </view>
  73. </view>
  74. </template>
  75. <script>
  76. import $api from '@/static/js/api.js'
  77. var that = ''
  78. export default {
  79. data() {
  80. return {
  81. current: 0,
  82. userInfo: {
  83. name: '',
  84. idNumber: '',
  85. eamil: '',
  86. address: '',
  87. fileList1: [],
  88. fileList2: [],
  89. fileList3: [],
  90. fileList4: [],
  91. }
  92. }
  93. },
  94. onLoad() {
  95. that = this
  96. },
  97. methods: {
  98. // 删除图片
  99. deletePic(event) {
  100. // that.userInfo.imgList.splice(event.index, 1)
  101. console.log(event)
  102. this[`fileList${event.name}`].splice(event.index, 1)
  103. },
  104. // 新增图片
  105. async afterRead(event) {
  106. let lists = [].concat(event.file)
  107. let fileListLen = this[`fileList${event.name}`].length
  108. lists.map((item) => {
  109. this[`fileList${event.name}`].push({
  110. ...item,
  111. status: 'uploading',
  112. message: '上传中'
  113. })
  114. })
  115. for (let i = 0; i < lists.length; i++) {
  116. const result = await this.uploadFilePromise(lists[i].url)
  117. let item = this[`fileList${event.name}`][fileListLen]
  118. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  119. status: 'success',
  120. message: '',
  121. url: result
  122. }))
  123. fileListLen++
  124. }
  125. },
  126. // 上传图片
  127. uploadFilePromise(url) {
  128. return new Promise((resolve, reject) => {
  129. let a = uni.uploadFile({
  130. url: 'http://192.168.2.21:7001/upload', // 仅为示例,非真实的接口地址
  131. filePath: url,
  132. name: 'file',
  133. formData: {
  134. user: 'test'
  135. },
  136. success: (res) => {
  137. setTimeout(() => {
  138. resolve(res.data.data)
  139. }, 1000)
  140. }
  141. });
  142. })
  143. },
  144. next() {
  145. that.current = that.current + 1
  146. // if ($api.formCheck(that.userInfo.name,'truename') && $api.formCheck(that.userInfo.idNumber,'identity') && $api.formCheck(that.userInfo.eamil,'email') && $api.formCheck(that.userInfo.address,'required') && $api.formCheck(that.userInfo.just_img,'required') && $api.formCheck(that.userInfo.back_img,'required')) {
  147. // that.current = that.current + 1
  148. // }
  149. }
  150. },
  151. }
  152. </script>
  153. <style lang="scss" scoped>
  154. .content::v-deep {
  155. padding: 0 40rpx;
  156. .box1 {
  157. .steps {
  158. width: 100%;
  159. height: 188rpx;
  160. }
  161. .title {
  162. font-size: 32rpx;
  163. color: #444;
  164. margin: 8rpx 0;
  165. position: relative;
  166. z-index: 9;
  167. }
  168. .title::before {
  169. width: 120rpx;
  170. height: 16rpx;
  171. background: linear-gradient(270deg, #506dff 0%, #fff 100%);
  172. content: "";
  173. position: absolute;
  174. left: 0;
  175. bottom: 0;
  176. z-index: 2;
  177. opacity: 0.8;
  178. }
  179. .u-input {
  180. width: 100%;
  181. margin-top: 30rpx;
  182. }
  183. .cell {
  184. width: 100%;
  185. padding: 20rpx 0;
  186. .left {
  187. font-size: 28rpx;
  188. color: #222;
  189. }
  190. .u-input {
  191. font-size: 28rpx;
  192. color: #222;
  193. }
  194. .img_title {
  195. font-size: 28rpx;
  196. color: #444;
  197. }
  198. .upload_img {
  199. width: 670rpx;
  200. height: 404rpx;
  201. background-color: #f4f4f4;
  202. border-radius: 20rpx;
  203. margin: 28rpx 0 40rpx;
  204. }
  205. .u-upload__wrap {
  206. display: flex;
  207. align-items: center !important;
  208. justify-content: center !important;
  209. }
  210. }
  211. .line {
  212. width: 100%;
  213. height: 1rpx;
  214. background-color: #f4f4f4;
  215. }
  216. .bottom {
  217. width: 100%;
  218. margin: 40rpx 0 64rpx;
  219. .btn {
  220. width: 690rpx;
  221. height: 88rpx;
  222. text-align: center;
  223. line-height: 88rpx;
  224. border-radius: 44rpx;
  225. background-color: #506dff;
  226. color: #fff;
  227. font-size: 36rpx;
  228. }
  229. }
  230. }
  231. }
  232. </style>