driverCertificationNext.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690
  1. <template>
  2. <view class="content">
  3. <view class="top-head"></view>
  4. <view class="container">
  5. <u-radio-group v-model="radiovalue" iconPlacement="row" class='radio-group'>
  6. <u-radio :customStyle="{marginBottom: '8px'}" v-for="(item, index) in radiolist" :key="index"
  7. :label="item.name" :name="item.name" @change="radioChange">
  8. </u-radio>
  9. </u-radio-group>
  10. <view class="level1-title">证件信息</view>
  11. <view class="content1">
  12. <view class="title">上传驾驶证主页</view>
  13. <view @click="uploadImg(1)" class="picture picture1" v-if="!dataDetails.driverLicenseHomePage">
  14. <image class="xj-image" src="@/static/images/mine/ic_shanchuan@2x.png"></image>
  15. <view class="text">上传驾驶证主页</view>
  16. </view>
  17. <view v-if="dataDetails.driverLicenseHomePage" @click.stop="uploadImg(1)"
  18. class="preview-card-img picture">
  19. <view @click.stop="delCard(1)">
  20. <image class='del-card' src="@/static/images/common/quxiao@2x.png">
  21. </image>
  22. </view>
  23. <image class="" :src="dataDetails.driverLicenseHomePage" mode="aspectFit"></image>
  24. </view>
  25. <view class="title">上传驾驶证副页</view>
  26. <view @click="uploadImg(2)" class="picture picture2" v-if="!dataDetails.driverLicenseBackPage">
  27. <image class="xj-image" src="@/static/images/mine/ic_shanchuan@2x.png"></image>
  28. <view class="text">上传驾驶证副页</view>
  29. </view>
  30. <view v-if="dataDetails.driverLicenseBackPage" @click.stop="uploadImg(1)"
  31. class="preview-card-img picture">
  32. <view @click.stop="delCard(1)">
  33. <image class='del-card' src="@/static/images/common/quxiao@2x.png">
  34. </image>
  35. </view>
  36. <image class="" :src="dataDetails.driverLicenseBackPage" mode="aspectFit"></image>
  37. </view>
  38. <view class="flex row">
  39. <view class="left-text">驾驶证有效截止日期</view>
  40. <view class="" @click="selectValidityPeriod(0)">
  41. {{dataDetails.driverLicenseValidityDate?dataDetails.driverLicenseValidityDate:'选择有效截止日期>'}}
  42. </view>
  43. </view>
  44. <view class="title">上传行驶证主页</view>
  45. <view @click="uploadImg(3)" class="picture picture3" v-if="!dataDetails.drivingLicenseHomePage">
  46. <image class="xj-image" src="@/static/images/mine/ic_shanchuan@2x.png"></image>
  47. <view class="text">上传行驶证主页</view>
  48. </view>
  49. <view v-if="dataDetails.drivingLicenseHomePage" @click.stop="uploadImg(1)"
  50. class="preview-card-img picture">
  51. <view @click.stop="delCard(1)">
  52. <image class='del-card' src="@/static/images/common/quxiao@2x.png">
  53. </image>
  54. </view>
  55. <image class="" :src="dataDetails.drivingLicenseHomePage" mode="aspectFit"></image>
  56. </view>
  57. <view class="title">上传行驶证副页</view>
  58. <view @click="uploadImg(4)" class="picture picture4" v-if="!dataDetails.drivingLicenseBackPage">
  59. <image class="xj-image" src="@/static/images/mine/ic_shanchuan@2x.png"></image>
  60. <view class="text">上传行驶证副页</view>
  61. </view>
  62. <view v-if="dataDetails.drivingLicenseBackPage" @click.stop="uploadImg(1)"
  63. class="preview-card-img picture">
  64. <view @click.stop="delCard(1)">
  65. <image class='del-card' src="@/static/images/common/quxiao@2x.png">
  66. </image>
  67. </view>
  68. <image class="" :src="dataDetails.drivingLicenseBackPage" mode="aspectFit"></image>
  69. </view>
  70. <view class="flex row">
  71. <view class="left-text">行驶证有效期</view>
  72. <view class="" @click="selectValidityPeriod(1)">
  73. {{dataDetails.drivingLicenseValidityDate?dataDetails.drivingLicenseValidityDate:'选择有效截止日期>'}}
  74. </view>
  75. </view>
  76. <view class="" v-if="isGCar">
  77. <view class="title row flex">挂车行驶证主页</view>
  78. <view @click="uploadImg(5)" class="picture picture5" v-if="!dataDetails.trailerLicenseHomePage">
  79. <image class="xj-image" src="@/static/images/mine/ic_shanchuan@2x.png"></image>
  80. <view class="text">上传挂车行驶证主页</view>
  81. </view>
  82. <view v-if="dataDetails.trailerLicenseHomePage" @click.stop="uploadImg(1)"
  83. class="preview-card-img picture">
  84. <view @click.stop="delCard(1)">
  85. <image class='del-card' src="@/static/images/common/quxiao@2x.png">
  86. </image>
  87. </view>
  88. <image class="" :src="dataDetails.trailerLicenseHomePage" mode="aspectFit"></image>
  89. </view>
  90. </view>
  91. <view v-if="isGCar">
  92. <view class="title row flex">挂车行驶证副页</view>
  93. <view @click="uploadImg(6)" class="picture picture6" v-if="!dataDetails.trailerLicenseBackPage">
  94. <image class="xj-image" src="@/static/images/mine/ic_shanchuan@2x.png"></image>
  95. <view class="text">上传挂车行驶证副页</view>
  96. </view>
  97. <view v-if="dataDetails.trailerLicenseBackPage" @click.stop="uploadImg(1)"
  98. class="preview-card-img picture">
  99. <view @click.stop="delCard(1)">
  100. <image class='del-card' src="@/static/images/common/quxiao@2x.png">
  101. </image>
  102. </view>
  103. <image class="" :src="dataDetails.trailerLicenseBackPage" mode="aspectFit"></image>
  104. </view>
  105. </view>
  106. <view class="flex row" v-if="isGCar">
  107. <view class="left-text">挂车行驶证有效期</view>
  108. <view class="" @click="selectValidityPeriod(2)">
  109. {{dataDetails.trailerLicenseValidityDate?dataDetails.trailerLicenseValidityDate:'选择有效截止日期>'}}
  110. </view>
  111. </view>
  112. <view class="title">从业资格证</view>
  113. <view @click="uploadImg(7)" class="picture picture7" v-if="!dataDetails.qualificationCertificate">
  114. <image class="xj-image" src="@/static/images/mine/ic_shanchuan@2x.png"></image>
  115. <view class="text">上传从业资格证</view>
  116. </view>
  117. <view v-if="dataDetails.qualificationCertificate" @click.stop="uploadImg(1)"
  118. class="preview-card-img picture">
  119. <view @click.stop="delCard(1)">
  120. <image class='del-card' src="@/static/images/common/quxiao@2x.png">
  121. </image>
  122. </view>
  123. <image class="" :src="dataDetails.qualificationCertificate" mode="aspectFit"></image>
  124. </view>
  125. <view class="flex row">
  126. <view class="left-text">从业资格证有效期</view>
  127. <view></view>
  128. <view class="" @click="selectValidityPeriod(3)">
  129. {{dataDetails.qualificationCertificateValidityDate?dataDetails.qualificationCertificateValidityDate:'选择有效期>'}}
  130. </view>
  131. </view>
  132. <view class="title">运营证</view>
  133. <view @click="uploadImg(8)" class="picture picture8" v-if="!dataDetails.operationCertificate">
  134. <image class="xj-image" src="@/static/images/mine/ic_shanchuan@2x.png"></image>
  135. <view class="text">上传运营证</view>
  136. </view>
  137. <view v-if="dataDetails.operationCertificate" @click.stop="uploadImg(1)"
  138. class="preview-card-img picture">
  139. <view @click.stop="delCard(1)">
  140. <image class='del-card' src="@/static/images/common/quxiao@2x.png">
  141. </image>
  142. </view>
  143. <image class="" :src="dataDetails.operationCertificate" mode="aspectFit"></image>
  144. </view>
  145. <view class="flex row">
  146. <view class="left-text">运营证有效期</view>
  147. <view class="" @click="selectValidityPeriod(4)">
  148. {{dataDetails.operationCertificateValidityDate?dataDetails.operationCertificateValidityDate:'选择有效期>'}}
  149. </view>
  150. </view>
  151. <view v-if="isGCar">
  152. <view class="title row flex">挂车运营证</view>
  153. <view @click="uploadImg(9)" class="picture picture9"
  154. v-if="!dataDetails.trailerOperationCertificate">
  155. <image class="xj-image" src="@/static/images/mine/ic_shanchuan@2x.png"></image>
  156. <view class="text">上传挂车运营证</view>
  157. </view>
  158. <view v-if="dataDetails.trailerOperationCertificate" @click.stop="uploadImg(1)"
  159. class="preview-card-img picture">
  160. <view @click.stop="delCard(1)">
  161. <image class='del-card' src="@/static/images/common/quxiao@2x.png">
  162. </image>
  163. </view>
  164. <image class="" :src="dataDetails.trailerOperationCertificate" mode="aspectFit"></image>
  165. </view>
  166. </view>
  167. <view class="flex row" v-if="isGCar">
  168. <view class="left-text">挂车运营证有效期</view>
  169. <view class="" @click="selectValidityPeriod(5)">
  170. {{dataDetails.trailerOperationCertificateValidityDate?dataDetails.trailerOperationCertificateValidityDate:'选择有效期>'}}
  171. </view>
  172. </view>
  173. </view>
  174. <view class="flex service align-center">
  175. <u--image @click='consent'
  176. :src="consentStatus==true?'../../static/images/mine/duihao@2x.png':'../../static/images/mine/wxz.png'"
  177. width="12px" height="12px"></u--image>
  178. 我已阅读并同意
  179. <navigator
  180. url="/pages/sale/webview?can_share=false&url=https://liangxin.zthymaoyi.com/userAgreement.html"
  181. class="path" hover-class="navigator-hover">《服务协议》</navigator>和<navigator
  182. url="/pages/sale/webview?can_share=false&url=https://liangxin.zthymaoyi.com/screctAgreement.html"
  183. class="path" hover-class="navigator-hover">《隐私政策》</navigator>
  184. </view>
  185. <u-button type="primary" @click="submit">提交</u-button>
  186. <u-toast ref="uToast"></u-toast>
  187. <u-action-sheet :actions="$helper.imgTypeList" :title="$helper.imgType" :show="isShowimgType"
  188. @select="imgTypeSelect" :closeOnClickOverlay="true" :closeOnClickAction="true"
  189. @close="isShowimgType=false">
  190. </u-action-sheet>
  191. <u-picker :show="isShowValidity" ref="uPicker" :columns="validityPeriod" @confirm="confirmValidityPeriod"
  192. :closeOnClickOverlay='true' @close='isShowValidity=false' @cancel='isShowValidity=false'>
  193. </u-picker>
  194. </view>
  195. </view>
  196. </template>
  197. <script>
  198. import uploadImage from '@/components/ossutil/uploadFile.js';
  199. var _this;
  200. export default {
  201. components: {},
  202. data() {
  203. return {
  204. consentStatus: false,
  205. isGCar: true,
  206. ValidityPeriodType: '',
  207. validityPeriod: [],
  208. isShowValidity: false,
  209. uploadType: '',
  210. isShowimgType: false,
  211. dataDetails: {},
  212. radiolist: [{
  213. name: '挂车司机',
  214. disabled: false
  215. },
  216. {
  217. name: '非挂车司机',
  218. disabled: false
  219. }
  220. ],
  221. // u-radio-group的v-model绑定的值如果设置为某个radio的name,就会被默认选中
  222. radiovalue: '挂车司机',
  223. };
  224. },
  225. onLoad(options) {
  226. _this = this;
  227. console.log(options)
  228. this.dataDetails = JSON.parse(options.data)
  229. this.dataDetails.driverType = 1
  230. this.validityPeriod = this.$helper.makeValidityPeriod()
  231. },
  232. methods: {
  233. delCard(type) {
  234. switch (type) {
  235. case 1:
  236. _this.dataDetails.driverLicenseHomePage = ""
  237. break;
  238. case 2:
  239. _this.dataDetails.driverLicenseBackPage = ""
  240. break;
  241. case 3:
  242. _this.dataDetails.drivingLicenseHomePage = ""
  243. break;
  244. case 4:
  245. _this.dataDetails.drivingLicenseBackPage = ""
  246. break;
  247. case 5:
  248. _this.dataDetails.trailerLicenseHomePage = ""
  249. break;
  250. case 6:
  251. _this.dataDetails.trailerLicenseBackPage = ""
  252. break;
  253. case 7:
  254. _this.dataDetails.qualificationCertificate = ""
  255. break;
  256. case 8:
  257. _this.dataDetails.operationCertificate = ""
  258. break;
  259. case 9:
  260. _this.dataDetails.trailerOperationCertificate = ""
  261. break;
  262. }
  263. },
  264. consent() {
  265. this.consentStatus = !this.consentStatus
  266. // uni.setStorage({
  267. // key: 'policyStorageKey',
  268. // data: this.consentStatus
  269. // });
  270. },
  271. validate(data) {},
  272. confirmValidityPeriod(e) {
  273. console.log('confirm', e)
  274. switch (this.ValidityPeriodType) {
  275. case 0:
  276. this.dataDetails.driverLicenseValidityDate = e.value[0] + '-' + e.value[1] + '-' + e.value[2]
  277. break
  278. case 1:
  279. this.dataDetails.drivingLicenseValidityDate = e.value[0] + '-' + e.value[1] + '-' + e.value[2]
  280. break
  281. case 2:
  282. this.dataDetails.trailerLicenseValidityDate = e.value[0] + '-' + e.value[1] + '-' + e.value[2]
  283. break
  284. case 3:
  285. this.dataDetails.qualificationCertificateValidityDate = e.value[0] + '-' + e.value[1] + '-' + e
  286. .value[2]
  287. break
  288. case 4:
  289. this.dataDetails.operationCertificateValidityDate = e.value[0] + '-' + e.value[1] + '-' + e.value[
  290. 2]
  291. break
  292. case 5:
  293. this.dataDetails.trailerOperationCertificateValidityDate = e.value[0] + '-' + e.value[1] + '-' + e
  294. .value[2]
  295. break
  296. }
  297. this.isShowValidity = false
  298. },
  299. selectValidityPeriod(type) {
  300. this.ValidityPeriodType = type
  301. this.isShowValidity = true
  302. },
  303. // 上传图片
  304. imgTypeSelect(val) {
  305. console.log(val)
  306. console.log(this.uploadType)
  307. if (val.name == '相册') {
  308. uni.chooseImage({
  309. count: 1,
  310. sourceType: this.$helper.chooseImage.sourceType,
  311. success: function(res) {
  312. console.log(JSON.stringify(res.tempFilePaths));
  313. uploadImage(res.tempFilePaths[0], 'appData/',
  314. result => {
  315. // 上传成功回调函数
  316. console.log('图片地址-----', result)
  317. switch (_this.uploadType) {
  318. case 1:
  319. _this.dataDetails.driverLicenseHomePage = result
  320. break;
  321. case 2:
  322. _this.dataDetails.driverLicenseBackPage = result
  323. break;
  324. case 3:
  325. _this.dataDetails.drivingLicenseHomePage = result
  326. break;
  327. case 4:
  328. _this.dataDetails.drivingLicenseBackPage = result
  329. break;
  330. case 5:
  331. _this.dataDetails.trailerLicenseHomePage = result
  332. break;
  333. case 6:
  334. _this.dataDetails.trailerLicenseBackPage = result
  335. break;
  336. case 7:
  337. _this.dataDetails.qualificationCertificate = result
  338. break;
  339. case 8:
  340. _this.dataDetails.operationCertificate = result
  341. break;
  342. case 9:
  343. _this.dataDetails.trailerOperationCertificate = result
  344. break;
  345. }
  346. }
  347. )
  348. }
  349. });
  350. } else {
  351. }
  352. },
  353. uploadImg(type) {
  354. this.uploadType = type
  355. this.isShowimgType = true
  356. },
  357. validate() {
  358. // true 为校验不通过
  359. if (uni.$u.test.isEmpty(this.dataDetails.driverLicenseHomePage)) {
  360. this.$refs.uToast.show({
  361. type: 'error',
  362. message: "驾驶证主页不能为空!",
  363. })
  364. return true
  365. }
  366. if (uni.$u.test.isEmpty(this.dataDetails.driverLicenseHomePage)) {
  367. this.$refs.uToast.show({
  368. type: 'error',
  369. message: "驾驶证副页不能为空!",
  370. })
  371. return true
  372. }
  373. if (uni.$u.test.isEmpty(this.dataDetails.driverLicenseValidityDate)) {
  374. this.$refs.uToast.show({
  375. type: 'error',
  376. message: "驾驶证有效期不能为空!",
  377. })
  378. return true
  379. }
  380. if (uni.$u.test.isEmpty(this.dataDetails.drivingLicenseHomePage)) {
  381. this.$refs.uToast.show({
  382. type: 'error',
  383. message: "行驶证主页不能为空!",
  384. })
  385. return true
  386. }
  387. if (uni.$u.test.isEmpty(this.dataDetails.drivingLicenseBackPage)) {
  388. this.$refs.uToast.show({
  389. type: 'error',
  390. message: "行驶证副页不能为空!",
  391. })
  392. return true
  393. }
  394. if (uni.$u.test.isEmpty(this.dataDetails.drivingLicenseValidityDate)) {
  395. this.$refs.uToast.show({
  396. type: 'error',
  397. message: "行驶证副页不能为空!",
  398. })
  399. return true
  400. }
  401. if (uni.$u.test.isEmpty(this.dataDetails.trailerLicenseHomePage)) {
  402. this.$refs.uToast.show({
  403. type: 'error',
  404. message: "挂车行驶证主页不能为空!",
  405. })
  406. return true
  407. }
  408. if (uni.$u.test.isEmpty(this.dataDetails.drivingLicenseBackPage)) {
  409. this.$refs.uToast.show({
  410. type: 'error',
  411. message: "挂车行驶证副页不能为空!",
  412. })
  413. return true
  414. }
  415. if (uni.$u.test.isEmpty(this.dataDetails.trailerLicenseBackPage)) {
  416. this.$refs.uToast.show({
  417. type: 'error',
  418. message: "行驶证副页不能为空!",
  419. })
  420. return true
  421. }
  422. if (uni.$u.test.isEmpty(this.dataDetails.trailerLicenseValidityDate)) {
  423. this.$refs.uToast.show({
  424. type: 'error',
  425. message: "挂车行驶证有效期不能为空!",
  426. })
  427. return true
  428. }
  429. if (uni.$u.test.isEmpty(this.dataDetails.qualificationCertificate)) {
  430. this.$refs.uToast.show({
  431. type: 'error',
  432. message: "从业资格证不能为空!",
  433. })
  434. return true
  435. }
  436. if (uni.$u.test.isEmpty(this.dataDetails.qualificationCertificateValidityDate)) {
  437. this.$refs.uToast.show({
  438. type: 'error',
  439. message: "从业资格证有效期不能为空!",
  440. })
  441. return true
  442. }
  443. if (uni.$u.test.isEmpty(this.dataDetails.operationCertificate)) {
  444. this.$refs.uToast.show({
  445. type: 'error',
  446. message: "运营证不能为空!",
  447. })
  448. return true
  449. }
  450. if (uni.$u.test.isEmpty(this.dataDetails.operationCertificateValidityDate)) {
  451. this.$refs.uToast.show({
  452. type: 'error',
  453. message: "运营证有效期不能为空!",
  454. })
  455. return true
  456. }
  457. if (uni.$u.test.isEmpty(this.dataDetails.trailerOperationCertificate)) {
  458. this.$refs.uToast.show({
  459. type: 'error',
  460. message: "挂车运营证不能为空!",
  461. })
  462. return true
  463. }
  464. if (uni.$u.test.isEmpty(this.dataDetails.trailerOperationCertificateValidityDate)) {
  465. this.$refs.uToast.show({
  466. type: 'error',
  467. message: "挂车运营证有效期不能为空!",
  468. })
  469. return true
  470. }
  471. return false
  472. },
  473. submit() {
  474. uni.switchTab({
  475. url:'/pages/mine/index'
  476. })
  477. // 校验
  478. if (this.validate()) return
  479. if(this.dataDetails.driverSex=='男'){
  480. this.dataDetails.driverCall = this.dataDetails.driverCall+'先生'
  481. }else{
  482. this.dataDetails.driverCall = this.dataDetails.driverCall+'女士'
  483. }
  484. this.$request.baseRequest('post', '/driverInfo/api/addInfo', this.dataDetails).then(res => {
  485. if(res.data.code==200){
  486. uni.$u.route('/pages/mine/index');
  487. }
  488. })
  489. .catch(res => {
  490. uni.$u.toast(res.message);
  491. });
  492. },
  493. radioChange(n) {
  494. console.log('radioChange', n);
  495. if (n == '挂车司机') {
  496. this.isGCar = true
  497. this.dataDetails.driverType = 1
  498. } else {
  499. this.dataDetails.driverType = 2
  500. this.isGCar = false
  501. }
  502. },
  503. //设置图片
  504. setImage(e) {
  505. console.log(e);
  506. //显示在页面
  507. //this.imagesrc = e.path;
  508. // if (e.dotype == 'idphoto') {
  509. // _this.zjzClipper(e.path);
  510. // } else if (e.dotype == 'watermark') {
  511. // _this.watermark(e.path);
  512. // } else {
  513. // _this.savePhoto(e.path);
  514. // }
  515. },
  516. }
  517. };
  518. </script>
  519. <style scoped lang="scss">
  520. .u-radio {
  521. margin-bottom: 0px !important;
  522. }
  523. .row4-img {
  524. width: 32rpx;
  525. height: 32rpx;
  526. }
  527. .preview {
  528. width: 100%;
  529. height: 100px;
  530. }
  531. .top-head {
  532. background: #2772FB;
  533. height: 80rpx;
  534. width: 100%;
  535. }
  536. .container {
  537. background: white;
  538. position: relative;
  539. top: -60rpx;
  540. margin: 0 20rpx;
  541. padding: 20rpx;
  542. box-sizing: border-box;
  543. border-radius: 10rpx;
  544. }
  545. .radio-group {
  546. display: flex;
  547. align-items: center;
  548. justify-content: space-between;
  549. }
  550. .level1-title {
  551. margin: 20rpx 0;
  552. border-bottom: 1px solid #EEEEEE;
  553. padding-bottom: 30rpx;
  554. }
  555. .content1 {
  556. .row {
  557. border-bottom: 1px solid #EEEEEE;
  558. padding-bottom: 28rpx;
  559. margin-top: 26rpx;
  560. }
  561. .left-text {
  562. // background: red;
  563. width: 320rpx;
  564. color: #333333;
  565. display: flex;
  566. align-items: center;
  567. }
  568. .picture {
  569. position: relative;
  570. width: 100%;
  571. height: 440rpx;
  572. display: flex;
  573. justify-content: center;
  574. flex-direction: column;
  575. align-items: center;
  576. .text {
  577. margin-top: 20rpx;
  578. }
  579. }
  580. .picture1 {
  581. background: url(../../static/images/mine/jzz.png);
  582. background-size: 100% 100%;
  583. }
  584. .picture2 {
  585. background: url(../../static/images/mine/jzf.png);
  586. background-size: 100% 100%;
  587. }
  588. .picture3 {
  589. background: url(../../static/images/mine/xsz.png);
  590. background-size: 100% 100%;
  591. }
  592. .picture4 {
  593. background: url(../../static/images/mine/xsf.png);
  594. background-size: 100% 100%;
  595. }
  596. .picture5 {
  597. background: url(../../static/images/mine/gcxsz.png);
  598. background-size: 100% 100%;
  599. }
  600. .picture6 {
  601. background: url(../../static/images/mine/gcxsf.png);
  602. background-size: 100% 100%;
  603. }
  604. .picture7 {
  605. background: url(../../static/images/mine/cy.png);
  606. background-size: 100% 100%;
  607. }
  608. .picture8 {
  609. background: url(../../static/images/mine/cy.png);
  610. background-size: 100% 100%;
  611. }
  612. .picture9 {
  613. background: url(../../static/images/mine/cy.png);
  614. background-size: 100% 100%;
  615. }
  616. .xj-image {
  617. width: 100rpx;
  618. height: 100rpx;
  619. }
  620. .title {
  621. color: #999999;
  622. margin: 20rpx 0;
  623. }
  624. }
  625. .service {
  626. font-size: 24rpx;
  627. margin: 20rpx;
  628. justify-content: center;
  629. /deep/.u-image {
  630. margin: 0 20rpx;
  631. }
  632. }
  633. .del-card {
  634. position: absolute;
  635. top: -10rpx;
  636. right: -6rpx;
  637. width: 80rpx;
  638. height: 80rpx;
  639. z-index: 9;
  640. }
  641. .path{
  642. color: #2772FB;
  643. }
  644. </style>