maintain.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823
  1. <template>
  2. <view>
  3. <view class="top">
  4. <view class="topLeft">
  5. <image :src="maintainCarData.brandLogo" mode="" class="brandLogo"></image>
  6. <view class="carName">{{maintainCarData.brand}}-{{maintainCarData.series}}</view>
  7. <image src="../../static/img/icon_edit.png" mode="" class="topEdit" @click="carEdit"></image>
  8. </view>
  9. <view class="topRight">
  10. <input type="text" v-model="maintainCarData.milage" @confirm="milageEditconfirm" value="" placeholder="请输入当前里程" class="topInput" placeholder-style="color:#ffffff;"/>
  11. <image src="../../static/img/icon_edit.png" mode="" class="topEdit" @click="milageEdit"></image>
  12. </view>
  13. </view>
  14. <!-- 保养推荐 -->
  15. <view class="maintainrecommend">
  16. <view class="recommendTxt">保养推荐</view>
  17. <view class="manual" @click="handbook">保养手册</view>
  18. </view>
  19. <!--主体 -->
  20. <view class="main">
  21. <view class="mainLeft">
  22. <scroll-view scroll-y="true" class="mainscrollView">
  23. <view class="mainLeftLine" v-for="(item,index) in mealData" :class="{lineLeftActive:leftIndex==index}"
  24. @click="leftClick(item,index)">
  25. <span>{{item.name}}</span>
  26. <view class="lineNum" v-show="item.num!=0">{{item.num}}</view>
  27. </view>
  28. </scroll-view>
  29. </view>
  30. <view class="mainRight">
  31. <scroll-view scroll-y="true" class="mainscrollView">
  32. <view v-show="mealData[leftIndex].listPackage.length==0">
  33. <view class="nodataBox">
  34. <image src="../../static/img/nodata.png" mode="widthFix" class="nodataImg"></image>
  35. <view class="noTxt">暂无数据</view>
  36. </view>
  37. </view>
  38. <view class="mainRightLine" v-for="(item,index) in mealData[leftIndex].listPackage">
  39. <view class="contTop">
  40. <view class="contTopLeft">
  41. <view class="listPackgeName"> {{item.name}} </view>
  42. <view class="listPackgeMs">10000公里(或6个月)/次 | 机油参考用量4L</view>
  43. </view>
  44. <view class="contTopRight" @click="listcheck(item)">
  45. <image src="../../static/img/login_icon_checked.png" mode="" class="imgPrivacy" v-show="item.planItem"></image>
  46. <image src="../../static/img/login_icon_uncheck.png" mode="" class="imgPrivacy" v-show="!item.planItem"></image>
  47. <!-- <view class="nock" v-show="!item.check"></view> -->
  48. </view>
  49. </view>
  50. <view class="contZk">
  51. <view class="contZkMain" v-show="item.planItem">
  52. <view v-for="(vf,findex) in item.listGoodsAll">
  53. <view class="goodsItemLIne" v-for="(v,i) in vf" v-if="i==0" @click="goGoods(v)">
  54. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  55. <image src="../../static/img/noimg.png" mode="" class="goodsImg sm" v-else></image>
  56. <view class="goodsCont">
  57. <view class="goodsContTop">
  58. <view class="goodsItemName">{{v.goodsName}}</view>
  59. <view class="replace" @click.stop="replace(vf,index,findex,i)" v-if="vf.length>1">更换</view>
  60. </view>
  61. <view class="goodsCOntBOttom">
  62. <view class="salePrice">¥{{v.salePrice}}</view>
  63. <view class="as">
  64. <view class="asa" @click.stop="reduce(v)">-</view>
  65. <view class="asNum">{{v.qty}}</view>
  66. <view class="asa" @click.stop="plus(v)">+</view>
  67. </view>
  68. </view>
  69. </view>
  70. </view>
  71. </view>
  72. <view class="goodsItemLIne" v-for="(v,i) in item.listItem">
  73. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  74. <image src="../../static/img/noimg.png" mode="" class="goodsImg sm" v-else></image>
  75. <view class="goodsCont">
  76. <view class="goodsContTop">
  77. <view class="goodsItemName">{{v.itemName}}</view>
  78. </view>
  79. <view class="goodsCOntBOttom">
  80. <view class="salePrice">¥{{v.salePrice}}</view>
  81. <view class="itemNum">x1</view>
  82. </view>
  83. </view>
  84. </view>
  85. </view>
  86. </view>
  87. </view>
  88. </scroll-view>
  89. </view>
  90. </view>
  91. <!-- 底部 -->
  92. <view class="bottom">
  93. <view class="bottomLeft">
  94. <view class="caidan" @click="caidanClick">
  95. <image src="../../static/img/caidan.png" mode="" class="caidanImg"></image>
  96. <view class="total" v-show="total>0">{{total}}</view>
  97. </view>
  98. <view>
  99. <view class="heji"> <span class="heji1">合计</span> <span class="hejiNum">¥{{totalhj}}</span> </view>
  100. <view class="hejiMs">商品¥{{goodsTotal}}+工时费¥{{salePriceTotal}}</view>
  101. </view>
  102. </view>
  103. <view class="settlement" @click="settlement">去结算</view>
  104. </view>
  105. <view class="caidanTk" v-show="qingdanShow" @click="qingdanShow=false">
  106. <view class="tkCont">
  107. <view class="caidanTkTop">
  108. <view class="tkTopTitle">清单</view>
  109. <view class="topTopright">
  110. <view class="empty" @click.stop="empty">清空</view>
  111. <view class="close" @click="qingdanShow=false">X</view>
  112. </view>
  113. </view>
  114. <view class="tkMain">
  115. <scroll-view scroll-y="true" class="tkMainSv">
  116. <view class="qingdanLine" v-for="(item,index) in orderData">
  117. <view class="mainTitle">{{item.name}}</view>
  118. <view class="goodsItem" v-for="(v,i) in item.listGoodsAll">
  119. <view>
  120. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  121. <image src="../../static/img/noimg.png" mode="" class="goodsImg " v-else></image>
  122. </view>
  123. <view class="goodsItemRight" >
  124. <view class="goodsItemName">{{v.goodsName}}</view>
  125. <view class="goodsItemBottom">
  126. <view class="goodssalePrice">¥{{v.salePrice}}</view>
  127. <view class="goodsNum">x{{v.qty}}</view>
  128. </view>
  129. </view>
  130. </view>
  131. <view class="goodsItem" v-for="(v,i) in item.listItem">
  132. <view>
  133. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  134. <image src="../../static/img/noimg.png" mode="" class="goodsImg " v-else></image>
  135. </view>
  136. <view class="goodsItemRight" >
  137. <view class="goodsItemName">{{v.itemName}}</view>
  138. <view class="goodsItemBottom">
  139. <view class="goodssalePrice">¥{{v.salePrice}}</view>
  140. <view class="goodsNum">x{{v.qty}}</view>
  141. </view>
  142. </view>
  143. </view>
  144. </view>
  145. </scroll-view>
  146. </view>
  147. </view>
  148. </view>
  149. </view>
  150. </template>
  151. <script>
  152. export default {
  153. data() {
  154. return {
  155. maintainCarData:'',
  156. shopData:'',
  157. mealData:'',
  158. leftIndex:0,
  159. total:0,
  160. qingdanShow:false,
  161. totalhj:0,
  162. goodsTotal:0,
  163. salePriceTotal:0,
  164. orderData:[],
  165. replaceIndex1:'',
  166. replaceIndex2:'',
  167. }
  168. },
  169. onLoad() {
  170. this.$common.isUserId()
  171. this.maintainCarData=uni.getStorageSync("maintainCarData");
  172. //console.log(this.maintainCarData)
  173. this.shopData=uni.getStorageSync("shopData");
  174. if(this.maintainCarData.milage==0){
  175. this.maintainCarData.milage='';
  176. }
  177. this.getData();
  178. },
  179. onShow() {
  180. var maintainCarData2=uni.getStorageSync("maintainCarData");
  181. if(this.maintainCarData.id!=maintainCarData2.id){
  182. this.maintainCarData=maintainCarData2;
  183. if(this.maintainCarData.milage==0){
  184. this.maintainCarData.milage='';
  185. }
  186. this.getData();
  187. }
  188. var replaceData=uni.getStorageSync("replaceData");
  189. if(replaceData){
  190. replaceData.qty=1;
  191. console.log(replaceData)
  192. this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].unshift(replaceData)
  193. console.log(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2])
  194. /* this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].forEach((item,index)=>{
  195. if(item.goodsID==replaceData.goodsID){
  196. this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].splice(index,1)
  197. }
  198. }) */
  199. this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2]=this.unique(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2])
  200. //this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2]=replaceData
  201. //this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].goodsName='666'
  202. //console.log(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2])
  203. this.$forceUpdate()
  204. }
  205. },
  206. methods: {
  207. unique(arr1) {
  208. const res = new Map();
  209. return arr1.filter((a) => !res.has(a.goodsID) && res.set(a.goodsID, 1))
  210. },
  211. milageEditconfirm(){
  212. this.getData();
  213. var that=this;
  214. for(let k in this.maintainCarData){this.maintainCarData[k] = this.maintainCarData[k]==null?'':this.maintainCarData[k]}
  215. this.$http('miniAppMyBMemberCar/updateMemberCar',this.maintainCarData,'POST').then(res => {
  216. uni.hideLoading();
  217. uni.setStorage({
  218. key: 'maintainCarData',
  219. data: that.maintainCarData,
  220. success: function () {
  221. /* uni.navigateBack({
  222. delta:1
  223. }) */
  224. }
  225. });
  226. })
  227. },
  228. leftClick(item,index){
  229. this.leftIndex=index
  230. },
  231. listcheck(item){
  232. item.planItem=!item.planItem;
  233. //var
  234. this.calculation();
  235. if(item.planItem){
  236. /* this.orderData.push(item) */
  237. }
  238. },
  239. goGoods(item){
  240. uni.navigateTo({
  241. url:'../goods/goodsDetail?goodsId='+item.mGoodsID+'&type=1'+'&typeIndex=2&maintain=1'
  242. })
  243. },
  244. empty(){
  245. var that=this;
  246. uni.showModal({
  247. title: '提示',
  248. content: '确定要清空清单吗',
  249. success: function (res) {
  250. if (res.confirm) {
  251. that.orderData=[];
  252. that.mealData.forEach(item=>{
  253. item.num=0;
  254. if(item.listPackage){
  255. item.listPackage.forEach(v=>{
  256. v.planItem=false
  257. })
  258. }
  259. })
  260. console.log(that.mealData)
  261. that.calculation();
  262. that.qingdanShow=false;
  263. }
  264. }
  265. });
  266. },
  267. calculation(){
  268. this.total=0;
  269. this.totalhj=0;
  270. this.goodsTotal=0;
  271. this.salePriceTotal=0;
  272. this.orderData=[]
  273. this.mealData.forEach(v=>{
  274. v.num=0;
  275. if(v.listPackage){
  276. v.listPackage.forEach(i=>{
  277. if(i.planItem){
  278. var obj={
  279. listGoodsAll:[],
  280. listItem:'',
  281. }
  282. if(i.listGoodsAll.length>0){
  283. i.listGoodsAll.forEach((goods,goodsIndex)=>{
  284. /* goods.forEach(sp=>{
  285. this.goodsTotal=Number(this.goodsTotal)
  286. this.goodsTotal+=sp.salePrice*sp.qty
  287. this.goodsTotal=this.goodsTotal.toFixed(2)
  288. }) */
  289. this.goodsTotal=Number(this.goodsTotal)
  290. this.goodsTotal+=goods[0].salePrice*goods[0].qty
  291. this.goodsTotal=this.goodsTotal.toFixed(2)
  292. obj.listGoodsAll.push(goods[0])
  293. })
  294. }
  295. if(i.listItem.length>0){
  296. obj.listItem=i.listItem
  297. }
  298. this.orderData.push(obj)
  299. v.num++;
  300. this.total++;
  301. i.listItem.forEach(xm=>{
  302. xm.qty=1;
  303. this.salePriceTotal=Number(this.salePriceTotal)
  304. this.salePriceTotal+=xm.salePrice
  305. this.salePriceTotal=this.salePriceTotal.toFixed(2)
  306. })
  307. //this.totalhj
  308. }
  309. })
  310. }
  311. //if(v.listPackage)
  312. })
  313. this.totalhj=Number(this.goodsTotal)+Number(this.salePriceTotal)
  314. this.totalhj=this.totalhj.toFixed(2)
  315. console.log(this.orderData)
  316. },
  317. reduce(v){
  318. if(v.qty>1){
  319. v.qty--;
  320. this.calculation()
  321. }
  322. },
  323. plus(v){
  324. v.qty++;
  325. this.calculation()
  326. },
  327. getData(){
  328. uni.showLoading({ });
  329. this.$http('miniApp/tPackageMiniAppController/queryPackageList', {
  330. mileage:'22',//this.maintainCarData.milage,
  331. liyangId:'CFA0318M0024',//this.maintainCarData.nLevelID,
  332. },'GET').then(res => {
  333. uni.hideLoading();
  334. this.mealData=res.data;
  335. this.calculation();
  336. })
  337. },
  338. handbook(){
  339. uni.navigateTo({
  340. url:'../car/handbook?mileage'+this.maintainCarData.milage+'&liyangId='+this.maintainCarData.nLevelID
  341. })
  342. },
  343. settlement(){
  344. console.log(this.orderData)
  345. uni.removeStorageSync('couponData');
  346. if(this.orderData.length>0){
  347. uni.navigateTo({
  348. url:'confirmOrder?orderData='+JSON.stringify(this.orderData)+'&currentMileage='+this.maintainCarData.milage
  349. })
  350. }
  351. },
  352. replace(v,index,i,replaceIndex){
  353. //v.splice(replaceIndex, 1)
  354. console.log(v)
  355. console.log(replaceIndex)
  356. v.forEach((item,vindex)=>{
  357. if(replaceIndex==vindex){
  358. item.showr=false
  359. }else{
  360. item.showr=true
  361. }
  362. })
  363. uni.removeStorageSync('replaceData');
  364. this.replaceIndex1=index;
  365. this.replaceIndex2=i;
  366. uni.setStorage({
  367. key: 'replaceDataList',
  368. data: v,
  369. success: function () {
  370. uni.navigateTo({
  371. url:'replaceGoods'
  372. })
  373. }
  374. });
  375. },
  376. caidanClick(){
  377. this.qingdanShow=!this.qingdanShow
  378. },
  379. milageEdit(){
  380. this.maintainCarData.milage=''
  381. },
  382. carEdit(){
  383. uni.navigateTo({
  384. url:'../car/cailist?type=2'
  385. })
  386. }
  387. }
  388. }
  389. </script>
  390. <style scoped>
  391. .caidanTk{
  392. height: calc(100vh - 120rpx);
  393. width: 100vw;
  394. background: rgba(0,0,0,0.6);
  395. position:fixed;
  396. left: 0;
  397. top: 0;
  398. }
  399. .tkCont{
  400. height: 60vh;
  401. margin-top: calc(40vh - 120rpx);
  402. }
  403. .caidanTkTop{
  404. width: 750rpx;
  405. height: 90rpx;
  406. background: #FFFFFF;
  407. border-radius: 24rpx 24rpx 0px 0px;
  408. }
  409. .caidanTkTop{
  410. display: flex;justify-content: space-between;
  411. }
  412. .topTopright{
  413. display: flex;
  414. padding-top: 29rpx;
  415. }
  416. .tkTopTitle{
  417. line-height: 90rpx;
  418. font-size: 30rpx;
  419. font-weight: 600;
  420. color: #3C3C3C;
  421. padding-left: 24rpx;
  422. }
  423. .empty{
  424. width: 86rpx;
  425. height: 42rpx;
  426. background: #EEEEEE;
  427. border-radius: 21rpx;
  428. text-align: center;
  429. color: #666666;
  430. font-size: 24rpx;
  431. line-height: 42rpx;
  432. }
  433. .close{
  434. color: #999999;
  435. font-size: 30rpx;
  436. padding-right: 30rpx;
  437. padding-left: 24rpx;
  438. }
  439. .tkMain{
  440. background: #F0F0F0;
  441. height: calc(60vh - 90rpx);
  442. }
  443. .tkMainSv{
  444. padding: 0 24rpx;
  445. width: 702rpx;
  446. height: calc(60vh - 90rpx);
  447. }
  448. .goodsItemRight{
  449. width: 520rpx;
  450. padding-left: 20rpx;
  451. display: flex;
  452. flex-direction:column;
  453. justify-content: space-between;
  454. }
  455. .goodsItemBottom{
  456. display: flex;
  457. justify-content: space-between;
  458. }
  459. .goodssalePrice{
  460. font-size: 32rpx;font-weight: 500;color: #FF4F00;
  461. }
  462. .goodsNum{
  463. font-size: 24rpx;font-weight: 400;color: #999999;
  464. }
  465. .top{
  466. background: #FF4F00;
  467. display: flex;
  468. justify-content: space-between;
  469. padding: 30rpx 25rpx;
  470. font-size: 28rpx;
  471. color: #FFFFFF;
  472. }
  473. .goodsItem{
  474. display: flex;
  475. padding: 15rpx 0;
  476. }
  477. .qingdanLine{
  478. background: #FFFFFF;
  479. margin-top: 20rpx;
  480. padding: 24rpx 20rpx;
  481. border-radius: 10rpx;
  482. }
  483. .brandLogo{
  484. width: 42rpx;
  485. height: 42rpx;
  486. }
  487. .topLeft{
  488. display: flex;
  489. }
  490. .carName{
  491. padding-left: 10rpx;
  492. }
  493. .topEdit{
  494. width: 30rpx;
  495. height: 30rpx;
  496. padding-top: 3px;
  497. padding-left: 12rpx;
  498. padding-right: 5px;
  499. padding-bottom: 5px;
  500. }
  501. .topRight{
  502. display: flex;
  503. }
  504. .topInput{
  505. font-size: 28rpx;
  506. color: #FFFFFF;
  507. text-align: right;
  508. padding-top: 3rpx;
  509. }
  510. .maintainrecommend{
  511. padding: 30rpx 24rpx;
  512. display: flex;
  513. justify-content: space-between;
  514. border-bottom: 2rpx solid #EEEEEE;
  515. }
  516. .recommendTxt{
  517. color: #3C3C3C;
  518. font-size: 30rpx;
  519. font-weight: 600;
  520. }
  521. .manual{
  522. width: 119rpx;
  523. height: 40rpx;
  524. border-radius: 20rpx;
  525. border: 2rpx solid #F19D01;
  526. text-align: center;
  527. line-height: 40rpx;
  528. font-size: 22rpx;
  529. color: #F19D01;
  530. }
  531. .bottom{
  532. position: fixed;
  533. left: 0;
  534. bottom: 0;
  535. width: 100vw;
  536. height: 120rpx;
  537. background: #FFFFFF;
  538. box-shadow: 0px -2px 20px 0px rgba(153, 153, 153, 0.2);
  539. }
  540. .main{
  541. display: flex;
  542. height: calc(100vh - 410rpx);
  543. }
  544. .mainscrollView{
  545. height: calc(100vh - 410rpx);
  546. }
  547. /* #ifdef MP-WEIXIN */
  548. .main{
  549. display: flex;
  550. height: calc(100vh - 310rpx);
  551. }
  552. .mainscrollView{
  553. height: calc(100vh - 310rpx);
  554. }
  555. /* #endif */
  556. .mainLeft{
  557. width: 146rpx;
  558. background: #F5F5F5;
  559. }
  560. .mainRight{
  561. width: 604rpx;
  562. }
  563. .mainLeftLine{
  564. color: #3C3C3C;
  565. padding: 30rpx 20rpx;
  566. font-size: 24rpx;
  567. text-align: center;
  568. position: relative;
  569. }
  570. .lineNum{
  571. position: absolute;
  572. background: #FF270A;
  573. width: 40rpx;
  574. height: 26rpx;
  575. text-align: center;
  576. line-height: 26rpx;
  577. font-size: 20rpx;
  578. color: #FFFFFF;
  579. border-radius: 13rpx;
  580. top: 10rpx;
  581. right: 10rpx;
  582. }
  583. .lineLeftActive{
  584. background: #FFFFFF;
  585. }
  586. .nock{
  587. width: 22rpx;
  588. height: 22rpx;
  589. border-radius: 50%;
  590. border:2px solid #AEAEAE;
  591. margin-top: 2rpx;
  592. margin-right: 10rpx;
  593. }
  594. .imgPrivacy{
  595. width: 36rpx;
  596. height: 36rpx;
  597. /* margin-top: 2rpx; */
  598. margin-right: 10rpx;
  599. }
  600. .contTopRight{
  601. display: flex;
  602. align-items: center;
  603. }
  604. .mainRightLine{
  605. padding: 20rpx 20rpx 0 20rpx;
  606. }
  607. .contTop{
  608. display: flex;
  609. justify-content: space-between;
  610. }
  611. .listPackgeName{
  612. font-size: 26rpx;
  613. font-family: PingFangSC-Regular, PingFang SC;
  614. font-weight: 600;
  615. color: #3C3C3C;
  616. }
  617. .listPackgeMs{
  618. font-size: 22rpx;
  619. font-family: PingFangSC-Regular, PingFang SC;
  620. font-weight: 400;
  621. color: #999999;
  622. padding-top: 5rpx;
  623. }
  624. .contZk{
  625. border-bottom: 1px solid #EEEEEE;
  626. padding-bottom: 20rpx;
  627. }
  628. .goodsImg{
  629. width: 120rpx;
  630. height: 120rpx;
  631. border-radius: 11rpx;
  632. }
  633. .goodsItemLIne{
  634. display: flex;
  635. padding-top: 20rpx;
  636. padding-bottom: 20rpx;
  637. }
  638. .goodsCont{
  639. display: flex;
  640. flex-direction:column;
  641. justify-content: space-between;
  642. padding-left: 20rpx;
  643. }
  644. .goodsContTop{
  645. display: flex;
  646. justify-content: space-between;
  647. width: 400rpx;
  648. }
  649. .goodsItemName{
  650. font-size: 26rpx;
  651. font-weight: 400;
  652. color: #3C3C3C;
  653. width: 300rpx;
  654. }
  655. .salePrice{
  656. font-size: 32rpx;
  657. font-weight: 500;
  658. color: #FF4F00;
  659. }
  660. .replace{
  661. width: 75rpx;
  662. height: 37rpx;
  663. border-radius: 19rpx;
  664. border: 2rpx solid #B9B9B9;
  665. text-align: center;
  666. line-height: 35rpx;
  667. color: #707070;
  668. font-size: 22rpx;
  669. }
  670. .contZkMain{
  671. padding-top: 20rpx;
  672. }
  673. .asa{
  674. width: 44rpx;
  675. height: 44rpx;
  676. line-height: 44rpx;
  677. text-align: center;
  678. background: #F4F5F7;
  679. font-size: 30rpx;
  680. }
  681. .goodsCOntBOttom{
  682. display: flex;
  683. justify-content: space-between;
  684. }
  685. .as{
  686. display: flex;
  687. }
  688. .goodsPrice{
  689. display: flex;justify-content: space-between;
  690. padding-top: 10rpx;
  691. }
  692. .goodsPriceNum{
  693. color: #F8F8F8;
  694. font-size: 28rpx;
  695. }
  696. .asNum{
  697. font-size: 24rpx;color: #333333;
  698. padding: 0 18rpx;
  699. height: 44rpx;
  700. line-height: 44rpx;
  701. background: #F4F5F7;
  702. margin-left: 1px;
  703. margin-right: 1px;
  704. }
  705. .itemNum{
  706. font-size: 24rpx;
  707. font-weight: 400;
  708. color: #999999;
  709. }
  710. .bottom{
  711. display: flex;
  712. justify-content: space-between;
  713. }
  714. .caidanImg{
  715. width: 50rpx;
  716. height: 50rpx;
  717. }
  718. .bottomLeft{
  719. display: flex;
  720. }
  721. .caidan{
  722. padding-left: 33rpx;
  723. padding-top: 35rpx;
  724. padding-right: 33rpx;
  725. position: relative;
  726. }
  727. .total{
  728. position: absolute;
  729. width: 40rpx;
  730. height: 26rpx;
  731. background: #FF270A;
  732. line-height: 26rpx;
  733. text-align: center;
  734. color: #FFFFFF;
  735. font-size: 20rpx;
  736. top: 25rpx;
  737. right: 15rpx;
  738. border-radius: 13rpx;
  739. }
  740. .heji1{
  741. font-size: 24rpx;
  742. font-weight: 500;
  743. color: #666666;
  744. }
  745. .hejiNum{
  746. font-size: 32rpx;
  747. font-family: PingFangSC-Medium, PingFang SC;
  748. font-weight: 500;
  749. color: #FF4F00;
  750. }
  751. .hejiMs{
  752. font-size: 24rpx;
  753. padding-top: 5rpx;
  754. color: #999999;
  755. }
  756. .heji{
  757. padding-top: 23rpx;
  758. }
  759. .settlement{
  760. width: 203rpx;
  761. height: 74rpx;
  762. background: #FF4F00;
  763. border-radius: 37rpx;
  764. text-align: center;
  765. line-height: 74rpx;
  766. font-size: 30rpx;
  767. font-family: PingFangSC-Medium, PingFang SC;
  768. font-weight: 500;
  769. color: #FEFFFE;
  770. margin-top: 23rpx;
  771. margin-right: 32rpx;
  772. }
  773. .nodataImg{
  774. width: 400rpx;
  775. padding-top: 100rpx;
  776. }
  777. .noTxt{
  778. font-size: 36rpx;
  779. color: #999999;
  780. padding-top: 50rpx;
  781. }
  782. .nodataBox{
  783. text-align: center;
  784. }
  785. </style>