paint.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911
  1. <template>
  2. <view class="box">
  3. <view class="top" @click="goCarlist">
  4. <view class="left">
  5. <image :src="carInfo.brandLogo" mode="widthFix" class="brandLogo" v-if="carInfo.brandLogo">
  6. <img src="../../static/timg/nocar.png" alt="" class="brandLogo" v-else>
  7. <view>
  8. <view class="plateNumber">{{carInfo.plateNumber}}</view>
  9. <view class="car" v-if="carInfo.carModel">{{carInfo.carModel}}</view>
  10. <view class="car" v-else>暂无车型信息</view>
  11. </view>
  12. </image>
  13. </view>
  14. <image src="../../static/img/big_rightArrow.png" mode=""
  15. style="width: 30rpx;height: 30rpx;"></image>
  16. </view>
  17. <view class="main" v-if="itemList">
  18. <view class="mainLeft">
  19. <view class="mainLeftLine" v-for="(item,index) in itemList" :class="{lineLeftActive:leftIndex==index}"
  20. @click="leftClick(item,index)">
  21. <span class="leftTitle">{{item.name}}</span>
  22. <view class="lineNum" v-show="item.num!=0">{{item.num}}</view>
  23. </view>
  24. </view>
  25. <view class="mainRight">
  26. <view class="rightTop">{{itemList[leftIndex].name}}</view>
  27. <view class="mainRightLine" v-for="(item2,index) in itemList[leftIndex].list" :key="index">
  28. <view class="itemTop" @click="changeState(item2)">
  29. <view class="itemName">{{item2.ItemName}}</view>
  30. <span class="rightState" v-if="item2.open==false">展开<image
  31. src="../../static/img/icon_arrow_down.png" mode=""
  32. style="width: 20rpx;height: 11rpx; padding: 5rpx 8rpx;"></image>
  33. </span>
  34. <span class="rightState" v-else>收起<image
  35. src="../../static/img/icon_arrow_up.png" mode=""
  36. style="width: 20rpx;height: 11rpx; padding: 5rpx 8rpx;"></image>
  37. </span>
  38. </view>
  39. <!-- -->
  40. <view class="itemBox" v-if="item2.open==true">
  41. <view class="type" :class="{orangeLine:item2.type==1}" @click="select(item2)">
  42. <view class="typeName" :class="{orangeColor:item2.type==1}">喷漆</view>
  43. <view class="priceBox">
  44. <view class="money"><span class="renminbi">¥</span>{{item2.PSalePrice?item2.PSalePrice:'0'}}
  45. </view>
  46. <view class="old" v-if="item2.PShowScribingType==1"><span>¥</span>{{item2.PScribingPrice?item2.PScribingPrice:'0'}}</view>
  47. </view>
  48. </view>
  49. <view class="type marginLeft" :class="{orangeLine:item2.type==2}" @click="select2(item2)">
  50. <view class="typeName" :class="{orangeColor:item2.type==2}">钣金喷漆</view>
  51. <view class="priceBox">
  52. <view class="money"><span
  53. class="renminbi">¥</span>{{item2.BPSalePrice?item2.BPSalePrice:'0'}}</view>
  54. <view class="old" v-if="item2.BPShowScribingType==1"><span>¥</span>{{item2.BPScribingPrice?item2.BPScribingPrice:'0'}}</view>
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. <!-- 底部 -->
  62. <view class="bottom">
  63. <view class="bottomLeft">
  64. <view class="caidan" @click="caidanClick">
  65. <image src="../../static/timg/icon_qingdan@2x.png" mode="" class="caidanImg"></image>
  66. <view class="total" v-if="selectItemList.length>0">{{selectItemList.length}}</view>
  67. </view>
  68. <view>
  69. <view class="heji"> <span class="heji1">合计</span> <span class="hejiNum">¥{{sumMoney}}</span> </view>
  70. <view class="hejiMs">合计数量:{{selectItemList.length}}</view>
  71. </view>
  72. </view>
  73. <view class="settlement commonBtn" @click="sure">确定</view>
  74. </view>
  75. <view class="caidanTk" v-show="qingdanShow" @click="qingdanShow=false">
  76. <view class="tkCont">
  77. <view class="caidanTkTop">
  78. <view class="tkTopTitle">已选项目</view>
  79. <view class="topTopright">
  80. <view class="empty" @click.stop="empty">清空</view>
  81. </view>
  82. </view>
  83. <view class="tkMain" @click.stop>
  84. <view class="selectItem" v-for="(item,index) in selectItemList" :key="index">
  85. <view class="name">{{item.name}}</view>
  86. <view class="priceRight">
  87. <view class="price">¥ {{item.money?item.money:0}}</view>
  88. <image @click="deleteItem(item,index)" src="../../static/img/icon_delete.png" mode=""
  89. style="width: 26rpx;height: 26rpx;margin-left: 10rpx;"></image>
  90. </view>
  91. </view>
  92. </view>
  93. </view>
  94. </view>
  95. </view>
  96. </template>
  97. <script>
  98. export default {
  99. data() {
  100. return {
  101. carInfo: '',
  102. itemList: [],
  103. leftIndex: 0,
  104. selectItemList: [],
  105. sumMoney: 0,
  106. qingdanShow: false,
  107. themeColor:'',
  108. }
  109. },
  110. onShow() {
  111. this.carInfo = this.$store.state.carInfo
  112. if(!this.carInfo){
  113. uni.showModal({
  114. title: '提示',
  115. content: '请先选择车辆',
  116. showCancel:false,
  117. success: function (res) {
  118. if (res.confirm) {
  119. uni.navigateTo({
  120. url: '../user/addCar/cailist'
  121. })
  122. }
  123. }
  124. });
  125. }
  126. console.log("车=", this.carInfo);
  127. },
  128. onLoad() {
  129. this.themeColor = uni.getStorageSync("themeColor");
  130. this.getData();
  131. },
  132. methods: {
  133. sure(){
  134. if(!this.carInfo){
  135. uni.showToast({
  136. title: '请选择车辆',
  137. icon: 'none',
  138. duration: 3000
  139. });
  140. return false;
  141. }
  142. if(!this.carInfo.carModel){
  143. uni.showToast({
  144. title: '请添加车辆',
  145. icon: 'none',
  146. duration: 3000
  147. });
  148. return false;
  149. }
  150. if (this.selectItemList.length == 0) {
  151. uni.showToast({
  152. title: '请选择项目',
  153. icon: 'none',
  154. duration: 3000
  155. });
  156. return false;
  157. }
  158. uni.navigateTo({
  159. url:'paintSure?itemList='+JSON.stringify(this.selectItemList)
  160. })
  161. this.$store.commit('mutationsckshopInfo', "")
  162. },
  163. goCarlist() {
  164. uni.navigateTo({
  165. url: '../user/addCar/cailist'
  166. })
  167. },
  168. empty() {
  169. var that = this;
  170. uni.showModal({
  171. title: '提示',
  172. content: '确定要清空已选项目吗',
  173. success: function(res) {
  174. if (res.confirm) {
  175. that.selectItemList = [];
  176. that.sumMoney = 0;
  177. that.qingdanShow = false;
  178. that.getData();
  179. }
  180. }
  181. });
  182. },
  183. deleteItem(item, index) {
  184. // 更新数据
  185. for (var i = 0; i < this.itemList.length; i++) {
  186. let dic = this.itemList[i];
  187. dic.list.forEach((item2, index) => {
  188. if (item.id == item2.ID) {
  189. item2.type = 0;
  190. dic.num -= 1;
  191. }
  192. })
  193. }
  194. this.sumMoney=this.sumMoney-item.money
  195. this.selectItemList.splice(index, 1);
  196. },
  197. caidanClick() {
  198. this.qingdanShow = !this.qingdanShow
  199. },
  200. select(item) {
  201. if (item.type != 1) {
  202. item.type = 1;
  203. } else {
  204. item.type = 0;
  205. }
  206. console.log('type==', item.type);
  207. this.sumNum();
  208. },
  209. select2(item) {
  210. if (item.type != 2) {
  211. item.type = 2;
  212. } else {
  213. item.type = 0;
  214. }
  215. console.log('type2==', item.type);
  216. this.sumNum();
  217. },
  218. sumNum() {
  219. let item = this.itemList[this.leftIndex];
  220. var count = 0;
  221. item.list.forEach((v, index) => {
  222. if (v.type != 0) {
  223. count += 1;
  224. }
  225. })
  226. item.num = count;
  227. //组合选中的
  228. if (this.selectItemList.length) {
  229. this.selectItemList = [];
  230. }
  231. this.sumMoney = 0;
  232. for (var i = 0; i < this.itemList.length; i++) {
  233. this.itemList[i].list.forEach((item, index) => {
  234. if (item.type == 1) {
  235. let dic = {
  236. "id": item.ID,
  237. "name": item.ItemName + "(喷漆)",
  238. "money": item.PSalePrice
  239. }
  240. this.selectItemList.push(dic);
  241. this.sumMoney += item.PSalePrice;
  242. } else if (item.type == 2) {
  243. let dic = {
  244. "id": item.ID,
  245. "name": item.ItemName + "(钣金喷漆)",
  246. "money": item.BPSalePrice
  247. }
  248. this.selectItemList.push(dic);
  249. this.sumMoney += item.BPSalePrice;
  250. }
  251. })
  252. }
  253. this.sumMoney = this.sumMoney.toFixed(2);
  254. // console.log('selectItemList==', this.selectItemList);
  255. },
  256. changeState(item) {
  257. item.open = !item.open
  258. },
  259. leftClick(item, index) {
  260. this.leftIndex = index
  261. },
  262. getData() {
  263. uni.showLoading({
  264. title: '加载中'
  265. });
  266. this.$http('openSheetMetalSprayPaint/queryPackageList', {
  267. // id: this.id,
  268. }, 'GET').then(res => {
  269. uni.hideLoading();
  270. let List = res.data;
  271. List.forEach((item, index) => {
  272. for (const key in item) {
  273. item['num'] = 0
  274. }
  275. })
  276. for (var i = 0; i < List.length; i++) {
  277. List[i].list.forEach((item, index) => {
  278. for (const key in item) {
  279. item['open'] = false
  280. }
  281. })
  282. }
  283. this.itemList = List;
  284. // console.log('列表=', this.itemList);
  285. })
  286. },
  287. }
  288. }
  289. </script>
  290. <style>
  291. .box {
  292. min-height: 100vh;
  293. background-color: #f4f5f7;
  294. }
  295. .top {
  296. background-color: #FFFFFF;
  297. padding: 30rpx 20rpx;
  298. display: flex;
  299. justify-content: space-between;
  300. align-items: center;
  301. border-bottom: 1rpx solid #EEEEEE;
  302. }
  303. .left {
  304. display: flex;
  305. align-items: center;
  306. }
  307. .car {
  308. font-size: 28rpx;
  309. width: 600rpx;
  310. color: #333333;
  311. line-height: 40rpx;
  312. margin-left: 10rpx;
  313. /* 隐藏文字显示 ...不换行 */
  314. overflow: hidden;
  315. text-overflow: ellipsis;
  316. white-space: nowrap;
  317. }
  318. .brandLogo {
  319. width: 42rpx;
  320. height: 42rpx;
  321. }
  322. .main {
  323. display: flex;
  324. height: calc(100vh - 310rpx);
  325. }
  326. .mainLeft {
  327. width: 154rpx;
  328. background: #F4F5F7;
  329. }
  330. .leftTitle {
  331. color: #333333;
  332. font-size: 26rpx;
  333. }
  334. .lineNum {
  335. position: absolute;
  336. background: #FF270A;
  337. width: 40rpx;
  338. height: 26rpx;
  339. text-align: center;
  340. line-height: 26rpx;
  341. font-size: 20rpx;
  342. color: #FFFFFF;
  343. border-radius: 13rpx;
  344. top: 10rpx;
  345. right: 10rpx;
  346. }
  347. .lineLeftActive {
  348. background: #FFFFFF;
  349. font-weight: bold;
  350. }
  351. .mainRight {
  352. width: 596rpx;
  353. overflow-y: scroll;
  354. background-color: #FFFFFF;
  355. }
  356. .rightTop {
  357. padding: 13rpx 24rpx;
  358. background-color: #F9F9F9;
  359. font-size: 26rpx;
  360. color: #959595;
  361. line-height: 37rpx;
  362. }
  363. .mainRightLine {
  364. padding: 30rpx 0;
  365. margin: 0 24rpx;
  366. background-color: #FFFFFF;
  367. border-bottom: 1rpx solid #EEEEEE;
  368. }
  369. .itemTop {
  370. display: flex;
  371. justify-content: space-between;
  372. align-items: center;
  373. }
  374. .itemName {
  375. font-size: 28rpx;
  376. color: #333333;
  377. }
  378. .rightState {
  379. font-size: 24rpx;
  380. color: #666666;
  381. }
  382. .itemBox {
  383. display: flex;
  384. justify-content: space-around;
  385. /* border-bottom: 1rpx solid #EEEEEE; */
  386. padding-top: 30rpx;
  387. }
  388. .type {
  389. border-radius: 10rpx;
  390. border: 2rpx solid #CCCCCC;
  391. width: 50%;
  392. text-align: center;
  393. }
  394. .marginLeft {
  395. margin-left: 20rpx;
  396. }
  397. .typeName {
  398. height: 57rpx;
  399. color: #666666;
  400. font-size: 26rpx;
  401. line-height: 57rpx;
  402. border-bottom: 2rpx solid #EEEEEE;
  403. }
  404. .orangeLine {
  405. border: 2rpx solid #EC0F0A;
  406. }
  407. .orangeColor {
  408. color: #EC0F0A;
  409. }
  410. .renminbi {
  411. font-size: 22rpx;
  412. height: 76rpx;
  413. line-height: 76rpx;
  414. }
  415. .priceBox{
  416. display: flex;
  417. justify-content: center;
  418. }
  419. .money {
  420. height: 76rpx;
  421. line-height: 76rpx;
  422. font-size: 32rpx;
  423. color: #EC0F0A;
  424. }
  425. .old {
  426. color: #999999;
  427. font-size: 24rpx;
  428. height: 33rpx;
  429. line-height: 33rpx;
  430. text-decoration: line-through;
  431. padding-top: 24rpx;
  432. }
  433. .main {
  434. display: flex;
  435. height: calc(100vh - 410rpx);
  436. }
  437. .mainscrollView {
  438. height: calc(100vh - 410rpx);
  439. padding-bottom: constant(safe-area-inset-bottom);
  440. padding-bottom: env(safe-area-inset-bottom);
  441. box-sizing: content-box;
  442. margin-bottom: 120rpx;
  443. }
  444. /* #ifdef MP-WEIXIN */
  445. .main {
  446. display: flex;
  447. height: calc(100vh - 310rpx);
  448. }
  449. .mainscrollView {
  450. height: calc(100vh - 310rpx);
  451. }
  452. /* #endif */
  453. .mainLeft {
  454. width: 146rpx;
  455. background: #F5F5F5;
  456. }
  457. .mainRight {
  458. width: 604rpx;
  459. }
  460. .mainLeftLine {
  461. color: #3C3C3C;
  462. padding: 30rpx 20rpx;
  463. font-size: 26rpx;
  464. text-align: left;
  465. position: relative;
  466. }
  467. .lineNum {
  468. position: absolute;
  469. background: #FF270A;
  470. width: 40rpx;
  471. height: 26rpx;
  472. text-align: center;
  473. line-height: 26rpx;
  474. font-size: 20rpx;
  475. color: #FFFFFF;
  476. border-radius: 13rpx;
  477. top: 10rpx;
  478. right: 10rpx;
  479. }
  480. .lineLeftActive {
  481. background: #FFFFFF;
  482. }
  483. .nock {
  484. width: 22rpx;
  485. height: 22rpx;
  486. border-radius: 50%;
  487. border: 2px solid #AEAEAE;
  488. margin-top: 2rpx;
  489. margin-right: 10rpx;
  490. }
  491. .imgPrivacy {
  492. width: 36rpx;
  493. height: 36rpx;
  494. /* margin-top: 2rpx; */
  495. /* margin-right: 10rpx; */
  496. }
  497. .contTopRight {
  498. display: flex;
  499. align-items: center;
  500. width: 38rpx;
  501. height: 36rpx;
  502. margin-right: 10rpx;
  503. }
  504. .contTop {
  505. display: flex;
  506. justify-content: space-between;
  507. }
  508. .listPackgeName {
  509. font-size: 26rpx;
  510. font-family: PingFangSC-Regular, PingFang SC;
  511. font-weight: 600;
  512. color: #3C3C3C;
  513. }
  514. .listPackgeMs {
  515. font-size: 22rpx;
  516. font-family: PingFangSC-Regular, PingFang SC;
  517. font-weight: 400;
  518. color: #999999;
  519. padding-top: 5rpx;
  520. line-height: 30rpx;
  521. }
  522. .contZk {
  523. border-bottom: 1px solid #EEEEEE;
  524. padding-bottom: 20rpx;
  525. }
  526. .goodsImg {
  527. width: 120rpx;
  528. height: 120rpx;
  529. border-radius: 11rpx;
  530. }
  531. .goodsItemLIne {
  532. display: flex;
  533. padding-top: 20rpx;
  534. padding-bottom: 20rpx;
  535. }
  536. .goodsCont {
  537. display: flex;
  538. flex-direction: column;
  539. justify-content: space-between;
  540. padding-left: 20rpx;
  541. }
  542. .goodsContTop {
  543. display: flex;
  544. justify-content: space-between;
  545. width: 400rpx;
  546. }
  547. .goodsItemName {
  548. font-size: 26rpx;
  549. font-weight: 400;
  550. color: #3C3C3C;
  551. width: 78%;
  552. }
  553. .salePrice {
  554. font-size: 32rpx;
  555. font-weight: 500;
  556. color: #FF4F00;
  557. }
  558. .replaceBox {
  559. width: 100rpx;
  560. }
  561. .replace {
  562. width: 75rpx;
  563. height: 37rpx;
  564. border-radius: 19rpx;
  565. border: 2rpx solid #B9B9B9;
  566. text-align: center;
  567. line-height: 35rpx;
  568. color: #707070;
  569. font-size: 22rpx;
  570. margin-left: 25rpx;
  571. }
  572. .contZkMain {
  573. padding-top: 20rpx;
  574. }
  575. .asa {
  576. width: 44rpx;
  577. height: 44rpx;
  578. line-height: 44rpx;
  579. text-align: center;
  580. background: #F4F5F7;
  581. font-size: 30rpx;
  582. }
  583. .goodsCOntBOttom {
  584. display: flex;
  585. justify-content: space-between;
  586. }
  587. .as {
  588. display: flex;
  589. }
  590. .goodsPrice {
  591. display: flex;
  592. justify-content: space-between;
  593. padding-top: 10rpx;
  594. }
  595. .goodsPriceNum {
  596. color: #F8F8F8;
  597. font-size: 28rpx;
  598. }
  599. .asNum {
  600. font-size: 24rpx;
  601. color: #333333;
  602. padding: 0 18rpx;
  603. height: 44rpx;
  604. line-height: 44rpx;
  605. background: #F4F5F7;
  606. margin-left: 1px;
  607. margin-right: 1px;
  608. }
  609. .itemNum {
  610. font-size: 24rpx;
  611. font-weight: 400;
  612. color: #999999;
  613. }
  614. .bottom {
  615. position: fixed;
  616. left: 0;
  617. bottom: 0;
  618. width: 100vw;
  619. height: 120rpx;
  620. background: #FFFFFF;
  621. box-shadow: 0px -2px 20px 0px rgba(153, 153, 153, 0.2);
  622. padding-bottom: constant(safe-area-inset-bottom);
  623. padding-bottom: env(safe-area-inset-bottom);
  624. box-sizing: content-box;
  625. z-index: 11;
  626. display: flex;
  627. justify-content: space-between;
  628. }
  629. .caidanImg {
  630. width: 50rpx;
  631. height: 50rpx;
  632. }
  633. .bottomLeft {
  634. display: flex;
  635. }
  636. .caidan {
  637. padding-left: 33rpx;
  638. padding-top: 35rpx;
  639. padding-right: 33rpx;
  640. position: relative;
  641. }
  642. .total {
  643. position: absolute;
  644. width: 40rpx;
  645. height: 26rpx;
  646. background: #FF270A;
  647. line-height: 26rpx;
  648. text-align: center;
  649. color: #FFFFFF;
  650. font-size: 20rpx;
  651. top: 25rpx;
  652. right: 15rpx;
  653. border-radius: 13rpx;
  654. }
  655. .heji1 {
  656. font-size: 24rpx;
  657. font-weight: 500;
  658. color: #666666;
  659. }
  660. .hejiNum {
  661. font-size: 32rpx;
  662. font-family: PingFangSC-Medium, PingFang SC;
  663. font-weight: 500;
  664. color: #FF4F00;
  665. }
  666. .hejiMs {
  667. font-size: 24rpx;
  668. padding-top: 5rpx;
  669. color: #999999;
  670. }
  671. .heji {
  672. padding-top: 23rpx;
  673. }
  674. .settlement {
  675. width: 203rpx;
  676. height: 74rpx;
  677. background: #EC0F0A;
  678. border-radius: 37rpx;
  679. text-align: center;
  680. line-height: 74rpx;
  681. font-size: 30rpx;
  682. font-family: PingFangSC-Medium, PingFang SC;
  683. font-weight: 500;
  684. color: #FEFFFE;
  685. margin-top: 23rpx;
  686. margin-right: 32rpx;
  687. }
  688. .caidanTk {
  689. height: calc(100vh);
  690. width: 100vw;
  691. background: rgba(0, 0, 0, 0.6);
  692. position: fixed;
  693. left: 0;
  694. top: 0;
  695. }
  696. .tkCont {
  697. height: 70vh;
  698. /* margin-top: calc(40vh ); */
  699. position: absolute;
  700. left: 0;
  701. bottom: 0;
  702. }
  703. .caidanTkTop {
  704. width: 750rpx;
  705. height: 90rpx;
  706. background: #FFFFFF;
  707. border-radius: 24rpx 24rpx 0px 0px;
  708. display: flex;
  709. justify-content: space-between;
  710. }
  711. .topTopright {
  712. /* display: flex; */
  713. padding-top: 29rpx;
  714. margin-right: 24rpx;
  715. }
  716. .tkTopTitle {
  717. line-height: 90rpx;
  718. font-size: 30rpx;
  719. font-weight: 600;
  720. color: #3C3C3C;
  721. padding-left: 24rpx;
  722. }
  723. .empty {
  724. width: 86rpx;
  725. height: 42rpx;
  726. background: #EEEEEE;
  727. border-radius: 21rpx;
  728. text-align: center;
  729. color: #666666;
  730. font-size: 24rpx;
  731. line-height: 42rpx;
  732. }
  733. .tkMain {
  734. background: #FFFFFF;
  735. height: calc(70vh - 90rpx);
  736. }
  737. .selectItem {
  738. background-color: #FFFFFFF;
  739. padding: 30rpx 24rpx 0;
  740. display: flex;
  741. justify-content: space-between;
  742. color: #333333;
  743. font-size: 26rpx;
  744. align-items: center;
  745. }
  746. .priceRight {
  747. display: flex;
  748. align-items: center;
  749. }
  750. .plateNumber{
  751. line-height: 40rpx;
  752. margin-left: 10rpx;
  753. font-size: 28rpx;
  754. }
  755. </style>