You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rescind-carId-select.vue 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811
  1. <template>
  2. <view class="content-wrap">
  3. <!-- <view @click="tabChange(true)">
  4. <view :class="state.isMyPeopple ? 'big' : 'nomal'"> 本人车辆 </view>
  5. <view :class="state.isMyPeopple ? 'tip' : ''"> </view>
  6. </view>
  7. <view @click="tabChange(false)" style="margin-left: 60rpx" class="">
  8. <view :class="state.isMyPeopple ? 'nomal' : 'big'"> 他人车辆 </view>
  9. <view :class="state.isMyPeopple ? '' : 'tip'"> </view>
  10. </view> -->
  11. </view>
  12. <!-- <view v-if="state.isMyPeopple" class="content">
  13. <view class="item" v-for="(item, i) in list" :key="i">
  14. <view class="iten-left">
  15. <image :src="`${$imgUrl}che.png`" mode=""></image>
  16. <text>{{ item.name }}</text>
  17. </view>
  18. <view class="choose-item" @click="choose(i, item)">
  19. <view class="active" v-if="flag == i"> </view>
  20. </view>
  21. </view>
  22. </view> -->
  23. <view class="content">
  24. <view class="title"> 车主信息 </view>
  25. <view class="item-tips">
  26. <view class="title"> 上传后请核对识别信息 </view>
  27. <view class="tip"> 如有错误请及时手动修改 </view>
  28. </view>
  29. <view class="picture-wrapper" @click="cardImageOcr('1')">
  30. <view class="bg">
  31. <view class="">
  32. <view class="name"> 人像面 </view>
  33. <view class="value"> 上传身份证的人像面 </view>
  34. <view class="tip">
  35. <view class="tip-value"> 拍摄规范 </view>
  36. </view>
  37. </view>
  38. <image v-if="!state.form.userPosImgUrl" class="icon" :src="`${$imgUrl}applyCard/renxiang.png`">
  39. </image>
  40. <image v-else class="icon" :src="state.form.userPosImgUrl"></image>
  41. </view>
  42. </view>
  43. <view class="picture-wrapper" @click="cardImageOcr('2')">
  44. <view class="bg">
  45. <view class="">
  46. <view class="name"> 国徽面 </view>
  47. <view class="value"> 上传身份证的国徽面 </view>
  48. <view class="tip">
  49. <view class="tip-value"> 拍摄规范 </view>
  50. </view>
  51. </view>
  52. <image v-if="!state.form.userNegImgUrl" class="icon" :src="`${$imgUrl}applyCard/guohui.png`">
  53. </image>
  54. <image v-else class="icon" :src="state.form.userNegImgUrl"></image>
  55. </view>
  56. </view>
  57. <view class="shibie-wrapper">
  58. <!-- <view class="title"> 识别内容如下 </view>
  59. <u-form label-width="200" :model="state.form" ref="uForm">
  60. <u-form-item label="姓名">
  61. <u-input v-model="state.form.userName" />
  62. </u-form-item>
  63. <u-form-item label="性别">
  64. <u-input v-model="state.form.gender" type="select" />
  65. </u-form-item>
  66. <u-form-item label="身份证号">
  67. <u-input v-model="state.form.userIdNum" />
  68. </u-form-item>
  69. <u-form-item label="证件有效期">
  70. <u-input v-model="state.form.tmerValidity" type="select" />
  71. </u-form-item>
  72. <u-form-item label="地址">
  73. <u-input v-model="state.form.address" />
  74. </u-form-item>
  75. </u-form> -->
  76. </view>
  77. <view style="margin-top: 30rpx" class="title"> 行驶证信息 </view>
  78. <view class="item-tips">
  79. <view class="title"> 上传后请核对识别信息 </view>
  80. <view class="tip"> 如有错误请及时手动修改 </view>
  81. </view>
  82. <view class="picture-wrapper" @click="cardDbImageOcr('1')">
  83. <view class="bg">
  84. <view class="">
  85. <view class="name"> 行驶证正页 </view>
  86. <view class="value"> 上传 行驶证正页 </view>
  87. <view class="tip">
  88. <view class="tip-value"> 拍摄规范 </view>
  89. </view>
  90. </view>
  91. <image v-if="!state.form.vehPosImgUrl" class="icon" :src="`${$imgUrl}applyCard/car-zhu.png`">
  92. </image>
  93. <image v-else class="icon" :src="state.form.vehPosImgUrl"></image>
  94. </view>
  95. </view>
  96. <view class="picture-wrapper" @click="cardDbImageOcr('2')">
  97. <view class="bg">
  98. <view class="">
  99. <view class="name"> 行驶证副业 </view>
  100. <view class="value"> 上传行驶证副业 </view>
  101. <view class="tip">
  102. <view class="tip-value"> 拍摄规范 </view>
  103. </view>
  104. </view>
  105. <image v-if="!state.form.vehNegImgUrl" class="icon" :src="`${$imgUrl}applyCard/car-fu.png`">
  106. </image>
  107. <image v-else class="icon" :src="state.form.vehNegImgUrl"></image>
  108. </view>
  109. </view>
  110. <view class="picture-wrapper" @click="cardFileImageUpdate(1)">
  111. <view class="bg">
  112. <view class="">
  113. <view class="name"> 人车合影 </view>
  114. <view class="value"> 上传人车合影照片 </view>
  115. <view class="tip">
  116. <view class="tip-value"> 拍摄规范 </view>
  117. </view>
  118. </view>
  119. <image v-if="!state.FormData.peopleVehicleImgUrl" class="icon" :src="`${$imgUrl}applyCard/chetou.png`">
  120. </image>
  121. <image v-else class="icon" :src="state.FormData.peopleVehicleImgUrl"></image>
  122. </view>
  123. </view>
  124. <view class="picture-wrapper" @click="cardFileImageUpdate(2)">
  125. <view class="bg">
  126. <view class="">
  127. <view class="name"> 承诺书 </view>
  128. <view class="value"> 上传承诺书照片 </view>
  129. <view class="tip">
  130. <view class="tip-value"> 拍摄规范 </view>
  131. </view>
  132. </view>
  133. <image v-if="!state.FormData.commitmentUrl" class="icon" :src="`${$imgUrl}applyCard/weituoshu.png`">
  134. </image>
  135. <image v-else class="icon" :src="state.FormData.commitmentUrl"></image>
  136. </view>
  137. </view>
  138. <view class="shibie-wrapper">
  139. <view class="title"> 识别内容如下 </view>
  140. <u-form label-width="200" :model="state.form" ref="uForm">
  141. <u-form-item label="车牌号">
  142. <u-input v-model="state.form.vehicleId" />
  143. </u-form-item>
  144. <u-form-item label="车牌颜色">
  145. <u-input v-model="state.form.caridCorlor" type="select" @click="show1 = true" />
  146. </u-form-item>
  147. <!-- <u-form-item label="所有人">
  148. <u-input v-model="state.form.man" />
  149. </u-form-item>
  150. <u-form-item label="车辆类型">
  151. <u-input v-model="state.form.vehicleType" />
  152. </u-form-item>
  153. <u-form-item label="使用性质">
  154. <u-input v-model="state.form.character" />
  155. </u-form-item>
  156. <u-form-item label="车辆识别代码">
  157. <u-input v-model="state.form.vin" />
  158. </u-form-item>
  159. <u-form-item label="发动机号码">
  160. <u-input v-model="state.form.engineNum" />
  161. </u-form-item>
  162. <u-form-item label="注册日期">
  163. <u-input v-model="state.form.register" />
  164. </u-form-item>
  165. <u-form-item label="发证日期">
  166. <u-input v-model="state.form.issueDate" />
  167. </u-form-item>
  168. <u-form-item label="核定载人数">
  169. <u-input v-model="state.form.approvedCount" />
  170. </u-form-item>
  171. <u-form-item label="整备质量">
  172. <u-input v-model="state.form.maintenaceMass" />
  173. </u-form-item>
  174. <u-form-item label="外廓尺寸">
  175. <u-input v-model="state.form.vehicleDimensions" />
  176. </u-form-item>
  177. <u-form-item label="总质量">
  178. <u-input v-model="state.form.totalMass" />
  179. </u-form-item> -->
  180. </u-form>
  181. </view>
  182. <view class="green-tip">
  183. 如识别信息有误,请手动修改,确认无误后,点击下一步!
  184. </view>
  185. <view class="action">
  186. <button type="default" class="button" @click="savaHandle()">
  187. 下一步
  188. </button>
  189. </view>
  190. <!-- 选择车牌颜色 -->
  191. <u-select v-model="show1" :list="state.actionSheetList" @confirm="selectConfirm"></u-select>
  192. </view>
  193. </template>
  194. <script setup lang="ts">
  195. import selectCar from "./select-car.vue";
  196. import {
  197. pathToBase64
  198. } from "@/utils/image-tools/index.js";
  199. import {
  200. reactive,
  201. ref
  202. } from "vue";
  203. import {
  204. onLoad,
  205. onShow
  206. } from "@dcloudio/uni-app";
  207. import {
  208. etcOcrCard,
  209. etcUserCardInfoSubmit,
  210. fileUpload,
  211. etcCarOcrCard,
  212. relieveCarId,
  213. } from "@/utils/network/api.js";
  214. import {
  215. request
  216. } from "@/utils/network/request.js";
  217. import {
  218. getItem
  219. } from "@/utils/storage.ts"
  220. import {
  221. stringToJson
  222. } from "@/utils/network/encryption";
  223. import navBar from "../../components/nav-bar/nav-bar2.vue";
  224. import {
  225. navTo
  226. } from "../../utils/utils";
  227. // ########
  228. const show1 = ref(false)
  229. const state = reactive({
  230. ocrData: {
  231. name: "",
  232. gender: "",
  233. idno: "",
  234. address: "",
  235. begindate: "",
  236. enddate: "",
  237. tel: "",
  238. tmerValidity: "",
  239. },
  240. form: {
  241. caridCorlor: "", //车牌颜色
  242. userName: "", //开户人姓名
  243. userIdNum: "", //用户证件号码
  244. userPosImgUrl: "", //身份证正面
  245. userNegImgUrl: "", //身份证反面
  246. address: "", //开户人地址
  247. gender: "",
  248. tmerValidity: "",
  249. man: "", //所有人
  250. character: "", //使用性质
  251. register: "", //注册日期
  252. vehBodyUrl: '', //人车合照
  253. customerId: "", //用户编号
  254. vehicleId: "", //车牌编号
  255. issueDate: "", //发证日期
  256. vehPosImgUrl: "", //行驶证正面
  257. vehNegImgUrl: "", //行驶证证反面
  258. type: "0", //0,客车 1.货车
  259. useUserType: 0, //车辆用户类型
  260. useUserTypeName: "普通车",
  261. vehicleSign: 2, //前/后装标识
  262. vin: "", //车辆识别代号
  263. engineNum: "", //发动机号码
  264. vehicleType: "", //车辆类型
  265. vehicleModel: "", //行驶证品牌型号
  266. approvedCount: undefined, //核定人数
  267. totalMass: undefined, //总质量
  268. maintenaceMass: undefined, //整备质量
  269. permittedWeight: "", //核定载质量
  270. vehicleDimensions: "", //车辆尺寸
  271. permittedTowWeight: "", //准牵引总质量
  272. axleCount: "", //车轴数
  273. ownerName: "", //车主姓名
  274. ownerIdType: "", //车主证件类型
  275. ownerIdNum: "", //车主证件号码
  276. ownPosImgUrl: "", //车主证件正面图片
  277. ownNegImgUrl: "", //车主证件反面图片
  278. agreementId: "", //签约编号
  279. channelId: "5201018892300000001",
  280. },
  281. orderId: "",
  282. isMyPeopple: true,
  283. buchongData: {
  284. conmpany: "李某一",
  285. type: "居民身份证",
  286. card: "23728347626342332",
  287. phone: "",
  288. },
  289. actionSheetList: [{
  290. label: "蓝色",
  291. value: '0',
  292. }, {
  293. label: "黄色",
  294. value: 1,
  295. },
  296. {
  297. label: "黑色",
  298. value: 2,
  299. },
  300. {
  301. label: "白色",
  302. value: 3,
  303. },
  304. {
  305. label: "渐变绿色",
  306. value: 4,
  307. },
  308. {
  309. label: "黄绿双拼色",
  310. value: 5,
  311. },
  312. {
  313. label: "蓝白渐变色",
  314. value: 6,
  315. },
  316. {
  317. label: "未确定",
  318. value: 9,
  319. },
  320. {
  321. label: "绿色",
  322. value: 11,
  323. },
  324. {
  325. label: "红色",
  326. value: 12,
  327. },
  328. ],
  329. FormData: {
  330. vehiclePlate: '',
  331. vehiclePlatecolor: '',
  332. openid: getItem('openId'),
  333. idcardFrontImgUrl: '',
  334. idcardBacktImgUrl: '',
  335. vehPosImgUrl: '',
  336. vehNegImgUrl: '',
  337. peopleVehicleImgUrl: '',
  338. commitmentUrl: '',
  339. mobile: '',
  340. code: ''
  341. }
  342. });
  343. const savaHandle = () => {
  344. if (state.FormData.idcardFrontImgUrl && state.FormData.idcardBacktImgUrl) {
  345. if (state.FormData.vehPosImgUrl && state.FormData.vehNegImgUrl) {
  346. if (state.FormData.peopleVehicleImgUrl) {
  347. if (state.FormData.vehiclePlate && state.FormData.vehiclePlatecolor) {
  348. state.FormData.vehiclePlatecolor=Number(state.FormData.vehiclePlatecolor)
  349. let data = JSON.stringify(state.FormData)
  350. navTo(`/after-sale/rescind-carId/verification?fromData=${data}`);
  351. } else {
  352. uni.showToast({
  353. title: "请填写车牌号和车牌颜色",
  354. icon: "none"
  355. })
  356. }
  357. } else {
  358. uni.showToast({
  359. title: "请上传人车合影",
  360. icon: "none"
  361. })
  362. }
  363. } else {
  364. uni.showToast({
  365. title: "请上传行驶证正反图片",
  366. icon: "none"
  367. })
  368. }
  369. } else {
  370. uni.showToast({
  371. title: "请上传身份证正反图片",
  372. icon: "none"
  373. })
  374. }
  375. console.log(JSON.stringify(state.FormData));
  376. // var data = state.form
  377. // const options = {
  378. // type: 2,
  379. // data: data,
  380. // method: 'POST',
  381. // showLoading: true,
  382. // }
  383. // request(relieveCarId, options).then((res) => {
  384. // const data = stringToJson(res.bizContent);
  385. // })
  386. };
  387. const selectConfirm = (item: any) => {
  388. console.log(item);
  389. state.FormData.vehiclePlatecolor = item[0].value
  390. state.form.caridCorlor = item[0].label
  391. };
  392. const cardFileImageUpdate = (val) => {
  393. uni.chooseImage({
  394. count: 1, //只能选取一张照片
  395. sizeType: ["original", "compressed"], //可以指定是原图还是压缩图,默认二者都有
  396. sourceType: ["camera", "album"], //从相册选择
  397. success: function(res) {
  398. pathToBase64(res.tempFilePaths[0])
  399. .then((path) => {
  400. var data = {
  401. fileBase64: path,
  402. };
  403. const options = {
  404. type: 2,
  405. data: data,
  406. method: "POST",
  407. showLoading: true,
  408. };
  409. request(fileUpload, options).then((res) => {
  410. const data = stringToJson(res.bizContent);
  411. console.log(data, "didid");
  412. if (val == 1) {
  413. state.FormData.peopleVehicleImgUrl = data.data.url;
  414. } else {
  415. state.FormData.commitmentUrl = data.data.url;
  416. }
  417. });
  418. })
  419. .catch((error) => {});
  420. },
  421. });
  422. };
  423. // //tab切换
  424. // const tabChange = (val: any) => {
  425. // if (val) {
  426. // state.isMyPeopple = true;
  427. // } else {
  428. // state.isMyPeopple = false;
  429. // }
  430. // state.form = {
  431. // orderId: state.orderId, //订单ID
  432. // userName: "", //开户人姓名
  433. // userIdType: "101", //用户证件类型 101//身份证
  434. // userIdNum: "", //用户证件号码
  435. // userPosImgUrl: "", //身份证正面
  436. // userNegImgUrl: "", //身份证反面
  437. // tel: "", //开户人手机号
  438. // address: "", //开户人地址
  439. // sceneType: "", //用户协议支撑服务场景(发行服务机构和用户签订的协议)
  440. // channelId: "", //渠道id
  441. // gender: "",
  442. // customerIdVld: "",
  443. // agentName: "",
  444. // agentgender: "",
  445. // agentIdType: "101",
  446. // agentIdNum: "",
  447. // agentPosImgUrl: "",
  448. // agentNegImgUrl: "",
  449. // proxyUrl: "",
  450. // agentAddress: "",
  451. // tmerValidity: "",
  452. // };
  453. // };
  454. onLoad((option: any) => {
  455. state.form.orderId = option.orderId;
  456. state.orderId = option.orderId;
  457. });
  458. const cardDbImageOcr = (val: any) => {
  459. var imageType = val;
  460. uni.chooseImage({
  461. count: 1, //只能选取一张照片
  462. sizeType: ["original", "compressed"], //可以指定是原图还是压缩图,默认二者都有
  463. sourceType: ["camera", "album"], //从相册选择
  464. success: function(res) {
  465. pathToBase64(res.tempFilePaths[0])
  466. .then((path) => {
  467. var data = {
  468. source: "1",
  469. agencyId: "52010106004",
  470. imageType: imageType,
  471. fileName: res.tempFilePaths[0],
  472. imageBase64: path,
  473. };
  474. const options = {
  475. type: 2,
  476. data: data,
  477. method: "POST",
  478. showLoading: true,
  479. };
  480. request(etcCarOcrCard, options).then((res) => {
  481. const data = stringToJson(res.bizContent);
  482. console.log(data, "didi");
  483. if (val === "1") {
  484. state.form.vehicleId = data.plate_a;
  485. state.form.man = data.man;
  486. state.form.vehicleType = data.vehicle;
  487. state.form.character = data.character;
  488. state.form.vin = data.vin;
  489. state.form.engineNum = data.engine;
  490. state.form.register = data.register;
  491. state.form.issueDate = data.issue;
  492. state.form.vehPosImgUrl = data.imageUrl;
  493. state.form.vehicleModel = data.model;
  494. state.FormData.vehiclePlate = data.plate_a
  495. state.FormData.vehPosImgUrl = data.imageUrl
  496. } else {
  497. state.form.approvedCount = parseFloat(data.apc);
  498. state.form.maintenaceMass = parseFloat(data.unladen);
  499. state.form.vehicleDimensions = data.overall;
  500. state.form.totalMass = parseFloat(data.gross);
  501. state.form.vehNegImgUrl = data.imageUrl;
  502. state.FormData.vehNegImgUrl = data.imageUrl
  503. }
  504. });
  505. })
  506. .catch((error) => {});
  507. },
  508. });
  509. };
  510. //orc接口调用
  511. const cardImageOcr = (val: any) => {
  512. console.log("点击了");
  513. var imageType = val;
  514. uni.chooseImage({
  515. count: 1, //只能选取一张照片
  516. sizeType: ["original", "compressed"], //可以指定是原图还是压缩图,默认二者都有
  517. sourceType: ["camera", "album"], //从相册选择
  518. success: function(res) {
  519. console.log(res);
  520. pathToBase64(res.tempFilePaths[0])
  521. .then((path) => {
  522. console.log(path);
  523. console.log("哈哈哈");
  524. var data = {
  525. source: "1",
  526. agencyId: "52010106004",
  527. imageType: imageType,
  528. fileName: res.tempFilePaths[0],
  529. imageBase64: path,
  530. };
  531. const options = {
  532. type: 2,
  533. data: data,
  534. method: "POST",
  535. showLoading: true,
  536. };
  537. request(etcOcrCard, options).then((res) => {
  538. const data = stringToJson(res.bizContent);
  539. console.log(data, "didi");
  540. if (val === "1") {
  541. state.form.userName = data.name;
  542. state.form.gender = data.gender;
  543. state.form.userIdNum = data.idno;
  544. state.form.userPosImgUrl = data.imageUrl;
  545. state.form.address = data.address;
  546. state.FormData.idcardFrontImgUrl = data.imageUrl
  547. } else {
  548. state.form.tmerValidity = data.begindate + "-" + data.enddate;
  549. state.form.userNegImgUrl = data.imageUrl;
  550. state.FormData.idcardBacktImgUrl = data.imageUrl
  551. }
  552. });
  553. })
  554. .catch((error) => {});
  555. },
  556. });
  557. };
  558. </script>
  559. <style lang="scss" scoped>
  560. .title {
  561. font-size: 35rpx;
  562. font-family: Microsoft YaHei;
  563. font-weight: 400;
  564. color: #000000;
  565. line-height: 80rpx;
  566. margin-bottom: 10rpx;
  567. }
  568. .content-wrap {
  569. position: relative;
  570. margin-top: 50rpx;
  571. padding: 0rpx 30rpx;
  572. display: flex;
  573. .big {
  574. font-size: 30rpx;
  575. font-family: Microsoft YaHei;
  576. font-weight: 400;
  577. color: #333333;
  578. line-height: 24rpx;
  579. }
  580. .nomal {
  581. font-size: 26rpx;
  582. font-family: Microsoft YaHei;
  583. font-weight: 400;
  584. color: #666666;
  585. line-height: 24rpx;
  586. }
  587. .tip {
  588. margin-top: -5px;
  589. width: 117rpx;
  590. height: 16rpx;
  591. background: #00b38b;
  592. opacity: 0.3;
  593. }
  594. }
  595. .content {
  596. padding: 50rpx 30rpx 50rpx 30rpx;
  597. .item {
  598. padding: 20rpx;
  599. display: flex;
  600. justify-content: space-between;
  601. align-items: center;
  602. height: 130rpx;
  603. background: #ffffff;
  604. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  605. border-radius: 20rpx;
  606. margin-bottom: 30rpx;
  607. .iten-left {
  608. display: flex;
  609. align-items: center;
  610. image {
  611. width: 150rpx;
  612. height: 90rpx;
  613. }
  614. text {
  615. margin-left: 20rpx;
  616. font-size: 32rpx;
  617. font-family: Noto Sans S Chinese;
  618. font-weight: 400;
  619. color: #333333;
  620. }
  621. }
  622. .choose-item {
  623. width: 44rpx;
  624. height: 44rpx;
  625. background: #ffffff;
  626. border: 2rpx solid #00b38b;
  627. border-radius: 50%;
  628. margin-right: 20rpx;
  629. display: flex;
  630. justify-content: center;
  631. align-items: center;
  632. box-sizing: content-box;
  633. }
  634. .active {
  635. width: 34rpx;
  636. height: 34rpx;
  637. background: #00b38b;
  638. border-radius: 50%;
  639. }
  640. }
  641. .action {
  642. padding-left: 20rpx;
  643. padding-right: 20rpx;
  644. padding-bottom: 30rpx;
  645. .button {
  646. height: 80rpx;
  647. background: linear-gradient(-90deg, #43a1e0 0%, #13e7c1 100%);
  648. border-radius: 40rpx;
  649. font-size: 32rpx;
  650. font-weight: 400;
  651. color: #ffffff;
  652. line-height: 80rpx;
  653. }
  654. }
  655. .item-tips {
  656. .title {
  657. font-size: 30rpx;
  658. font-family: Microsoft YaHei;
  659. font-weight: 400;
  660. color: #000000;
  661. line-height: 24rpx;
  662. }
  663. .tip {
  664. margin-top: 16rpx;
  665. font-size: 24rpx;
  666. font-family: Microsoft YaHei;
  667. font-weight: 400;
  668. color: #999999;
  669. line-height: 24rpx;
  670. }
  671. }
  672. .picture-wrapper {
  673. margin-top: 40rpx;
  674. .bg {
  675. background: #ffffff;
  676. box-shadow: 0rpx 4rpx 13rpx 3rpx rgba(223, 223, 223, 0.8);
  677. border-radius: 20rpx;
  678. padding: 40rpx;
  679. display: flex;
  680. // align-items: center;
  681. justify-content: space-between;
  682. .name {
  683. font-size: 34rpx;
  684. font-family: Microsoft YaHei;
  685. font-weight: 400;
  686. color: #000000;
  687. line-height: 34rpx;
  688. }
  689. .value {
  690. margin-top: 20rpx;
  691. font-size: 24rpx;
  692. font-family: Microsoft YaHei;
  693. font-weight: 400;
  694. color: #999999;
  695. line-height: 24rpx;
  696. }
  697. .tip {
  698. margin-top: 20rpx;
  699. text-align: center;
  700. width: 110rpx;
  701. height: 40rpx;
  702. background: rgba(33, 190, 177, 0.2);
  703. border-radius: 6rpx;
  704. .tip-value {
  705. font-size: 20rpx;
  706. font-family: Microsoft YaHei;
  707. font-weight: 400;
  708. color: #0a8f8a;
  709. line-height: 40rpx;
  710. opacity: 1;
  711. }
  712. }
  713. }
  714. .icon {
  715. width: 294rpx;
  716. height: 188rpx;
  717. }
  718. }
  719. .shibie-wrapper {
  720. margin-top: 60rpx;
  721. .title {
  722. font-size: 30rpx;
  723. font-family: Microsoft YaHei;
  724. font-weight: 400;
  725. color: #000000;
  726. line-height: 30rpx;
  727. }
  728. ::v-deep .u-form-item {
  729. border-bottom: 1rpx solid #DCDCDC;
  730. padding: 10rpx 0;
  731. }
  732. }
  733. .buchong-wrapper {
  734. margin-top: 60rpx;
  735. .title {
  736. font-size: 30rpx;
  737. font-family: Microsoft YaHei;
  738. font-weight: 400;
  739. color: #000000;
  740. line-height: 30rpx;
  741. }
  742. }
  743. .green-tip {
  744. margin-top: 50rpx;
  745. font-size: 24rpx;
  746. font-family: Microsoft YaHei;
  747. font-weight: 400;
  748. color: #00b38b;
  749. line-height: 24rpx;
  750. margin-bottom: 60rpx;
  751. }
  752. }
  753. </style>