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 21KB

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