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.

car-release.vue 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819
  1. <template>
  2. <navBar title="行驶证信息上传" :scrollTop="scrollTop"></navBar>
  3. <navBgCar></navBgCar>
  4. <view class="content">
  5. <view class="item-tips">
  6. <view class="title"> 上传后请核对识别信息 </view>
  7. <view class="tip"> 如有错误请及时手动修改 </view>
  8. </view>
  9. <view class="picture-wrapper" @click="cardImageOcr('1')">
  10. <view class="bg">
  11. <view class="">
  12. <view class="name"> 行驶证主页 </view>
  13. <view class="value"> 上传行驶证的主页 </view>
  14. <view class="tip">
  15. <view class="tip-value"> 拍摄规范 </view>
  16. </view>
  17. </view>
  18. <image
  19. v-if="!state.form.vehPosImgUrl"
  20. class="icon"
  21. :src="`${$imgUrl}applyCard/car-zhu.png`"
  22. >
  23. </image>
  24. <image
  25. v-else
  26. class="icon"
  27. :src="strReplace(state.form.vehPosImgUrl)"
  28. ></image>
  29. </view>
  30. </view>
  31. <view class="picture-wrapper" @click="cardImageOcr('2')">
  32. <view class="bg">
  33. <view class="">
  34. <view class="name"> 行驶证副页 </view>
  35. <view class="value"> 上传行驶证的副页 </view>
  36. <view class="tip">
  37. <view class="tip-value"> 拍摄规范 </view>
  38. </view>
  39. </view>
  40. <image
  41. v-if="!state.form.vehNegImgUrl"
  42. class="icon"
  43. :src="`${$imgUrl}applyCard/car-fu.png`"
  44. >
  45. </image>
  46. <image
  47. v-else
  48. class="icon"
  49. :src="strReplace(state.form.vehNegImgUrl)"
  50. ></image>
  51. </view>
  52. </view>
  53. <view class="picture-wrapper" @click="cardFileImageUpdate()">
  54. <view class="bg">
  55. <view class="">
  56. <view class="name"> 车头照 </view>
  57. <view class="value"> 上传汽车的车头照片 </view>
  58. <view class="tip">
  59. <view class="tip-value"> 拍摄规范 </view>
  60. </view>
  61. </view>
  62. <image
  63. v-if="!state.form.vehBodyUrl"
  64. class="icon"
  65. :src="`${$imgUrl}applyCard/chetou.png`"
  66. >
  67. </image>
  68. <image
  69. v-else
  70. class="icon"
  71. :src="strReplace(state.form.vehBodyUrl)"
  72. ></image>
  73. </view>
  74. </view>
  75. <view class="shibie-wrapper">
  76. <view class="title"> 识别内容如下 </view>
  77. <view class="">
  78. <u-form label-width="200" :model="state.form" ref="uForm">
  79. <u-form-item label="车牌号">
  80. <!-- <u-input inputAlign="right" placeholder='请输入车牌号' v-model="state.form.vehicleIdNum" /> -->
  81. <car-number-input
  82. @numberInputResult="carNumber"
  83. :defaultStr="state.form.vehicleIdNum"
  84. ></car-number-input>
  85. </u-form-item>
  86. <u-form-item label="所有人">
  87. <u-input
  88. inputAlign="right"
  89. placeholder="请输入所有人"
  90. v-model="state.form.man"
  91. />
  92. </u-form-item>
  93. <u-form-item label="车辆类型">
  94. <u-input
  95. inputAlign="right"
  96. placeholder="请输入车辆类型"
  97. v-model="state.form.vehicleType"
  98. />
  99. </u-form-item>
  100. <u-form-item label="使用性质">
  101. <u-input
  102. inputAlign="right"
  103. placeholder="请输入使用性质"
  104. v-model="state.form.character"
  105. />
  106. </u-form-item>
  107. <u-form-item label="车辆识别代号">
  108. <u-input
  109. inputAlign="right"
  110. placeholder="请输入车辆识别代号"
  111. v-model="state.form.vin"
  112. />
  113. </u-form-item>
  114. <u-form-item label="发动机号码">
  115. <u-input
  116. inputAlign="right"
  117. placeholder="请输入发动机号码"
  118. v-model="state.form.engineNum"
  119. />
  120. </u-form-item>
  121. <u-form-item label="注册日期">
  122. <u-input
  123. inputAlign="right"
  124. placeholder="请输入注册日期"
  125. v-model="state.form.register"
  126. />
  127. </u-form-item>
  128. <u-form-item label="发证日期">
  129. <u-input
  130. inputAlign="right"
  131. placeholder="请输入发证日期"
  132. v-model="state.form.issueDate"
  133. />
  134. </u-form-item>
  135. <u-form-item label="核定载人数">
  136. <u-input
  137. inputAlign="right"
  138. placeholder="请输入核定载人数"
  139. v-model="state.form.approvedCount"
  140. />
  141. </u-form-item>
  142. <u-form-item label="整备质量">
  143. <u-input
  144. inputAlign="right"
  145. placeholder="请输入整备质量"
  146. v-model="state.form.maintenaceMass"
  147. />
  148. </u-form-item>
  149. <!-- <u-form-item label="外廊尺寸">
  150. <u-input inputAlign="right" placeholder='请输入外廊尺寸' v-model="state.form.vehicleDimensions" />
  151. </u-form-item> -->
  152. <veiw class="form-item">
  153. <label>外廊尺寸</label>
  154. <view class="input-box">
  155. <text class="sub-label">长</text>
  156. <input v-model="state.outlineL" @input="outlineInput" />
  157. <text class="sub-text">X</text>
  158. <text class="sub-label">宽</text>
  159. <input v-model="state.outlineW" @input="outlineInput" />
  160. <text class="sub-text">X</text>
  161. <text class="sub-label">长</text>
  162. <input v-model="state.outlineH" @input="outlineInput" />
  163. <text class="sub-text">mm</text>
  164. </view>
  165. </veiw>
  166. <u-form-item label="总质量">
  167. <u-input
  168. inputAlign="right"
  169. placeholder="请输入总质量"
  170. v-model="state.form.totalMass"
  171. />
  172. </u-form-item>
  173. <u-form-item label="车辆用户类型">
  174. <u-input
  175. @click="state.actionSheetShow = true"
  176. placeholder="请输入车辆用户类型"
  177. inputAlign="right"
  178. v-model="state.form.useUserTypeName"
  179. height="38"
  180. type="textarea"
  181. :autoHeight="true"
  182. />
  183. </u-form-item>
  184. </u-form>
  185. </view>
  186. </view>
  187. <view class="green-tip">
  188. 如识别信息有误,请手动修改,确认无误后,点击下一步!
  189. </view>
  190. <view class="action">
  191. <button type="default" class="button" @click="savaHandle()">
  192. 下一步
  193. </button>
  194. </view>
  195. <!-- <u-select v-model="state.actionSheetShow" :list="state.actionSheetList" @confirm="selectConfirm"></u-select> -->
  196. <u-action-sheet
  197. @click="selectConfirm"
  198. :list="state.actionSheetList"
  199. v-model="state.actionSheetShow"
  200. >
  201. </u-action-sheet>
  202. <u-popup mode="bottom" v-model="state.show">
  203. <view
  204. v-if="state.data.transferLogs && state.data.transferLogs.length"
  205. class=""
  206. >
  207. <view class="bettwen-center">
  208. <view style="padding: 20rpx" class="title"> 选择卡签 </view>
  209. <view class="goto"> 直接跳过,不使用此套卡签 </view>
  210. </view>
  211. <view
  212. @click="guohuAction(item)"
  213. class="card"
  214. v-for="(item, index) in state.data.transferLogs"
  215. :key="index"
  216. style="margin-top: 30rpx; margin-bottom: 30rpx"
  217. >
  218. <view v-if="item.status === 'WAITING'" class="card-left">
  219. <image :src="`${$imgUrl}card2.png`" mode=""></image>
  220. <view class="card-center">
  221. <view class="flex">
  222. <view class=""> 卡号: </view>
  223. <view class="card-center-head">
  224. {{ item.cardId }}
  225. </view>
  226. </view>
  227. <view style="margin-top: 10rpx" class="flex">
  228. <view class=""> OBU编号: </view>
  229. <view class="card-center-head">
  230. {{ item.obuId }}
  231. </view>
  232. </view>
  233. </view>
  234. </view>
  235. </view>
  236. </view>
  237. </u-popup>
  238. </view>
  239. </template>
  240. <script setup lang="ts">
  241. import { reactive, ref } from "vue";
  242. import navBgCar from "./components/nav-bg-car4";
  243. import navBar from "@/components/nav-bar/nav-bar2.vue";
  244. import carNumberInput from "@/components/car-number-input/car-number-input.vue";
  245. import { pathToBase64 } from "@/utils/util/imageTool.js";
  246. import {
  247. etcCarCardInfoSubmit,
  248. etcCarOcrCard,
  249. fileUpload,
  250. queryGuoHuJianCe,
  251. queryGuoHuCaoZuo,
  252. } from "@/utils/network/api.js";
  253. import { request } from "@/utils/network/request.js";
  254. import { stringToJson } from "@/utils/network/encryption";
  255. import { onLoad, onPageScroll } from "@dcloudio/uni-app";
  256. import { getObuStatus } from "@/datas/obuStatus.js";
  257. import { getEtcCardStatus } from "@/datas/etcCardStatus.js";
  258. import { getItem } from "@/utils/storage";
  259. const scrollTop = ref(0);
  260. //监听页面滚动
  261. onPageScroll((e) => {
  262. scrollTop.value = e.scrollTop;
  263. });
  264. //车牌号输入
  265. const carNumber = (val: any) => {
  266. state.form.vehicleIdNum = val.trim();
  267. };
  268. //提交车辆信息
  269. const savaHandle = () => {
  270. state.form.vehicleId =
  271. state.form.vehicleIdNum + "_" + state.vehiclePlateColor;
  272. const options = {
  273. type: 2,
  274. data: state.form,
  275. method: "POST",
  276. showLoading: true,
  277. };
  278. request(etcCarCardInfoSubmit, options)
  279. .then((res) => {
  280. const data = stringToJson(res.bizContent);
  281. queryGuoHuJianCeAction().then((value) => {
  282. if (value.transferLogs && value.transferLogs.length > 0) {
  283. state.data.transferLogs = value.transferLogs;
  284. state.show = true;
  285. } else {
  286. if (state.type == 1 || state.type == "1") {
  287. uni.redirectTo({
  288. url: `/subpackage/applyCard/addAddress?orderId=${
  289. state.form.orderId
  290. }&clientFee=${getItem("clientFee")}&&id=${getItem("productId")}`,
  291. });
  292. } else {
  293. uni.redirectTo({
  294. // url: `/subpackage/applyCard/choice-product?orderId=${state.form.orderId}`,
  295. url: `/subpackage/applyCard/release-products?orderId=${
  296. state.form.orderId
  297. }&clientFee=${getItem("clientFee")}&&id=${getItem("productId")}`,
  298. });
  299. }
  300. }
  301. });
  302. })
  303. .catch((res) => {
  304. console.log(res);
  305. });
  306. };
  307. const selectConfirm = (index: any) => {
  308. console.log(index);
  309. state.form.useUserType = state.actionSheetList[index].value;
  310. state.form.useUserTypeName = state.actionSheetList[index].text;
  311. };
  312. //车头照图片上传
  313. const cardFileImageUpdate = () => {
  314. uni.chooseImage({
  315. count: 1, //只能选取一张照片
  316. sizeType: ["original", "compressed"], //可以指定是原图还是压缩图,默认二者都有
  317. sourceType: ["camera", "album"], //从相册选择
  318. success: function (res) {
  319. pathToBase64(res.tempFilePaths[0])
  320. .then((path) => {
  321. var data = {
  322. fileBase64: path,
  323. };
  324. const options = {
  325. type: 2,
  326. data: data,
  327. method: "POST",
  328. showLoading: true,
  329. };
  330. request(fileUpload, options).then((res) => {
  331. const data = stringToJson(res.bizContent);
  332. console.log(data);
  333. state.form.vehBodyUrl = data.data.url;
  334. });
  335. })
  336. .catch((error) => {});
  337. },
  338. });
  339. };
  340. const state = reactive({
  341. data: {
  342. transferLogs: [],
  343. },
  344. actionSheetShow: false,
  345. actionSheetList: [
  346. {
  347. text: "普通车",
  348. value: 0,
  349. },
  350. {
  351. text: "道路运输证经营范围仅有“货物专用运输(集装箱) ”的牵引车办理J类型集装箱",
  352. value: 24,
  353. },
  354. {
  355. text: "道路运输证经营范围不含“货物专用运输(集装箱)”的牵引车",
  356. value: 27,
  357. },
  358. {
  359. text: '道路运输证经营范围除“货物专用运输 (集装 箱)"外,还有“普通货运”等其他项目的牵引车办理J2类型集装箱',
  360. value: 28,
  361. },
  362. ],
  363. form: {
  364. orderId: "", //订单ID
  365. man: "", //所有人
  366. character: "", //使用性质
  367. register: "", //注册日期
  368. customerId: "", //用户编号
  369. vehicleId: "",
  370. vehicleIdNum: "", //车牌编号
  371. issueDate: "", //发证日期
  372. vehPosImgUrl: "", //行驶证正面
  373. vehNegImgUrl: "", //行驶证证反面
  374. type: "0", //0,客车 1.货车
  375. useUserType: 0, //车辆用户类型
  376. useUserTypeName: "普通车",
  377. vehicleSign: 2, //前/后装标识
  378. vin: "", //车辆识别代号
  379. engineNum: "", //发动机号码
  380. vehicleType: "", //车辆类型
  381. vehicleModel: "", //行驶证品牌型号
  382. approvedCount: undefined, //核定人数
  383. totalMass: undefined, //总质量
  384. maintenaceMass: undefined, //整备质量
  385. permittedWeight: "", //核定载质量
  386. vehicleDimensions: "", //车辆尺寸
  387. permittedTowWeight: "", //准牵引总质量
  388. axleCount: "", //车轴数
  389. ownerName: "", //车主姓名
  390. ownerIdType: "", //车主证件类型
  391. ownerIdNum: "", //车主证件号码
  392. ownPosImgUrl: "", //车主证件正面图片
  393. ownNegImgUrl: "", //车主证件反面图片
  394. agreementId: "", //签约编号
  395. channelId: "5201018892300000001", //编号渠道
  396. scenePayType: "", //
  397. transportIdNum: "", //道路运输证编号
  398. licenseIdNum: "", //经营许可证编号
  399. vehBodyUrl: "", //车身照片
  400. proxyUrl: "", //委托书地址
  401. },
  402. vehiclePlateColor: undefined,
  403. orderId: "",
  404. type: undefined, //标记来源是否登录 1为未登录数据 - 需要新增地址
  405. show: false,
  406. isMyPeopple: true,
  407. outlineL: "",
  408. outlineW: "",
  409. outlineH: "",
  410. });
  411. onLoad((option: any) => {
  412. state.form.orderId = option.orderId;
  413. state.type = option.type;
  414. state.vehiclePlateColor = option.vehiclePlateColor;
  415. });
  416. //外廓尺寸输入框
  417. const outlineInput = (e) => {
  418. state.form.vehicleDimensions =
  419. state.outlineL + "X" + state.outlineW + "X" + state.outlineH + "mm";
  420. };
  421. //orc接口调用
  422. const cardImageOcr = (val: any) => {
  423. var imageType = val;
  424. uni.chooseImage({
  425. count: 1, //只能选取一张照片
  426. sizeType: ["original", "compressed"], //可以指定是原图还是压缩图,默认二者都有
  427. sourceType: ["camera", "album"], //从相册选择
  428. success: function (res) {
  429. pathToBase64(res.tempFilePaths[0])
  430. .then((path) => {
  431. var data = {
  432. source: "1",
  433. agencyId: "52010106004",
  434. imageType: imageType,
  435. fileName: res.tempFilePaths[0],
  436. imageBase64: path,
  437. };
  438. const options = {
  439. type: 2,
  440. data: data,
  441. method: "POST",
  442. showLoading: true,
  443. };
  444. request(etcCarOcrCard, options).then((res) => {
  445. const data = stringToJson(res.bizContent);
  446. console.log(data);
  447. if (val === "1") {
  448. state.form.vehicleIdNum = data.plate_a;
  449. state.form.man = data.man;
  450. state.form.vehicleType = data.vehicle;
  451. state.form.character = data.character;
  452. state.form.vin = data.vin;
  453. state.form.engineNum = data.engine;
  454. state.form.register = data.register;
  455. state.form.issueDate = data.issue;
  456. state.form.vehPosImgUrl = data.imageUrl;
  457. state.form.vehicleModel = data.model;
  458. } else {
  459. state.form.approvedCount = parseFloat(data.apc);
  460. state.form.maintenaceMass = parseFloat(data.unladen);
  461. state.form.vehicleDimensions = data.overall.replaceAll("x", "X");
  462. let arr = data.overall.split("x");
  463. state.outlineL = arr[0]; //外廓 长
  464. state.outlineW = arr[1]; //外廓 宽
  465. state.outlineH = arr[2].substring(0, arr[2].length - 2); //外廓 高
  466. state.form.totalMass = parseFloat(data.gross);
  467. state.form.vehNegImgUrl = data.imageUrl;
  468. }
  469. });
  470. })
  471. .catch((error) => {});
  472. },
  473. });
  474. };
  475. //过户检测
  476. const queryGuoHuJianCeAction = () => {
  477. var data = {
  478. orderId: state.form.orderId,
  479. };
  480. const options = {
  481. type: 2,
  482. data: data,
  483. method: "POST",
  484. showLoading: true,
  485. };
  486. return new Promise(async (resolve, reject) => {
  487. const res = await request(queryGuoHuJianCe, options);
  488. const data = stringToJson(res.bizContent);
  489. resolve(data);
  490. }).catch((error) => {
  491. reject(error);
  492. });
  493. };
  494. //过户操作
  495. const guohuAction = (val) => {
  496. var data = {
  497. orderId: state.form.orderId,
  498. serviceType: "USE",
  499. obuId: val.obuId,
  500. cardId: val.cardId,
  501. };
  502. const options = {
  503. type: 2,
  504. data: data,
  505. method: "POST",
  506. showLoading: true,
  507. };
  508. return new Promise(async (resolve, reject) => {
  509. const res = await request(queryGuoHuCaoZuo, options);
  510. const data = stringToJson(res.bizContent);
  511. state.show = false;
  512. uni.navigateTo({
  513. url: `/subpackage/applyCard/choice-product?orderId=${state.form.orderId}`,
  514. });
  515. }).catch((error) => {
  516. reject(error);
  517. });
  518. };
  519. //替换图片地址
  520. const strReplace = (str: string) => {
  521. return str.replace("192.168.101.145:9000", "222.85.144.89:19002");
  522. };
  523. </script>
  524. <style lang="scss" scoped>
  525. .goto {
  526. margin-right: 20rpx;
  527. padding: 10rpx;
  528. color: #00b38b;
  529. border: 1rpx solid #00b38b;
  530. border-radius: 20rpx;
  531. }
  532. .flex {
  533. display: flex;
  534. align-items: center;
  535. }
  536. .bettwen-center {
  537. display: flex;
  538. align-items: center;
  539. justify-content: space-between;
  540. }
  541. .card {
  542. margin: 20rpx;
  543. height: 150rpx;
  544. background: #ffffff;
  545. box-shadow: 0rpx 4rpx 13rpx 3rpx rgba(223, 223, 223, 0.8);
  546. border-radius: 20rpx;
  547. padding: 20rpx;
  548. display: flex;
  549. justify-content: space-between;
  550. align-items: center;
  551. margin-bottom: 30rpx;
  552. .card-left {
  553. display: flex;
  554. align-items: center;
  555. image {
  556. width: 100rpx;
  557. height: 90rpx;
  558. }
  559. .card-center {
  560. margin-left: 30rpx;
  561. .card-center-head {
  562. font-size: 32rpx;
  563. font-family: Noto Sans S Chinese;
  564. font-weight: 400;
  565. color: #333333;
  566. }
  567. .tips {
  568. font-size: 26rpx;
  569. font-family: Noto Sans S Chinese;
  570. font-weight: 400;
  571. color: #666666;
  572. .tips-card {
  573. width: 70rpx;
  574. height: 40rpx;
  575. background: #d3f2ef;
  576. border-radius: 6rpx;
  577. font-size: 20rpx;
  578. font-family: Noto Sans S Chinese;
  579. font-weight: 400;
  580. color: #0a8f8a;
  581. padding: 5rpx 10rpx;
  582. margin-left: 20rpx;
  583. }
  584. }
  585. }
  586. }
  587. .choose-item {
  588. margin-right: 20rpx;
  589. width: 50rpx;
  590. height: 50rpx;
  591. border: 1rpx solid #00b38b;
  592. border-radius: 50%;
  593. display: flex;
  594. justify-content: center;
  595. align-items: center;
  596. .active {
  597. width: 38rpx;
  598. height: 38rpx;
  599. background: #00b38b;
  600. border-radius: 50%;
  601. }
  602. }
  603. }
  604. .content {
  605. position: relative;
  606. margin-top: -50rpx;
  607. padding: 0rpx 30rpx;
  608. position: relative;
  609. .img-pos {
  610. position: absolute;
  611. left: 270rpx;
  612. top: -38rpx;
  613. right: 50rpx;
  614. .img-flex {
  615. display: flex;
  616. justify-content: space-between;
  617. align-items: center;
  618. .car-img {
  619. width: 86rpx;
  620. height: 42rpx;
  621. }
  622. .flag-img {
  623. width: 30rpx;
  624. height: 35rpx;
  625. }
  626. }
  627. }
  628. .action {
  629. padding-left: 20rpx;
  630. padding-right: 20rpx;
  631. padding-bottom: 30rpx;
  632. .button {
  633. height: 80rpx;
  634. background: linear-gradient(-90deg, #43a1e0 0%, #13e7c1 100%);
  635. border-radius: 40rpx;
  636. font-size: 32rpx;
  637. font-weight: 400;
  638. color: #ffffff;
  639. line-height: 80rpx;
  640. }
  641. }
  642. .item-tips {
  643. .title {
  644. font-size: 30rpx;
  645. font-family: Microsoft YaHei;
  646. font-weight: 400;
  647. color: #000000;
  648. line-height: 24rpx;
  649. }
  650. .tip {
  651. margin-top: 16rpx;
  652. font-size: 24rpx;
  653. font-family: Microsoft YaHei;
  654. font-weight: 400;
  655. color: #999999;
  656. line-height: 24rpx;
  657. }
  658. }
  659. .picture-wrapper {
  660. margin-top: 40rpx;
  661. .bg {
  662. background: #ffffff;
  663. box-shadow: 0rpx 4rpx 13rpx 3rpx rgba(223, 223, 223, 0.8);
  664. border-radius: 20rpx;
  665. padding: 40rpx;
  666. display: flex;
  667. // align-items: center;
  668. justify-content: space-between;
  669. .name {
  670. font-size: 34rpx;
  671. font-family: Microsoft YaHei;
  672. font-weight: 400;
  673. color: #000000;
  674. line-height: 34rpx;
  675. }
  676. .value {
  677. margin-top: 20rpx;
  678. font-size: 24rpx;
  679. font-family: Microsoft YaHei;
  680. font-weight: 400;
  681. color: #999999;
  682. line-height: 24rpx;
  683. }
  684. .tip {
  685. margin-top: 20rpx;
  686. text-align: center;
  687. width: 110rpx;
  688. height: 40rpx;
  689. background: rgba(33, 190, 177, 0.2);
  690. border-radius: 6rpx;
  691. .tip-value {
  692. font-size: 20rpx;
  693. font-family: Microsoft YaHei;
  694. font-weight: 400;
  695. color: #0a8f8a;
  696. line-height: 40rpx;
  697. opacity: 1;
  698. }
  699. }
  700. }
  701. .icon {
  702. width: 294rpx;
  703. height: 188rpx;
  704. }
  705. }
  706. .shibie-wrapper {
  707. margin-top: 60rpx;
  708. .title {
  709. font-size: 30rpx;
  710. font-family: Microsoft YaHei;
  711. font-weight: 400;
  712. color: #000000;
  713. line-height: 30rpx;
  714. }
  715. }
  716. .buchong-wrapper {
  717. margin-top: 60rpx;
  718. .title {
  719. font-size: 30rpx;
  720. font-family: Microsoft YaHei;
  721. font-weight: 400;
  722. color: #000000;
  723. line-height: 30rpx;
  724. }
  725. }
  726. .green-tip {
  727. margin-top: 50rpx;
  728. font-size: 24rpx;
  729. font-family: Microsoft YaHei;
  730. font-weight: 400;
  731. color: #00b38b;
  732. line-height: 24rpx;
  733. margin-bottom: 60rpx;
  734. }
  735. }
  736. .form-item {
  737. display: flex;
  738. font-size: 28rpx;
  739. justify-content: space-between;
  740. align-items: center;
  741. }
  742. .form-item label {
  743. }
  744. .form-item .input-box {
  745. display: flex;
  746. align-items: center;
  747. }
  748. .form-item .input-box input {
  749. width: 90rpx;
  750. background: #f1f1f1;
  751. border-radius: 8rpx;
  752. padding: 0 5rpx;
  753. }
  754. .form-item .sub-text {
  755. color: #808080;
  756. padding-left: 10rpx;
  757. }
  758. .form-item .sub-label {
  759. padding: 0 10rpx;
  760. }
  761. </style>