applyMaintenance.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  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" disabled disabledColor="#fff" 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. id: '',
  111. name: '',
  112. idNumber: '',
  113. eamil: '',
  114. region: '',
  115. address: '',
  116. province: '',
  117. city:'',
  118. area: '',
  119. fileList1: [],
  120. fileList2: [],
  121. fileList3: [],
  122. fileList4: [],
  123. achievement: '',
  124. },
  125. fileList1: '',
  126. fileList2: '',
  127. fileList3: '',
  128. fileList4: '',
  129. state: 1,
  130. reason: '',
  131. }
  132. },
  133. onLoad() {
  134. that = this
  135. that.getPreData()
  136. },
  137. methods: {
  138. getPreData() {
  139. var pages = getCurrentPages()
  140. var prePage = pages[pages.length - 2]
  141. var maintenance = prePage.$vm.user.maintenance
  142. if(maintenance) {
  143. that.userInfo = {
  144. name: maintenance.name,
  145. idNumber: maintenance.id_card,
  146. eamil: maintenance.eamil,
  147. region: maintenance.province + maintenance.city + maintenance.area,
  148. address: maintenance.results,
  149. province: maintenance.province,
  150. city:maintenance.city,
  151. area: maintenance.area,
  152. // fileList1: maintenance.id_card_img1.split(','),
  153. // fileList2: maintenance.id_card_img2.split(','),
  154. // fileList3: maintenance.business_img.split(','),
  155. // fileList4: maintenance.authorization_img.split(','),
  156. achievement: maintenance.results,
  157. id: maintenance.id
  158. }
  159. var imgs = maintenance.id_card_img1.split(',')
  160. let obj = {}
  161. for(let key in imgs) {
  162. obj[key] = imgs[key]
  163. }
  164. var fileList1 = Object.keys(obj).map(item => ({
  165. url: obj[item]
  166. }))
  167. that.userInfo.fileList1 = fileList1
  168. imgs = []
  169. imgs = maintenance.id_card_img1.split(',')
  170. obj = {}
  171. for(let key in imgs) {
  172. obj[key] = imgs[key]
  173. }
  174. var fileList2 = Object.keys(obj).map(item => ({
  175. url: obj[item]
  176. }))
  177. that.userInfo.fileList2 = fileList2
  178. imgs = []
  179. imgs = maintenance.id_card_img1.split(',')
  180. obj = {}
  181. for(let key in imgs) {
  182. obj[key] = imgs[key]
  183. }
  184. var fileList3 = Object.keys(obj).map(item => ({
  185. url: obj[item]
  186. }))
  187. that.userInfo.fileList3 = fileList3
  188. imgs = []
  189. imgs = maintenance.id_card_img1.split(',')
  190. obj = {}
  191. for(let key in imgs) {
  192. obj[key] = imgs[key]
  193. }
  194. var fileList4 = Object.keys(obj).map(item => ({
  195. url: obj[item]
  196. }))
  197. that.userInfo.fileList4 = fileList4
  198. that.state = maintenance.audit
  199. that.reason = maintenance.why
  200. if(that.state == 1 || that.state == 3) {
  201. that.current = 2
  202. }
  203. }
  204. },
  205. // 选择所在地区
  206. changeAddress(e) {
  207. console.log(e);
  208. that.userInfo.region = e.detail.value[0] + '-' + e.detail.value[1] + '-' + e.detail.value[2]
  209. that.userInfo.province = e.detail.value[0]
  210. that.userInfo.city = e.detail.value[1]
  211. that.userInfo.area = e.detail.value[2]
  212. },
  213. // 删除图片
  214. deletePic(event) {
  215. // that.userInfo.imgList.splice(event.index, 1)
  216. console.log(event)
  217. this.userInfo[`fileList${event.name}`].splice(event.index, 1)
  218. },
  219. // 新增图片
  220. async afterRead(event) {
  221. console.log(`fileList${event.name}`);
  222. console.log(this.userInfo[`fileList${event.name}`]);
  223. let lists = [].concat(event.file)
  224. let fileListLen = this.userInfo[`fileList${event.name}`].length
  225. lists.map((item) => {
  226. this.userInfo[`fileList${event.name}`].push({
  227. ...item,
  228. status: 'uploading',
  229. message: '上传中'
  230. })
  231. })
  232. for (let i = 0; i < lists.length; i++) {
  233. const result = await this.uploadFilePromise(lists[i].url)
  234. let item = this.userInfo[`fileList${event.name}`][fileListLen]
  235. this.userInfo[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  236. status: 'success',
  237. message: '',
  238. url: result.url
  239. }))
  240. fileListLen++
  241. }
  242. if(that.userInfo[`fileList${event.name}`].length > 0) {
  243. for(var i=0;i<that.userInfo[`fileList${event.name}`].length;i++) {
  244. if(i == that.userInfo[`fileList${event.name}`].length -1) {
  245. that[`fileList${event.name}`] += that.userInfo[`fileList${event.name}`][i].url
  246. } else {
  247. that[`fileList${event.name}`] += that.userInfo[`fileList${event.name}`][i].url + ','
  248. }
  249. }
  250. }
  251. },
  252. // 上传图片
  253. uploadFilePromise(url) {
  254. return new Promise((resolve, reject) => {
  255. let a = uni.uploadFile({
  256. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  257. filePath: url,
  258. name: 'file',
  259. header: {
  260. 'content-type': 'application/x-www-form-urlencoded',
  261. 'api-token': uni.getStorageSync('token').token?uni.getStorageSync('token').token:'',
  262. 'api-name': 'wxapp'
  263. },
  264. formData: {
  265. user: 'test'
  266. },
  267. success: (res) => {
  268. console.log(res);
  269. setTimeout(() => {
  270. var data = JSON.parse(res.data)
  271. resolve(data.data)
  272. }, 1000)
  273. }
  274. });
  275. })
  276. },
  277. next() {
  278. // that.current = that.current + 1
  279. 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')) {
  280. that.current = that.current + 1
  281. }
  282. },
  283. submit() {
  284. var u = that.userInfo
  285. // that.current = that.current + 1
  286. if ($api.formCheck(that.fileList3,'required') && $api.formCheck(that.userInfo.achievement,'required')) {
  287. $api.req({
  288. url: '/data/api.auth.Center/addupmaintenance',
  289. method: 'POST',
  290. data: {
  291. id: u.id?u.id: '',
  292. name: u.name,
  293. id_card: u.idNumber,
  294. email: u.eamil,
  295. province: u.province,
  296. city: u.city,
  297. area: u.area,
  298. address: u.address,
  299. id_card_img1: that.fileList1,
  300. id_card_img2: that.fileList2,
  301. business_img: that.fileList3,
  302. authorization_img: that.fileList4,
  303. results: u.achievement,
  304. }
  305. }, function(res) {
  306. if(res.code == 1) {
  307. $api.info(res.info)
  308. that.current = that.current + 1
  309. }
  310. })
  311. }
  312. },
  313. edit() {
  314. that.state = 0
  315. },
  316. result() {
  317. $api.jump('/pages/tabbar/mine/mine',3)
  318. }
  319. },
  320. }
  321. </script>
  322. <style lang="scss" scoped>
  323. .content::v-deep {
  324. padding: 0 40rpx;
  325. .box1 {
  326. .steps {
  327. width: 100%;
  328. height: 188rpx;
  329. }
  330. .title {
  331. font-size: 32rpx;
  332. color: #444;
  333. margin: 8rpx 0;
  334. position: relative;
  335. z-index: 9;
  336. }
  337. .title::before {
  338. width: 120rpx;
  339. height: 16rpx;
  340. background: linear-gradient(270deg, #506dff 0%, #fff 100%);
  341. content: "";
  342. position: absolute;
  343. left: 0;
  344. bottom: 0;
  345. z-index: 2;
  346. opacity: 0.8;
  347. }
  348. .u-input {
  349. width: 100%;
  350. // margin-top: 30rpx;
  351. }
  352. .cell {
  353. width: 100%;
  354. padding: 20rpx 0;
  355. .left {
  356. font-size: 28rpx;
  357. color: #222;
  358. }
  359. .u-input {
  360. font-size: 28rpx;
  361. color: #222;
  362. }
  363. .img_title {
  364. font-size: 28rpx;
  365. color: #444;
  366. }
  367. .upload_img {
  368. width: 670rpx;
  369. height: 404rpx;
  370. background-color: #f4f4f4;
  371. border-radius: 20rpx;
  372. margin: 28rpx 0 40rpx;
  373. }
  374. .u-upload__wrap {
  375. display: flex;
  376. align-items: center !important;
  377. justify-content: center !important;
  378. }
  379. .img_subtitle {
  380. font-size: 28rpx;
  381. color: #A3A3A3;
  382. padding: 12rpx 0;
  383. }
  384. .u-input {
  385. width: 100%;
  386. // margin-top: 30rpx;
  387. }
  388. }
  389. .line {
  390. width: 100%;
  391. height: 1rpx;
  392. background-color: #f4f4f4;
  393. }
  394. .bottom {
  395. width: 100%;
  396. margin: 40rpx 0 64rpx;
  397. .btn {
  398. width: 690rpx;
  399. height: 88rpx;
  400. text-align: center;
  401. line-height: 88rpx;
  402. border-radius: 44rpx;
  403. background-color: #506dff;
  404. color: #fff;
  405. font-size: 36rpx;
  406. }
  407. }
  408. }
  409. .box {
  410. width: 100%;
  411. // height: 100vh;
  412. background-color: #fff;
  413. .box1_img {
  414. width: 124rpx;
  415. height: 124rpx;
  416. margin: 108rpx 0 40rpx;
  417. }
  418. .box1_title {
  419. font-size: 32rpx;
  420. color: #222;
  421. margin-bottom: 24rpx;
  422. }
  423. .box1_subTitle {
  424. margin: 12rpx 0;
  425. font-size: 26rpx;
  426. color: #999999;
  427. }
  428. .btn {
  429. width: 530rpx;
  430. height: 88rpx;
  431. background-color: #506dff;
  432. color: #fff;
  433. text-align: center;
  434. line-height: 88rpx;
  435. border-radius: 44rpx;
  436. font-size: 36rpx;
  437. margin-top: 122rpx;
  438. }
  439. }
  440. }
  441. </style>