Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

rescind-carId-select.vue 21KB

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