workerEnter.vue 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926
  1. <template>
  2. <zj-page-layout :hasFooter="true">
  3. <template slot="header">
  4. <view class="mode">
  5. <view class="content">
  6. <!-- ----------------------------------------------------------------- -->
  7. <view class="mokuaikapian">
  8. <view class="mokuaineirongquyu">
  9. <h3>联系信息</h3>
  10. <view class="item flex">
  11. <view class="required">入驻网点</view>
  12. <view class="flex" style="flex: 1">
  13. <input
  14. type="text"
  15. style="pointer-events: none"
  16. readonly="readonly"
  17. :value="websitName"
  18. placeholder="请选择入驻网点"
  19. />
  20. <image src="/static/mine/workerEnter/right.png" mode="aspectFill"></image>
  21. </view>
  22. </view>
  23. <view class="item flex">
  24. <view class="required">姓名</view>
  25. <view class="flex" style="flex: 1">
  26. <input v-model="name" type="text" placeholder="请输入姓名" />
  27. </view>
  28. </view>
  29. <view class="item flex">
  30. <view class="">银行卡号</view>
  31. <view class="flex" style="flex: 1">
  32. <input v-model="bankAccount" maxlength="18" type="text" placeholder="请输入银行卡号" />
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. <!-- ----------------------------------------------------------------- -->
  38. <view class="mokuaikapian">
  39. <view class="mokuaineirongquyu">
  40. <h3>身份证信息</h3>
  41. <view style="display: flex; justify-content: space-between; align-items: center">
  42. <view class="item" style="border-bottom: none">
  43. <view class="imgs" @tap="toChooseImg('idCardImg')">
  44. <image
  45. class="del"
  46. @tap.stop="idCardImg = ''"
  47. v-show="idCardImg"
  48. src="/static/mine/workerEnter/del.png"
  49. mode="aspectFill"
  50. ></image>
  51. <image
  52. class="img_neirong"
  53. v-if="idCardImg"
  54. :src="idCardImg"
  55. mode="aspectFill"
  56. @tap.stop="previewImage(idCardImg)"
  57. ></image>
  58. <view v-else class="addimg">
  59. <view class="img_neirong">
  60. <text class="iconfont icon-xiangji"></text>
  61. <text class="text">添加图片</text>
  62. </view>
  63. </view>
  64. </view>
  65. <view class="text required">身份证正面</view>
  66. </view>
  67. <view class="item" style="border-bottom: none">
  68. <view class="imgs" @tap="toChooseImg('idCardBackImg')">
  69. <image
  70. class="del"
  71. @tap.stop="idCardBackImg = ''"
  72. v-show="idCardBackImg"
  73. src="/static/mine/workerEnter/del.png"
  74. mode="aspectFill"
  75. ></image>
  76. <image
  77. class="img_neirong"
  78. v-if="idCardBackImg"
  79. :src="idCardBackImg"
  80. mode="aspectFill"
  81. @tap.stop="previewImage(idCardBackImg)"
  82. ></image>
  83. <view v-else class="addimg">
  84. <view class="img_neirong">
  85. <text class="iconfont icon-xiangji"></text>
  86. <text class="text">添加图片</text>
  87. </view>
  88. </view>
  89. </view>
  90. <view class="text required">身份证反面</view>
  91. </view>
  92. </view>
  93. <view class="item flex">
  94. <view class="required">身份证号</view>
  95. <view class="flex" style="flex: 1">
  96. <input v-model="idcard" maxlength="18" type="text" placeholder="请输入身份证号" />
  97. </view>
  98. </view>
  99. <view class="item flex" @click="$refs.idCardStateTime.showWin">
  100. <view class="required">证件有效期开始日期</view>
  101. <view class="flex" style="flex: 1; pointer-events: none">
  102. <input v-model="idCardStateTime" disabled type="text" placeholder="请选择日期" />
  103. </view>
  104. </view>
  105. <view class="item flex" @click="$refs.idCardEndTime.showWin">
  106. <view class="required">证件有效期结束日期</view>
  107. <view class="flex" style="flex: 1; pointer-events: none">
  108. <input v-model="idCardEndTime" disabled type="text" placeholder="请选择日期" />
  109. </view>
  110. </view>
  111. </view>
  112. </view>
  113. <!-- ----------------------------------------------------------------- -->
  114. <view class="mokuaikapian">
  115. <view class="mokuaineirongquyu">
  116. <h3>高空证信息</h3>
  117. <view style="display: flex; justify-content: space-between; align-items: center">
  118. <view class="item" style="border-bottom: none">
  119. <view class="imgs" @tap="toChooseImg('altitudeDocumentImg')">
  120. <image
  121. class="del"
  122. @tap.stop="altitudeDocumentImg = ''"
  123. v-show="altitudeDocumentImg"
  124. src="/static/mine/workerEnter/del.png"
  125. mode="aspectFill"
  126. ></image>
  127. <image
  128. class="img_neirong"
  129. v-if="altitudeDocumentImg"
  130. :src="altitudeDocumentImg"
  131. mode="aspectFill"
  132. @tap.stop="previewImage(altitudeDocumentImg)"
  133. ></image>
  134. <view v-else class="addimg">
  135. <view class="img_neirong">
  136. <text class="iconfont icon-xiangji"></text>
  137. <text class="text">添加图片</text>
  138. </view>
  139. </view>
  140. </view>
  141. <view class="text">高空证正面</view>
  142. </view>
  143. <view class="item" style="border-bottom: none">
  144. <view class="imgs" @tap="toChooseImg('altitudeDocumentBackImg')">
  145. <image
  146. class="del"
  147. @tap.stop="altitudeDocumentBackImg = ''"
  148. v-show="altitudeDocumentBackImg"
  149. src="/static/mine/workerEnter/del.png"
  150. mode="aspectFill"
  151. ></image>
  152. <image
  153. class="img_neirong"
  154. v-if="altitudeDocumentBackImg"
  155. :src="altitudeDocumentBackImg"
  156. mode="aspectFill"
  157. @tap.stop="previewImage(altitudeDocumentBackImg)"
  158. ></image>
  159. <view v-else class="addimg">
  160. <view class="img_neirong">
  161. <text class="iconfont icon-xiangji"></text>
  162. <text class="text">添加图片</text>
  163. </view>
  164. </view>
  165. </view>
  166. <view class="text">高空证反面</view>
  167. </view>
  168. </view>
  169. <view class="item flex">
  170. <view class="">证件号</view>
  171. <view class="flex" style="flex: 1">
  172. <input v-model="altitudeDocumentNumber" maxlength="18" type="text" placeholder="请输入高空证号" />
  173. </view>
  174. </view>
  175. <view class="item flex" @click="$refs.altitudeDocumentStateTime.showWin">
  176. <view class="">证件有效期开始日期</view>
  177. <view class="flex" style="flex: 1; pointer-events: none">
  178. <input v-model="altitudeDocumentStateTime" disabled type="text" placeholder="请选择日期" />
  179. </view>
  180. </view>
  181. <view class="item flex" @click="$refs.altitudeDocumentEndTime.showWin">
  182. <view class="">证件有效期结束日期</view>
  183. <view class="flex" style="flex: 1; pointer-events: none">
  184. <input v-model="altitudeDocumentEndTime" disabled type="text" placeholder="请选择日期" />
  185. </view>
  186. </view>
  187. <view class="item flex" @click="$refs.reexamineTime.showWin">
  188. <view class="">复审日期</view>
  189. <view class="flex" style="flex: 1; pointer-events: none">
  190. <input v-model="reexamineTime" disabled type="text" placeholder="请选择日期" />
  191. </view>
  192. </view>
  193. </view>
  194. </view>
  195. <!-- ----------------------------------------------------------------- -->
  196. <view class="mokuaikapian">
  197. <view class="mokuaineirongquyu">
  198. <h3>意外险信息</h3>
  199. <view class="item flex">
  200. <view class="required">是否已购买意外险</view>
  201. <view class="flex" style="flex: 1">
  202. <radio-group
  203. @change="
  204. d => {
  205. isBuy = d.detail.value
  206. }
  207. "
  208. >
  209. <label style="margin-left: 20upx; margin-right: 20upx">
  210. <radio value="YES" :checked="isBuy === 'YES'" />是
  211. </label>
  212. <label> <radio value="NO" :checked="isBuy === 'NO'" />否 </label>
  213. </radio-group>
  214. </view>
  215. </view>
  216. <template v-if="isBuy === 'YES'">
  217. <view class="item flex">
  218. <view class="required">保险公司名称</view>
  219. <view class="flex" style="flex: 1">
  220. <input v-model="insurancePolicyName" type="text" placeholder="请输入" />
  221. </view>
  222. </view>
  223. <view class="item flex">
  224. <view class="required">保单名称</view>
  225. <view class="flex" style="flex: 1">
  226. <input v-model="insuranceName" maxlength="18" type="text" placeholder="请输入" />
  227. </view>
  228. </view>
  229. <view class="item flex">
  230. <view class="required">保险单号</view>
  231. <view class="flex" style="flex: 1">
  232. <input v-model="insuranceNumber" maxlength="18" type="text" placeholder="请输入" />
  233. </view>
  234. </view>
  235. <view class="item flex" @click="$refs.insuranceStateTime.showWin">
  236. <view class="required">保险有效期开始日期</view>
  237. <view class="flex" style="flex: 1; pointer-events: none">
  238. <input v-model="insuranceStateTime" disabled type="text" placeholder="请选择日期" />
  239. </view>
  240. </view>
  241. <view class="item flex" @click="$refs.insuranceEndTime.showWin">
  242. <view class="required">保险有效期结束日期</view>
  243. <view class="flex" style="flex: 1; pointer-events: none">
  244. <input v-model="insuranceEndTime" disabled type="text" placeholder="请选择日期" />
  245. </view>
  246. </view>
  247. <view class="mt30 image-container">
  248. <view class="common-title required">附件图片(最多3张)</view>
  249. <view class="images">
  250. <block v-for="(item, index) in imageList" :key="index">
  251. <view class="img">
  252. <image :src="item.url" mode="aspectFill" @tap="prevImg(item.url)"></image>
  253. <text class="iconfont icon-guanbi1" @tap="delImage(index)"></text>
  254. </view>
  255. </block>
  256. <view class="add" @tap="addImage" v-if="imageList.length < 3">
  257. <text class="iconfont icon-xiangji"></text>
  258. <text class="text">添加图片</text>
  259. </view>
  260. </view>
  261. </view>
  262. </template>
  263. </view>
  264. </view>
  265. <!-- ----------------------------------------------------------------- -->
  266. </view>
  267. </view>
  268. </template>
  269. <template slot="footer">
  270. <view class="flex xieyi">
  271. <image
  272. :src="isChecked ? '/static/mine/workerEnter/them_check.png' : '/static/mine/workerEnter/gray_uncheck.png'"
  273. mode=""
  274. @tap.stop="isChecked = !isChecked"
  275. ></image>
  276. <view class="">我已阅读并同意</view>
  277. <view class="notification" @tap="navToPage('/packageMine/pages/agreement?type=3')">《服务协议》</view>
  278. </view>
  279. <view class="btn" @click="submit()">提交审核</view>
  280. </template>
  281. <dateTimeBind v-model="idCardStateTime" ref="idCardStateTime" type="date" :maxDate="7258089600000" />
  282. <dateTimeBind
  283. v-model="idCardEndTime"
  284. ref="idCardEndTime"
  285. :minDate="idCardEndTimeMin"
  286. type="date"
  287. :maxDate="7258089600000"
  288. />
  289. <dateTimeBind
  290. v-model="reexamineTime"
  291. ref="reexamineTime"
  292. type="date"
  293. :minDate="altitudeDocumentEndTimeMin"
  294. :maxDate="altitudeDocumentEndTimeMAX"
  295. />
  296. <dateTimeBind
  297. v-model="altitudeDocumentStateTime"
  298. ref="altitudeDocumentStateTime"
  299. type="date"
  300. :maxDate="7258089600000"
  301. />
  302. <dateTimeBind
  303. v-model="altitudeDocumentEndTime"
  304. ref="altitudeDocumentEndTime"
  305. type="date"
  306. :minDate="altitudeDocumentEndTimeMin"
  307. :maxDate="7258089600000"
  308. />
  309. <dateTimeBind v-model="insuranceStateTime" ref="insuranceStateTime" type="date" :maxDate="7258089600000" />
  310. <dateTimeBind
  311. v-model="insuranceEndTime"
  312. ref="insuranceEndTime"
  313. type="date"
  314. :minDate="insuranceEndTimeMin"
  315. :maxDate="7258089600000"
  316. />
  317. </zj-page-layout>
  318. </template>
  319. <script>
  320. import { uploadImgFull } from '@/common/utils/util.js'
  321. import zjDialogPicker from '@/components/zj-dialog/zj-dialog-picker.vue'
  322. import dateTimeBind from '@/components/dateTimeBind.vue'
  323. import verify from '@/common/utils/verify.js'
  324. export default {
  325. components: {
  326. zjDialogPicker,
  327. dateTimeBind
  328. },
  329. data() {
  330. return {
  331. // 协议统一
  332. isChecked: false,
  333. // 网点
  334. websitName: '',
  335. websitId: '',
  336. // 名称
  337. name: '',
  338. // 银行卡号
  339. bankAccount: '',
  340. // ------------------------
  341. // 身份证号
  342. idcard: '',
  343. // 身份证有效期开始日期
  344. idCardStateTime: '',
  345. // 身份证有效期结束日期
  346. idCardEndTime: '',
  347. // 身份证正面
  348. idCardImg: '',
  349. // 身份证反面
  350. idCardBackImg: '',
  351. // --------------------------
  352. // 高空证号
  353. altitudeDocumentNumber: '',
  354. // 复审日期
  355. reexamineTime: '',
  356. // 高空证有效期开始日期
  357. altitudeDocumentStateTime: '',
  358. // 高空证有效期结束日期
  359. altitudeDocumentEndTime: '',
  360. // 高空证正面
  361. altitudeDocumentImg: '',
  362. // 高空证反面
  363. altitudeDocumentBackImg: '',
  364. // --------------------------
  365. // 是否购买意外险
  366. isBuy: 'YES',
  367. // 保险公司名称
  368. insurancePolicyName: '',
  369. // 保单名称
  370. insuranceName: '',
  371. // 保险单号
  372. insuranceNumber: '',
  373. // 保险开始日期
  374. insuranceStateTime: '',
  375. // 保险结束日期
  376. insuranceEndTime: '',
  377. // 保险图片集合
  378. imageList: [], //上传的文件数据
  379. boolsss: false
  380. }
  381. },
  382. onLoad({ websitId, websitName }) {
  383. if (websitId) {
  384. this.websitId = websitId
  385. this.websitName = websitName
  386. }
  387. this.getUser()
  388. },
  389. watch: {
  390. idCardStateTime() {
  391. if (this.boolsss) {
  392. this.idCardEndTime = ''
  393. }
  394. },
  395. altitudeDocumentStateTime() {
  396. if (this.boolsss) {
  397. this.altitudeDocumentEndTime = ''
  398. }
  399. },
  400. altitudeDocumentEndTime() {
  401. if (this.boolsss) {
  402. this.reexamineTime = ''
  403. }
  404. },
  405. insuranceStateTime() {
  406. if (this.boolsss) {
  407. this.insuranceEndTime = ''
  408. }
  409. }
  410. },
  411. computed: {
  412. idCardEndTimeMin() {
  413. return this.idCardStateTime ? new Date(this.idCardStateTime + 'T23:59:59').getTime() : ''
  414. },
  415. altitudeDocumentEndTimeMin() {
  416. return this.altitudeDocumentStateTime ? new Date(this.altitudeDocumentStateTime + 'T23:59:59').getTime() : ''
  417. },
  418. insuranceEndTimeMin() {
  419. return this.insuranceStateTime ? new Date(this.insuranceStateTime + 'T23:59:59').getTime() : ''
  420. },
  421. altitudeDocumentEndTimeMAX() {
  422. return this.altitudeDocumentEndTime ? new Date(this.altitudeDocumentEndTime + 'T23:59:59').getTime() : ''
  423. }
  424. },
  425. methods: {
  426. getUser() {
  427. this.$api
  428. .get('/user/user/detail', {
  429. userId: this.$store.state.user.userId
  430. })
  431. .then(res => {
  432. if (res.data.applyType === 'WORKER') {
  433. this.name = res.data.nickName || ''
  434. this.bankAccount = res.data.bankAccount || ''
  435. this.idcard = res.data.idCard || ''
  436. this.idCardImg =
  437. (res.data?.workerImgs || []).filter(item => item.type == 'ID').map(item => item.imgUrl || '')?.[0] || ''
  438. this.idCardBackImg =
  439. (res.data?.workerImgs || []).filter(item => item.type == 'ID').map(item => item.imgUrl || '')?.[1] || ''
  440. this.idCardStateTime = res.data.idCardStartTime ? res.data.idCardStartTime?.split(' ')?.[0] : ''
  441. this.idCardEndTime = res.data.idCardEndTime ? res.data.idCardEndTime?.split(' ')?.[0] : ''
  442. this.altitudeDocumentNumber = res.data.number || ''
  443. this.reexamineTime = res.data.hightExamineTime ? res.data.hightExamineTime?.split(' ')?.[0] : ''
  444. this.altitudeDocumentStateTime = res.data.startTime ? res.data.startTime?.split(' ')?.[0] : ''
  445. this.altitudeDocumentEndTime = res.data.endTime ? res.data.endTime?.split(' ')?.[0] : ''
  446. this.altitudeDocumentImg =
  447. (res.data?.workerImgs || []).filter(item => item.type == 'HIGHT').map(item => item.imgUrl || '')?.[0] ||
  448. ''
  449. this.altitudeDocumentBackImg =
  450. (res.data?.workerImgs || []).filter(item => item.type == 'HIGHT').map(item => item.imgUrl || '')?.[1] ||
  451. ''
  452. }
  453. this.$nextTick(() => {
  454. this.boolsss = true
  455. })
  456. })
  457. .catch(() => {
  458. this.$nextTick(() => {
  459. this.boolsss = true
  460. })
  461. })
  462. },
  463. checkForm() {
  464. if (!this.websitId) {
  465. this.$tips('请选择入驻网点!')
  466. return false
  467. }
  468. if (!this.name) {
  469. this.$tips('请输入姓名!')
  470. return false
  471. }
  472. if (!this.idcard) {
  473. this.$tips('请输入身份证号码!')
  474. return false
  475. }
  476. if (!verify.isIdCard(this.idcard)) {
  477. this.$tips('身份证号码格式不正确,请输入正确身份证号码!')
  478. return false
  479. }
  480. if (!this.idCardImg) {
  481. this.$tips('请上传身份证正面照!')
  482. return false
  483. }
  484. if (!this.idCardBackImg) {
  485. this.$tips('请上传身份证反面照!')
  486. return false
  487. }
  488. if (!this.idCardStateTime) {
  489. this.$tips('请选择身份证有效期时间!')
  490. return false
  491. }
  492. if (!this.idCardEndTime) {
  493. this.$tips('请选择身份证有效期时间!')
  494. return false
  495. }
  496. if (
  497. this.altitudeDocumentNumber ||
  498. this.reexamineTime ||
  499. this.altitudeDocumentStateTime ||
  500. this.altitudeDocumentEndTime ||
  501. this.altitudeDocumentImg ||
  502. this.altitudeDocumentBackImg
  503. ) {
  504. if (
  505. !this.altitudeDocumentNumber ||
  506. !this.reexamineTime ||
  507. !this.altitudeDocumentStateTime ||
  508. !this.altitudeDocumentEndTime ||
  509. !this.altitudeDocumentImg ||
  510. !this.altitudeDocumentBackImg
  511. ) {
  512. this.$tips('高空证信息需要完整!')
  513. return false
  514. } else if (this.reexamineTime && this.altitudeDocumentStateTime && this.altitudeDocumentEndTime) {
  515. const reexamineEndTime = new Date(this.reexamineTime + 'T23:59:59').getTime()
  516. const altitudeDocumentStartTime = new Date(this.altitudeDocumentStateTime + 'T00:00:00').getTime()
  517. const altitudeDocumentEndTime = new Date(this.altitudeDocumentEndTime + 'T23:59:59').getTime()
  518. if (reexamineEndTime < altitudeDocumentStartTime || reexamineEndTime > altitudeDocumentEndTime) {
  519. this.$tips('复审日期必须包含在有效期内!')
  520. return false
  521. }
  522. }
  523. } else {
  524. this.altitudeDocumentNumber = ''
  525. this.reexamineTime = ''
  526. this.altitudeDocumentStateTime = ''
  527. this.altitudeDocumentEndTime = ''
  528. this.altitudeDocumentImg = ''
  529. this.altitudeDocumentBackImg = ''
  530. }
  531. if (this.isBuy == 'YES') {
  532. if (
  533. !this.insurancePolicyName ||
  534. !this.insuranceName ||
  535. !this.insuranceNumber ||
  536. !this.insuranceStateTime ||
  537. !this.insuranceEndTime ||
  538. !this.imageList.length
  539. ) {
  540. this.$tips('保险信息需要完整!')
  541. return false
  542. }
  543. } else {
  544. this.insurancePolicyName = ''
  545. this.insuranceName = ''
  546. this.insuranceNumber = ''
  547. this.insuranceStateTime = ''
  548. this.insuranceEndTime = ''
  549. this.imageList = []
  550. }
  551. return true
  552. },
  553. dataAssembly() {
  554. return {
  555. name: this.name,
  556. bankAccount: this.bankAccount,
  557. idCard: this.idcard,
  558. idCardStartTime: this.idCardStateTime ? this.idCardStateTime + ' 00:00:00' : '',
  559. idCardEndTime: this.idCardEndTime ? this.idCardEndTime + ' 23:59:59' : '',
  560. number: this.altitudeDocumentNumber,
  561. hightExamineTime: this.reexamineTime ? this.reexamineTime + ' 23:59:59' : '',
  562. startTime: this.altitudeDocumentStateTime ? this.altitudeDocumentStateTime + ' 00:00:00' : '',
  563. endTime: this.altitudeDocumentEndTime ? this.altitudeDocumentEndTime + ' 23:59:59' : '',
  564. type: 'WORKER',
  565. websitId: this.websitId,
  566. isBuy: this.isBuy,
  567. workerImgs: [
  568. ...(() => {
  569. if (this.idCardImg) {
  570. return [
  571. {
  572. imgName: '身份证正面',
  573. imgUrl: this.idCardImg,
  574. type: 'ID'
  575. }
  576. ]
  577. } else {
  578. return []
  579. }
  580. })(),
  581. ...(() => {
  582. if (this.idCardBackImg) {
  583. return [
  584. {
  585. imgName: '身份证反面',
  586. imgUrl: this.idCardBackImg,
  587. type: 'ID'
  588. }
  589. ]
  590. } else {
  591. return []
  592. }
  593. })(),
  594. ...(() => {
  595. if (this.altitudeDocumentImg) {
  596. return [
  597. {
  598. imgName: '高空证正面',
  599. imgUrl: this.altitudeDocumentImg,
  600. type: 'HIGHT'
  601. }
  602. ]
  603. } else {
  604. return []
  605. }
  606. })(),
  607. ...(() => {
  608. if (this.altitudeDocumentBackImg) {
  609. return [
  610. {
  611. imgName: '高空证反面',
  612. imgUrl: this.altitudeDocumentBackImg,
  613. type: 'HIGHT'
  614. }
  615. ]
  616. } else {
  617. return []
  618. }
  619. })()
  620. ],
  621. workerPolicy: {
  622. isBuy: this.isBuy,
  623. company: this.insurancePolicyName,
  624. policyName: this.insuranceName,
  625. policyOrder: this.insuranceNumber,
  626. startTime: this.insuranceStateTime ? this.insuranceStateTime + ' 00:00:00' : '',
  627. endTime: this.insuranceEndTime ? this.insuranceEndTime + ' 23:59:59' : '',
  628. policyType: 'AC',
  629. policyPrice: 0,
  630. policyUrl: this.imageList.map(item => item.url).join(',')
  631. }
  632. }
  633. },
  634. async submit() {
  635. if (this.checkForm()) {
  636. if (!this.isChecked) {
  637. this.$tips('请先阅读并同意服务协议!')
  638. return false
  639. }
  640. this.$api.postJson('/user/apply', this.dataAssembly(), true, true, true).then(res => {
  641. if (res.code == 200) {
  642. this.$toast('提交审核成功!')
  643. setTimeout(() => {
  644. this.$navToPage(
  645. {
  646. delta: 1
  647. },
  648. 'navigateBack'
  649. )
  650. }, 1500)
  651. } else {
  652. this.$tips(res.msg)
  653. }
  654. })
  655. }
  656. },
  657. // 选择图片
  658. async toChooseImg(type) {
  659. uni.chooseImage({
  660. count: 1,
  661. sizeType: ['compressed'],
  662. success: res => {
  663. this.uploadImage(res.tempFilePaths[0], type)
  664. },
  665. fail: err => {
  666. console.log(err)
  667. }
  668. })
  669. },
  670. // 上传文件
  671. async uploadImage(file, type) {
  672. let data = await uploadImgFull(file)
  673. uni.hideLoading()
  674. this[type] = data.url
  675. },
  676. // 预览图片
  677. previewImage(url) {
  678. uni.previewImage({
  679. current: url,
  680. urls: [url]
  681. })
  682. },
  683. // 添加图片
  684. async addImage() {
  685. uni.chooseImage({
  686. count: 6 - this.imageList.length,
  687. success: res => {
  688. uni.showLoading()
  689. res.tempFilePaths.forEach(async item => {
  690. let data = await uploadImgFull(item)
  691. this.imageList.push(data)
  692. })
  693. uni.hideLoading()
  694. },
  695. fail: err => {}
  696. })
  697. },
  698. // 删除图片
  699. delImage(index) {
  700. this.imageList.splice(index, 1)
  701. },
  702. //预览图片
  703. prevImg(current) {
  704. uni.previewImage({
  705. current,
  706. urls: this.imageList.map(item => {
  707. return item.url
  708. })
  709. })
  710. },
  711. navToPage(url) {
  712. this.$navToPage({
  713. url
  714. })
  715. }
  716. }
  717. }
  718. </script>
  719. <style lang="scss" scoped>
  720. .image-container {
  721. background: #ffffff;
  722. .images {
  723. display: flex;
  724. flex-wrap: wrap;
  725. .add {
  726. display: flex;
  727. flex-direction: column;
  728. align-items: center;
  729. justify-content: center;
  730. width: 146rpx;
  731. height: 146rpx;
  732. border: 2rpx dashed #dadada;
  733. border-radius: 10rpx;
  734. margin-top: 20rpx;
  735. .iconfont {
  736. font-size: 48rpx;
  737. color: #999999;
  738. }
  739. .text {
  740. font-size: 24rpx;
  741. color: #999999;
  742. margin-top: 10rpx;
  743. }
  744. }
  745. .img {
  746. position: relative;
  747. margin-right: 40rpx;
  748. margin-top: 20rpx;
  749. &:nth-child(4n) {
  750. margin-right: 0;
  751. }
  752. image {
  753. width: 150rpx;
  754. height: 150rpx;
  755. border-radius: 10rpx;
  756. overflow: hidden;
  757. display: block;
  758. }
  759. text {
  760. position: absolute;
  761. right: -10rpx;
  762. top: -10rpx;
  763. width: 40rpx;
  764. height: 40rpx;
  765. border-radius: 50%;
  766. background: #ff3f42;
  767. font-size: 24rpx;
  768. color: #ffffff;
  769. text-align: center;
  770. line-height: 40rpx;
  771. display: block;
  772. }
  773. }
  774. }
  775. }
  776. .app-container {
  777. height: auto !important;
  778. }
  779. .mokuaikapian {
  780. width: 100%;
  781. height: auto;
  782. box-sizing: border-box;
  783. margin-bottom: 40rpx;
  784. .mokuaineirongquyu {
  785. width: 100%;
  786. height: auto;
  787. background-color: #ffffff;
  788. padding: 30rpx;
  789. box-sizing: border-box;
  790. border-radius: 20rpx;
  791. }
  792. }
  793. .flex {
  794. display: flex;
  795. align-items: center;
  796. }
  797. .flex_asb {
  798. display: flex;
  799. justify-content: space-between;
  800. align-items: center;
  801. }
  802. .mode {
  803. padding: 40rpx 30rpx;
  804. box-sizing: border-box;
  805. h3 {
  806. margin-bottom: 60rpx;
  807. }
  808. .required:before {
  809. content: '*';
  810. color: #ff0000;
  811. }
  812. .item {
  813. width: 100%;
  814. padding: 20rpx 0;
  815. box-sizing: border-box;
  816. margin-bottom: 30rpx;
  817. border-bottom: 1rpx solid #eeeeee;
  818. box-sizing: border-box;
  819. input {
  820. flex: 1;
  821. text-align: right;
  822. padding: 0 20rpx;
  823. }
  824. image {
  825. width: 32rpx;
  826. height: 32rpx;
  827. }
  828. }
  829. .text {
  830. margin-top: 10rpx;
  831. color: #999999;
  832. text-align: center;
  833. }
  834. }
  835. .imgs {
  836. text-align: center;
  837. position: relative;
  838. width: 100%;
  839. height: 180rpx;
  840. box-sizing: border-box;
  841. padding: 10rpx;
  842. ::v-deep .img_neirong {
  843. width: 100% !important;
  844. height: 100% !important;
  845. border: 1rpx solid #eeeeee;
  846. border-radius: 10rpx;
  847. overflow: hidden;
  848. display: flex;
  849. justify-content: center;
  850. align-items: center;
  851. color: #999999;
  852. flex-direction: column;
  853. }
  854. .addimg {
  855. width: 100% !important;
  856. height: 100% !important;
  857. border-radius: 10rpx;
  858. display: flex;
  859. justify-content: center;
  860. align-items: center;
  861. }
  862. .del {
  863. width: 38rpx !important;
  864. height: 38rpx !important;
  865. position: absolute;
  866. right: -14rpx;
  867. top: 8rpx;
  868. z-index: 9;
  869. }
  870. }
  871. .zhu {
  872. margin-top: 30rpx;
  873. color: #ffa700;
  874. }
  875. .btn {
  876. width: 690rpx;
  877. height: 80rpx;
  878. background-color: #0379ff;
  879. color: #ffffff;
  880. text-align: center;
  881. line-height: 80rpx;
  882. border-radius: 40rpx;
  883. margin: 0 auto;
  884. margin-bottom: 20rpx;
  885. }
  886. .notification {
  887. color: #0379ff;
  888. }
  889. .xieyi {
  890. padding: 30rpx;
  891. font-size: 28rpx;
  892. image {
  893. border: 2rpx #00bfff;
  894. border-radius: 50%;
  895. height: 40rpx;
  896. width: 40rpx;
  897. vertical-align: sub;
  898. margin-right: 30rpx;
  899. }
  900. }
  901. </style>