driverCertificationNext.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691
  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. _this.$forceUpdate()
  347. }
  348. )
  349. }
  350. });
  351. } else {
  352. }
  353. },
  354. uploadImg(type) {
  355. this.uploadType = type
  356. this.isShowimgType = true
  357. },
  358. validate() {
  359. // true 为校验不通过
  360. if (uni.$u.test.isEmpty(this.dataDetails.driverLicenseHomePage)) {
  361. this.$refs.uToast.show({
  362. type: 'error',
  363. message: "驾驶证主页不能为空!",
  364. })
  365. return true
  366. }
  367. if (uni.$u.test.isEmpty(this.dataDetails.driverLicenseHomePage)) {
  368. this.$refs.uToast.show({
  369. type: 'error',
  370. message: "驾驶证副页不能为空!",
  371. })
  372. return true
  373. }
  374. if (uni.$u.test.isEmpty(this.dataDetails.driverLicenseValidityDate)) {
  375. this.$refs.uToast.show({
  376. type: 'error',
  377. message: "驾驶证有效期不能为空!",
  378. })
  379. return true
  380. }
  381. if (uni.$u.test.isEmpty(this.dataDetails.drivingLicenseHomePage)) {
  382. this.$refs.uToast.show({
  383. type: 'error',
  384. message: "行驶证主页不能为空!",
  385. })
  386. return true
  387. }
  388. if (uni.$u.test.isEmpty(this.dataDetails.drivingLicenseBackPage)) {
  389. this.$refs.uToast.show({
  390. type: 'error',
  391. message: "行驶证副页不能为空!",
  392. })
  393. return true
  394. }
  395. if (uni.$u.test.isEmpty(this.dataDetails.drivingLicenseValidityDate)) {
  396. this.$refs.uToast.show({
  397. type: 'error',
  398. message: "行驶证副页不能为空!",
  399. })
  400. return true
  401. }
  402. if (uni.$u.test.isEmpty(this.dataDetails.trailerLicenseHomePage)) {
  403. this.$refs.uToast.show({
  404. type: 'error',
  405. message: "挂车行驶证主页不能为空!",
  406. })
  407. return true
  408. }
  409. if (uni.$u.test.isEmpty(this.dataDetails.drivingLicenseBackPage)) {
  410. this.$refs.uToast.show({
  411. type: 'error',
  412. message: "挂车行驶证副页不能为空!",
  413. })
  414. return true
  415. }
  416. if (uni.$u.test.isEmpty(this.dataDetails.trailerLicenseBackPage)) {
  417. this.$refs.uToast.show({
  418. type: 'error',
  419. message: "行驶证副页不能为空!",
  420. })
  421. return true
  422. }
  423. if (uni.$u.test.isEmpty(this.dataDetails.trailerLicenseValidityDate)) {
  424. this.$refs.uToast.show({
  425. type: 'error',
  426. message: "挂车行驶证有效期不能为空!",
  427. })
  428. return true
  429. }
  430. if (uni.$u.test.isEmpty(this.dataDetails.qualificationCertificate)) {
  431. this.$refs.uToast.show({
  432. type: 'error',
  433. message: "从业资格证不能为空!",
  434. })
  435. return true
  436. }
  437. if (uni.$u.test.isEmpty(this.dataDetails.qualificationCertificateValidityDate)) {
  438. this.$refs.uToast.show({
  439. type: 'error',
  440. message: "从业资格证有效期不能为空!",
  441. })
  442. return true
  443. }
  444. if (uni.$u.test.isEmpty(this.dataDetails.operationCertificate)) {
  445. this.$refs.uToast.show({
  446. type: 'error',
  447. message: "运营证不能为空!",
  448. })
  449. return true
  450. }
  451. if (uni.$u.test.isEmpty(this.dataDetails.operationCertificateValidityDate)) {
  452. this.$refs.uToast.show({
  453. type: 'error',
  454. message: "运营证有效期不能为空!",
  455. })
  456. return true
  457. }
  458. if (uni.$u.test.isEmpty(this.dataDetails.trailerOperationCertificate)) {
  459. this.$refs.uToast.show({
  460. type: 'error',
  461. message: "挂车运营证不能为空!",
  462. })
  463. return true
  464. }
  465. if (uni.$u.test.isEmpty(this.dataDetails.trailerOperationCertificateValidityDate)) {
  466. this.$refs.uToast.show({
  467. type: 'error',
  468. message: "挂车运营证有效期不能为空!",
  469. })
  470. return true
  471. }
  472. return false
  473. },
  474. submit() {
  475. uni.switchTab({
  476. url:'/pages/mine/index'
  477. })
  478. // 校验
  479. if (this.validate()) return
  480. if(this.dataDetails.driverSex=='男'){
  481. this.dataDetails.driverCall = this.dataDetails.driverCall+'先生'
  482. }else{
  483. this.dataDetails.driverCall = this.dataDetails.driverCall+'女士'
  484. }
  485. this.$request.baseRequest('post', '/driverInfo/api/addInfo', this.dataDetails).then(res => {
  486. if(res.data.code==200){
  487. uni.$u.route('/pages/mine/index');
  488. }
  489. })
  490. .catch(res => {
  491. uni.$u.toast(res.message);
  492. });
  493. },
  494. radioChange(n) {
  495. console.log('radioChange', n);
  496. if (n == '挂车司机') {
  497. this.isGCar = true
  498. this.dataDetails.driverType = 1
  499. } else {
  500. this.dataDetails.driverType = 2
  501. this.isGCar = false
  502. }
  503. },
  504. //设置图片
  505. setImage(e) {
  506. console.log(e);
  507. //显示在页面
  508. //this.imagesrc = e.path;
  509. // if (e.dotype == 'idphoto') {
  510. // _this.zjzClipper(e.path);
  511. // } else if (e.dotype == 'watermark') {
  512. // _this.watermark(e.path);
  513. // } else {
  514. // _this.savePhoto(e.path);
  515. // }
  516. },
  517. }
  518. };
  519. </script>
  520. <style scoped lang="scss">
  521. .u-radio {
  522. margin-bottom: 0px !important;
  523. }
  524. .row4-img {
  525. width: 32rpx;
  526. height: 32rpx;
  527. }
  528. .preview {
  529. width: 100%;
  530. height: 100px;
  531. }
  532. .top-head {
  533. background: #2772FB;
  534. height: 80rpx;
  535. width: 100%;
  536. }
  537. .container {
  538. background: white;
  539. position: relative;
  540. top: -60rpx;
  541. margin: 0 20rpx;
  542. padding: 20rpx;
  543. box-sizing: border-box;
  544. border-radius: 10rpx;
  545. }
  546. .radio-group {
  547. display: flex;
  548. align-items: center;
  549. justify-content: space-between;
  550. }
  551. .level1-title {
  552. margin: 20rpx 0;
  553. border-bottom: 1px solid #EEEEEE;
  554. padding-bottom: 30rpx;
  555. }
  556. .content1 {
  557. .row {
  558. border-bottom: 1px solid #EEEEEE;
  559. padding-bottom: 28rpx;
  560. margin-top: 26rpx;
  561. }
  562. .left-text {
  563. // background: red;
  564. width: 320rpx;
  565. color: #333333;
  566. display: flex;
  567. align-items: center;
  568. }
  569. .picture {
  570. position: relative;
  571. width: 100%;
  572. height: 440rpx;
  573. display: flex;
  574. justify-content: center;
  575. flex-direction: column;
  576. align-items: center;
  577. .text {
  578. margin-top: 20rpx;
  579. }
  580. }
  581. .picture1 {
  582. background: url(../../static/images/mine/jzz.png);
  583. background-size: 100% 100%;
  584. }
  585. .picture2 {
  586. background: url(../../static/images/mine/jzf.png);
  587. background-size: 100% 100%;
  588. }
  589. .picture3 {
  590. background: url(../../static/images/mine/xsz.png);
  591. background-size: 100% 100%;
  592. }
  593. .picture4 {
  594. background: url(../../static/images/mine/xsf.png);
  595. background-size: 100% 100%;
  596. }
  597. .picture5 {
  598. background: url(../../static/images/mine/gcxsz.png);
  599. background-size: 100% 100%;
  600. }
  601. .picture6 {
  602. background: url(../../static/images/mine/gcxsf.png);
  603. background-size: 100% 100%;
  604. }
  605. .picture7 {
  606. background: url(../../static/images/mine/cy.png);
  607. background-size: 100% 100%;
  608. }
  609. .picture8 {
  610. background: url(../../static/images/mine/cy.png);
  611. background-size: 100% 100%;
  612. }
  613. .picture9 {
  614. background: url(../../static/images/mine/cy.png);
  615. background-size: 100% 100%;
  616. }
  617. .xj-image {
  618. width: 100rpx;
  619. height: 100rpx;
  620. }
  621. .title {
  622. color: #999999;
  623. margin: 20rpx 0;
  624. }
  625. }
  626. .service {
  627. font-size: 24rpx;
  628. margin: 20rpx;
  629. justify-content: center;
  630. /deep/.u-image {
  631. margin: 0 20rpx;
  632. }
  633. }
  634. .del-card {
  635. position: absolute;
  636. top: -10rpx;
  637. right: -6rpx;
  638. width: 80rpx;
  639. height: 80rpx;
  640. z-index: 9;
  641. }
  642. .path{
  643. color: #2772FB;
  644. }
  645. </style>