applyMaintenance.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  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. <picker mode="region" @change="changeAddress" :value="index" >
  26. <view class="hflex acenter jbetween cell">
  27. <view class="left">所在地区</view>
  28. <u-input border="none" inputAlign="right" v-model="userInfo.region" placeholder="请选择省市区" suffixIcon="arrow-right" suffixIconStyle="color: #b7b7b7"></u-input>
  29. </view>
  30. </picker>
  31. <view class="hflex acenter jbetween cell">
  32. <view class="left">地址</view>
  33. <u-input v-model="userInfo.address" placeholder="请输入您的地址" inputAlign="right" border="none"></u-input>
  34. </view>
  35. <view class="line"></view>
  36. <view class="cell">
  37. <view class="img_title">身份证人像面照片</view>
  38. <view class="upload_img hflex acenter jcenter">
  39. <u-upload :fileList="userInfo.fileList1" @afterRead="afterRead" @delete="deletePic" :maxCount="1" name="1" multiple :previewFullImage="true" width="550rpx" height="324rpx">
  40. <image src="/static/images/comment/upload-just.png" style="width: 550rpx;height: 324rpx;"></image>
  41. </u-upload>
  42. </view>
  43. </view>
  44. <view class="cell">
  45. <view class="img_title">身份证国徽面照片</view>
  46. <view class="upload_img hflex acenter jcenter">
  47. <u-upload :fileList="userInfo.fileList2" @afterRead="afterRead" @delete="deletePic" :maxCount="1" name="2" multiple :previewFullImage="true" width="550rpx" height="324rpx">
  48. <image src="/static/images/comment/upload-back.png" style="width: 550rpx;height: 324rpx;"></image>
  49. </u-upload>
  50. </view>
  51. </view>
  52. <view class="bottom">
  53. <view class="btn" @click="next">下一步</view>
  54. </view>
  55. </view>
  56. <view v-if="current == 1">
  57. <view class="title">工作信息</view>
  58. <view class="cell">
  59. <view class="img_title">营业执照(必填)</view>
  60. <view class="upload_img hflex acenter jcenter">
  61. <u-upload :fileList="userInfo.fileList3" @afterRead="afterRead" @delete="deletePic" :maxCount="1" name="3" multiple :previewFullImage="true" width="550rpx" height="324rpx">
  62. <image src="/static/images/comment/upload-business.png" style="width: 550rpx;height: 324rpx;"></image>
  63. </u-upload>
  64. </view>
  65. </view>
  66. <view class="cell">
  67. <view class="img_title">厂家授权(非必填)</view>
  68. <view class="upload_img hflex acenter jcenter">
  69. <u-upload :fileList="userInfo.fileList4" @afterRead="afterRead" @delete="deletePic" :maxCount="1" name="4" multiple :previewFullImage="true" width="550rpx" height="324rpx">
  70. <image src="/static/images/comment/upload-business.png" style="width: 550rpx;height: 324rpx;"></image>
  71. </u-upload>
  72. </view>
  73. </view>
  74. <view class="cell">
  75. <view class="img_title">以往业绩</view>
  76. <view class="img_subtitle">请详细描述您的以往业绩</view>
  77. <u-input v-model="userInfo.achievement" border="bottom"></u-input>
  78. </view>
  79. <view class="bottom">
  80. <view class="btn" @click="submit">提交</view>
  81. </view>
  82. </view>
  83. <view v-if="current == 2" class="box vflex acenter jcenter">
  84. <view v-if="state == 1" class="vflex acenter jcenter">
  85. <image src="/static/images/comment/wait.png" class="box1_img"></image>
  86. <view class="box1_title">审核中</view>
  87. <view class="box1_subTitle">预计审核时间3个工作日</view>
  88. <view class="box1_subTitle">请留意当前页面变动</view>
  89. <view class="btn" @click="result">返回</view>
  90. </view>
  91. <view v-if="state == 3" class="vflex acenter jcenter">
  92. <image src="/static/images/comment/error.png" class="box1_img"></image>
  93. <view class="box1_title">审核失败</view>
  94. <view class="box1_subTitle">驳回原因</view>
  95. <view class="box1_subTitle">{{reason}}<span style="color: #506dff;margin-left: 8rpx;" @click="edit">立即修改></span></view>
  96. <view class="btn" @click="result">返回</view>
  97. </view>
  98. </view>
  99. </view>
  100. </view>
  101. </template>
  102. <script>
  103. import $api from '@/static/js/api.js'
  104. var that = ''
  105. export default {
  106. data() {
  107. return {
  108. current: 0,
  109. userInfo: {
  110. name: '',
  111. idNumber: '',
  112. eamil: '',
  113. region: '',
  114. address: '',
  115. province: '',
  116. city:'',
  117. area: '',
  118. fileList1: [],
  119. fileList2: [],
  120. fileList3: [],
  121. fileList4: [],
  122. achievement: '',
  123. },
  124. fileList1: '',
  125. fileList2: '',
  126. fileList3: '',
  127. fileList4: '',
  128. state: 1,
  129. reason: '',
  130. }
  131. },
  132. onLoad() {
  133. that = this
  134. that.getPreData()
  135. },
  136. methods: {
  137. getPreData() {
  138. var pages = getCurrentPages()
  139. var prePage = pages[pages.length - 2]
  140. var maintenance = prePage.$vm.user.maintenance
  141. if(maintenance) {
  142. that.userInfo = {
  143. name: maintenance.name,
  144. idNumber: maintenance.id_card,
  145. eamil: maintenance.eamil,
  146. region: maintenance.province + maintenance.city + maintenance.area,
  147. address: maintenance.results,
  148. province: maintenance.province,
  149. city:maintenance.city,
  150. area: maintenance.area,
  151. fileList1: maintenance.id_card_img1.split(','),
  152. fileList2: maintenance.id_card_img2.split(','),
  153. fileList3: maintenance.business_img.split(','),
  154. fileList4: maintenance.authorization_img.split(','),
  155. achievement: maintenance.results,
  156. id: maintenance.id
  157. }
  158. that.state = maintenance.audit
  159. that.reason = maintenance.why
  160. if(that.state == 1 || that.state == 3) {
  161. that.current = 2
  162. }
  163. }
  164. },
  165. // 选择所在地区
  166. changeAddress(e) {
  167. console.log(e);
  168. that.userInfo.region = e.detail.value[0] + '-' + e.detail.value[1] + '-' + e.detail.value[2]
  169. that.userInfo.province = e.detail.value[0]
  170. that.userInfo.city = e.detail.value[1]
  171. that.userInfo.area = e.detail.value[2]
  172. },
  173. // 删除图片
  174. deletePic(event) {
  175. // that.userInfo.imgList.splice(event.index, 1)
  176. console.log(event)
  177. this.userInfo[`fileList${event.name}`].splice(event.index, 1)
  178. },
  179. // 新增图片
  180. async afterRead(event) {
  181. console.log(`fileList${event.name}`);
  182. console.log(this.userInfo[`fileList${event.name}`]);
  183. let lists = [].concat(event.file)
  184. let fileListLen = this.userInfo[`fileList${event.name}`].length
  185. lists.map((item) => {
  186. this.userInfo[`fileList${event.name}`].push({
  187. ...item,
  188. status: 'uploading',
  189. message: '上传中'
  190. })
  191. })
  192. for (let i = 0; i < lists.length; i++) {
  193. const result = await this.uploadFilePromise(lists[i].url)
  194. let item = this.userInfo[`fileList${event.name}`][fileListLen]
  195. this.userInfo[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  196. status: 'success',
  197. message: '',
  198. url: result.url
  199. }))
  200. fileListLen++
  201. }
  202. if(that.userInfo[`fileList${event.name}`].length > 0) {
  203. for(var i=0;i<that.userInfo[`fileList${event.name}`].length;i++) {
  204. if(i == that.userInfo[`fileList${event.name}`].length -1) {
  205. that[`fileList${event.name}`] += that.userInfo[`fileList${event.name}`][i].url
  206. } else {
  207. that[`fileList${event.name}`] += that.userInfo[`fileList${event.name}`][i].url + ','
  208. }
  209. }
  210. }
  211. },
  212. // 上传图片
  213. uploadFilePromise(url) {
  214. return new Promise((resolve, reject) => {
  215. let a = uni.uploadFile({
  216. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  217. filePath: url,
  218. name: 'file',
  219. header: {
  220. 'api-token': uni.getStorageSync('token').token?uni.getStorageSync('token').token:'',
  221. 'api-name': 'wxapp'
  222. },
  223. formData: {
  224. user: 'test'
  225. },
  226. success: (res) => {
  227. console.log(res);
  228. setTimeout(() => {
  229. var data = JSON.parse(res.data)
  230. resolve(data.data)
  231. }, 1000)
  232. }
  233. });
  234. })
  235. },
  236. next() {
  237. // that.current = that.current + 1
  238. 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.fileList1,'required') && $api.formCheck(that.fileList2,'required')) {
  239. that.current = that.current + 1
  240. console.log(that.fileList1);
  241. console.log(that.fileList2);
  242. }
  243. },
  244. submit() {
  245. var u = that.userInfo
  246. // that.current = that.current + 1
  247. if ($api.formCheck(that.fileList3,'required') && $api.formCheck(that.userInfo.achievement,'required')) {
  248. $api.req({
  249. url: '/data/api.auth.Center/addupmaintenance',
  250. method: 'POST',
  251. data: {
  252. id: u.id?u.id: '',
  253. name: u.name,
  254. id_card: u.idNumber,
  255. email: u.eamil,
  256. province: u.province,
  257. city: u.city,
  258. area: u.area,
  259. address: u.address,
  260. id_card_img1: that.fileList1,
  261. id_card_img2: that.fileList2,
  262. business_img: that.fileList3,
  263. authorization_img: that.fileList4,
  264. results: u.achievement,
  265. }
  266. }, function(res) {
  267. if(res.code == 1) {
  268. $api.info(res.info)
  269. that.current = that.current + 1
  270. }
  271. })
  272. }
  273. },
  274. edit() {
  275. that.state = 0
  276. },
  277. result() {
  278. $api.jump('/pages/tabbar/mine/mine',3)
  279. }
  280. },
  281. }
  282. </script>
  283. <style lang="scss" scoped>
  284. .content::v-deep {
  285. padding: 0 40rpx;
  286. .box1 {
  287. .steps {
  288. width: 100%;
  289. height: 188rpx;
  290. }
  291. .title {
  292. font-size: 32rpx;
  293. color: #444;
  294. margin: 8rpx 0;
  295. position: relative;
  296. z-index: 9;
  297. }
  298. .title::before {
  299. width: 120rpx;
  300. height: 16rpx;
  301. background: linear-gradient(270deg, #506dff 0%, #fff 100%);
  302. content: "";
  303. position: absolute;
  304. left: 0;
  305. bottom: 0;
  306. z-index: 2;
  307. opacity: 0.8;
  308. }
  309. .u-input {
  310. width: 100%;
  311. // margin-top: 30rpx;
  312. }
  313. .cell {
  314. width: 100%;
  315. padding: 20rpx 0;
  316. .left {
  317. font-size: 28rpx;
  318. color: #222;
  319. }
  320. .u-input {
  321. font-size: 28rpx;
  322. color: #222;
  323. }
  324. .img_title {
  325. font-size: 28rpx;
  326. color: #444;
  327. }
  328. .upload_img {
  329. width: 670rpx;
  330. height: 404rpx;
  331. background-color: #f4f4f4;
  332. border-radius: 20rpx;
  333. margin: 28rpx 0 40rpx;
  334. }
  335. .u-upload__wrap {
  336. display: flex;
  337. align-items: center !important;
  338. justify-content: center !important;
  339. }
  340. .img_subtitle {
  341. font-size: 28rpx;
  342. color: #A3A3A3;
  343. padding: 12rpx 0;
  344. }
  345. .u-input {
  346. width: 100%;
  347. // margin-top: 30rpx;
  348. }
  349. }
  350. .line {
  351. width: 100%;
  352. height: 1rpx;
  353. background-color: #f4f4f4;
  354. }
  355. .bottom {
  356. width: 100%;
  357. margin: 40rpx 0 64rpx;
  358. .btn {
  359. width: 690rpx;
  360. height: 88rpx;
  361. text-align: center;
  362. line-height: 88rpx;
  363. border-radius: 44rpx;
  364. background-color: #506dff;
  365. color: #fff;
  366. font-size: 36rpx;
  367. }
  368. }
  369. }
  370. .box {
  371. width: 100%;
  372. // height: 100vh;
  373. background-color: #fff;
  374. .box1_img {
  375. width: 124rpx;
  376. height: 124rpx;
  377. margin: 108rpx 0 40rpx;
  378. }
  379. .box1_title {
  380. font-size: 32rpx;
  381. color: #222;
  382. margin-bottom: 24rpx;
  383. }
  384. .box1_subTitle {
  385. margin: 12rpx 0;
  386. font-size: 26rpx;
  387. color: #999999;
  388. }
  389. .btn {
  390. width: 530rpx;
  391. height: 88rpx;
  392. background-color: #506dff;
  393. color: #fff;
  394. text-align: center;
  395. line-height: 88rpx;
  396. border-radius: 44rpx;
  397. font-size: 36rpx;
  398. margin-top: 122rpx;
  399. }
  400. }
  401. }
  402. </style>