maintain.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878
  1. <template>
  2. <view>
  3. <view class="top">
  4. <view class="topLeft">
  5. <image :src="maintainCarData.brandLogo" mode="aspectFit" 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="number" v-model="maintainCarData.milage" @confirm="upMileage" 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">{{item.referenceDosage}}</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?v.salePrice:'0.00'}}</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. brand:'',
  168. }
  169. },
  170. onLoad(opt) {
  171. this.$common.isUserId()
  172. this.maintainCarData=uni.getStorageSync("maintainCarData");
  173. //console.log(this.maintainCarData)
  174. this.shopData=uni.getStorageSync("shopData");
  175. if(this.maintainCarData.milage==0){
  176. this.maintainCarData.milage='';
  177. }
  178. if (opt.brand) {
  179. this.brand = opt.brand
  180. }
  181. this.getData();
  182. },
  183. onShow() {
  184. var maintainCarData2=uni.getStorageSync("maintainCarData");
  185. if(this.maintainCarData.id!=maintainCarData2.id){
  186. this.maintainCarData=maintainCarData2;
  187. if(this.maintainCarData.milage==0){
  188. this.maintainCarData.milage='';
  189. }
  190. this.getData();
  191. }
  192. var replaceData=uni.getStorageSync("replaceData");
  193. if(replaceData){
  194. replaceData.qty=1;
  195. console.log(replaceData)
  196. this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].unshift(replaceData)
  197. console.log(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2])
  198. this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2]=this.unique(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2])
  199. //this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2]=replaceData
  200. //this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].goodsName='666'
  201. //console.log(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2])
  202. this.$forceUpdate()
  203. }
  204. },
  205. methods: {
  206. unique(arr1) {
  207. const res = new Map();
  208. return arr1.filter((a) => !res.has(a.goodsID) && res.set(a.goodsID, 1))
  209. },
  210. upMileage(){
  211. this.getData();
  212. this.$http('worldKeepCar/worldHome/updateTMemberCarByHome', {
  213. id: this.maintainCarData.id,
  214. milage: this.maintainCarData.milage?this.maintainCarData.milage:0,
  215. }, 'POST').then(res => {
  216. uni.hideLoading();
  217. console.log(res);
  218. if (res.code == 0) {
  219. var cardata = uni.getStorageSync("maintainCarData")
  220. if (cardata) {
  221. cardata.milage = this.maintainCarData.milage
  222. uni.setStorage({
  223. key: 'maintainCarData',
  224. data: cardata,
  225. success: function () {
  226. }
  227. });
  228. }
  229. }
  230. })
  231. },
  232. // milageEditconfirm(){
  233. // this.getData();
  234. // var that=this;
  235. // for(let k in this.maintainCarData){this.maintainCarData[k] = this.maintainCarData[k]==null?'':this.maintainCarData[k]}
  236. // this.$http('miniAppMyBMemberCar/updateMemberCar',this.maintainCarData,'POST').then(res => {
  237. // uni.hideLoading();
  238. // uni.setStorage({
  239. // key: 'maintainCarData',
  240. // data: that.maintainCarData,
  241. // success: function () {
  242. // /* uni.navigateBack({
  243. // delta:1
  244. // }) */
  245. // }
  246. // });
  247. // })
  248. // },
  249. leftClick(item,index){
  250. this.leftIndex=index
  251. },
  252. listcheck(item){
  253. item.planItem=!item.planItem;
  254. //var
  255. if(this.mealData[this.leftIndex].name=='小保养'){
  256. this.calculation('大保养');
  257. }else if(this.mealData[this.leftIndex].name=='大保养'){
  258. this.calculation('小保养');
  259. }else{
  260. this.calculation();
  261. }
  262. if(item.planItem){
  263. /* this.orderData.push(item) */
  264. }
  265. },
  266. goGoods(item){
  267. uni.navigateTo({
  268. url:'../module/goodsDetail?goodsId='+item.goodsID+'&type=1'+'&typeIndex=2&maintain=1'
  269. })
  270. },
  271. empty(){
  272. var that=this;
  273. uni.showModal({
  274. title: '提示',
  275. content: '确定要清空清单吗',
  276. success: function (res) {
  277. if (res.confirm) {
  278. that.orderData=[];
  279. that.mealData.forEach(item=>{
  280. item.num=0;
  281. if(item.listPackage){
  282. item.listPackage.forEach(v=>{
  283. v.planItem=false
  284. })
  285. }
  286. })
  287. console.log(that.mealData)
  288. that.calculation();
  289. that.qingdanShow=false;
  290. }
  291. }
  292. });
  293. },
  294. calculation(txt){
  295. this.total=0;
  296. this.totalhj=0;
  297. this.goodsTotal=0;
  298. this.salePriceTotal=0;
  299. this.orderData=[]
  300. this.mealData.forEach(v=>{
  301. v.num=0;
  302. if(txt == v.name){
  303. console.log(v.name)
  304. if(v.listPackage){
  305. v.listPackage.forEach(i=>{
  306. i.planItem=false
  307. })
  308. }
  309. }else{
  310. if(v.listPackage){
  311. v.listPackage.forEach(i=>{
  312. if(i.planItem){
  313. var obj={
  314. listGoodsAll:[],
  315. listItem:'',
  316. id:i.id,
  317. name:i.name
  318. }
  319. if(i.listGoodsAll.length>0){
  320. i.listGoodsAll.forEach((goods,goodsIndex)=>{
  321. /* goods.forEach(sp=>{
  322. this.goodsTotal=Number(this.goodsTotal)
  323. this.goodsTotal+=sp.salePrice*sp.qty
  324. this.goodsTotal=this.goodsTotal.toFixed(2)
  325. }) */
  326. //goods[0].salePrice=1;
  327. this.goodsTotal=Number(this.goodsTotal)
  328. this.goodsTotal+=goods[0].salePrice*goods[0].qty
  329. this.goodsTotal=this.goodsTotal.toFixed(2)
  330. obj.listGoodsAll.push(goods[0])
  331. })
  332. }
  333. if(i.listItem.length>0){
  334. obj.listItem=i.listItem
  335. }
  336. this.orderData.push(obj)
  337. v.num++;
  338. this.total++;
  339. i.listItem.forEach(xm=>{
  340. xm.qty=1;
  341. //xm.salePrice=1;
  342. this.salePriceTotal=Number(this.salePriceTotal)
  343. this.salePriceTotal+=xm.salePrice
  344. this.salePriceTotal=this.salePriceTotal.toFixed(2)
  345. })
  346. //this.totalhj
  347. }
  348. })
  349. }
  350. }
  351. //if(v.listPackage)
  352. })
  353. this.totalhj=Number(this.goodsTotal)+Number(this.salePriceTotal)
  354. this.totalhj=this.totalhj.toFixed(2)
  355. console.log(this.orderData)
  356. },
  357. reduce(v){
  358. if(v.qty>1){
  359. v.qty--;
  360. this.calculation()
  361. }
  362. },
  363. plus(v){
  364. v.qty++;
  365. this.calculation()
  366. },
  367. getData(){
  368. uni.showLoading({ });
  369. var location = uni.getStorageSync("locationCity");
  370. this.$http('miniApp/tPackageMiniAppController/queryPackageList', {
  371. mileage:this.maintainCarData.milage,
  372. liyangId:this.maintainCarData.nLevelID,
  373. cityCode:location.cityCode,
  374. guidePrice:this.maintainCarData.guidePrice,
  375. },'GET').then(res => {
  376. uni.hideLoading();
  377. this.mealData=res.data;
  378. this.calculation();
  379. })
  380. },
  381. handbook(){
  382. uni.navigateTo({
  383. url:'handbook?mileage'+this.maintainCarData.milage+'&liyangId='+this.maintainCarData.nLevelID
  384. })
  385. },
  386. settlement(){
  387. console.log(this.orderData)
  388. //return false;
  389. uni.removeStorageSync('couponData');
  390. if(this.orderData.length>0){
  391. /* uni.navigateTo({
  392. url:'confirmOrder?orderData='+JSON.stringify(this.orderData)+'&currentMileage='+this.maintainCarData.milage
  393. }) */
  394. uni.navigateTo({
  395. url:'orderShop?orderData='+JSON.stringify(this.orderData)+'&currentMileage='+this.maintainCarData.milage+'&brand='+this.brand
  396. })
  397. }
  398. },
  399. replace(v,index,i,replaceIndex){
  400. //v.splice(replaceIndex, 1)
  401. console.log(v)
  402. console.log(replaceIndex)
  403. v.forEach((item,vindex)=>{
  404. if(replaceIndex==vindex){
  405. item.showr=false
  406. }else{
  407. item.showr=true
  408. }
  409. })
  410. uni.removeStorageSync('replaceData');
  411. this.replaceIndex1=index;
  412. this.replaceIndex2=i;
  413. uni.setStorage({
  414. key: 'replaceDataList',
  415. data: v,
  416. success: function () {
  417. uni.navigateTo({
  418. url:'replaceGoods'
  419. })
  420. }
  421. });
  422. },
  423. caidanClick(){
  424. this.qingdanShow=!this.qingdanShow
  425. },
  426. milageEdit(){
  427. this.maintainCarData.milage=''
  428. },
  429. carEdit(){
  430. uni.navigateTo({
  431. url:'../index/cailist?type=2'
  432. })
  433. }
  434. }
  435. }
  436. </script>
  437. <style scoped>
  438. .caidanTk{
  439. height: calc(100vh - 120rpx);
  440. width: 100vw;
  441. background: rgba(0,0,0,0.6);
  442. position:fixed;
  443. left: 0;
  444. top: 0;
  445. }
  446. .tkCont{
  447. height: 60vh;
  448. margin-top: calc(40vh - 120rpx);
  449. }
  450. .caidanTkTop{
  451. width: 750rpx;
  452. height: 90rpx;
  453. background: #FFFFFF;
  454. border-radius: 24rpx 24rpx 0px 0px;
  455. }
  456. .caidanTkTop{
  457. display: flex;justify-content: space-between;
  458. }
  459. .topTopright{
  460. display: flex;
  461. padding-top: 29rpx;
  462. }
  463. .tkTopTitle{
  464. line-height: 90rpx;
  465. font-size: 30rpx;
  466. font-weight: 600;
  467. color: #3C3C3C;
  468. padding-left: 24rpx;
  469. }
  470. .empty{
  471. width: 86rpx;
  472. height: 42rpx;
  473. background: #EEEEEE;
  474. border-radius: 21rpx;
  475. text-align: center;
  476. color: #666666;
  477. font-size: 24rpx;
  478. line-height: 42rpx;
  479. }
  480. .close{
  481. color: #999999;
  482. font-size: 30rpx;
  483. padding-right: 30rpx;
  484. padding-left: 24rpx;
  485. }
  486. .tkMain{
  487. background: #F0F0F0;
  488. height: calc(60vh - 90rpx);
  489. }
  490. .tkMainSv{
  491. padding: 0 24rpx;
  492. width: 702rpx;
  493. height: calc(60vh - 90rpx);
  494. }
  495. .goodsItemRight{
  496. width: 520rpx;
  497. padding-left: 20rpx;
  498. display: flex;
  499. flex-direction:column;
  500. justify-content: space-between;
  501. }
  502. .goodsItemBottom{
  503. display: flex;
  504. justify-content: space-between;
  505. }
  506. .goodssalePrice{
  507. font-size: 32rpx;font-weight: 500;color: #FF4F00;
  508. }
  509. .goodsNum{
  510. font-size: 24rpx;font-weight: 400;color: #999999;
  511. }
  512. .top{
  513. background: #FF4F00;
  514. display: flex;
  515. justify-content: space-between;
  516. padding: 30rpx 25rpx;
  517. font-size: 28rpx;
  518. color: #FFFFFF;
  519. }
  520. .goodsItem{
  521. display: flex;
  522. padding: 15rpx 0;
  523. }
  524. .qingdanLine{
  525. background: #FFFFFF;
  526. margin-top: 20rpx;
  527. padding: 24rpx 20rpx;
  528. border-radius: 10rpx;
  529. }
  530. .brandLogo{
  531. width: 42rpx;
  532. height: 42rpx;
  533. padding: 0 10rpx;
  534. }
  535. .topLeft{
  536. display: flex;
  537. align-content: center;
  538. }
  539. .carName{
  540. width: 61%;
  541. }
  542. .topEdit{
  543. width: 22rpx;
  544. height: 22rpx;
  545. padding: 10rpx;
  546. }
  547. .topRight{
  548. display: flex;
  549. justify-content: flex-end;
  550. align-items: center;
  551. }
  552. .topInput{
  553. font-size: 28rpx;
  554. color: #FFFFFF;
  555. text-align: right;
  556. padding-top: 3rpx;
  557. width: 70%;
  558. }
  559. .maintainrecommend{
  560. padding: 30rpx 24rpx;
  561. display: flex;
  562. justify-content: space-between;
  563. border-bottom: 2rpx solid #EEEEEE;
  564. }
  565. .recommendTxt{
  566. color: #3C3C3C;
  567. font-size: 30rpx;
  568. font-weight: 600;
  569. }
  570. .manual{
  571. width: 119rpx;
  572. height: 40rpx;
  573. border-radius: 20rpx;
  574. border: 2rpx solid #F19D01;
  575. text-align: center;
  576. line-height: 40rpx;
  577. font-size: 22rpx;
  578. color: #F19D01;
  579. }
  580. .bottom{
  581. position: fixed;
  582. left: 0;
  583. bottom: 0;
  584. width: 100vw;
  585. height: 120rpx;
  586. background: #FFFFFF;
  587. box-shadow: 0px -2px 20px 0px rgba(153, 153, 153, 0.2);
  588. }
  589. .main{
  590. display: flex;
  591. height: calc(100vh - 410rpx);
  592. }
  593. .mainscrollView{
  594. height: calc(100vh - 410rpx);
  595. }
  596. /* #ifdef MP-WEIXIN */
  597. .main{
  598. display: flex;
  599. height: calc(100vh - 310rpx);
  600. }
  601. .mainscrollView{
  602. height: calc(100vh - 310rpx);
  603. }
  604. /* #endif */
  605. .mainLeft{
  606. width: 146rpx;
  607. background: #F5F5F5;
  608. }
  609. .mainRight{
  610. width: 604rpx;
  611. }
  612. .mainLeftLine{
  613. color: #3C3C3C;
  614. padding: 30rpx 20rpx;
  615. font-size: 24rpx;
  616. text-align: center;
  617. position: relative;
  618. }
  619. .lineNum{
  620. position: absolute;
  621. background: #FF270A;
  622. width: 40rpx;
  623. height: 26rpx;
  624. text-align: center;
  625. line-height: 26rpx;
  626. font-size: 20rpx;
  627. color: #FFFFFF;
  628. border-radius: 13rpx;
  629. top: 10rpx;
  630. right: 10rpx;
  631. }
  632. .lineLeftActive{
  633. background: #FFFFFF;
  634. }
  635. .nock{
  636. width: 22rpx;
  637. height: 22rpx;
  638. border-radius: 50%;
  639. border:2px solid #AEAEAE;
  640. margin-top: 2rpx;
  641. margin-right: 10rpx;
  642. }
  643. .imgPrivacy{
  644. width: 36rpx;
  645. height: 36rpx;
  646. /* margin-top: 2rpx; */
  647. margin-right: 10rpx;
  648. }
  649. .contTopRight{
  650. display: flex;
  651. align-items: center;
  652. }
  653. .mainRightLine{
  654. padding: 20rpx 20rpx 0 20rpx;
  655. }
  656. .contTop{
  657. display: flex;
  658. justify-content: space-between;
  659. }
  660. .listPackgeName{
  661. font-size: 26rpx;
  662. font-family: PingFangSC-Regular, PingFang SC;
  663. font-weight: 600;
  664. color: #3C3C3C;
  665. }
  666. .listPackgeMs{
  667. font-size: 22rpx;
  668. font-family: PingFangSC-Regular, PingFang SC;
  669. font-weight: 400;
  670. color: #999999;
  671. padding-top: 5rpx;
  672. }
  673. .contZk{
  674. border-bottom: 1px solid #EEEEEE;
  675. padding-bottom: 20rpx;
  676. }
  677. .goodsImg{
  678. width: 120rpx;
  679. height: 120rpx;
  680. border-radius: 11rpx;
  681. }
  682. .goodsItemLIne{
  683. display: flex;
  684. padding-top: 20rpx;
  685. padding-bottom: 20rpx;
  686. }
  687. .goodsCont{
  688. display: flex;
  689. flex-direction:column;
  690. justify-content: space-between;
  691. padding-left: 20rpx;
  692. }
  693. .goodsContTop{
  694. display: flex;
  695. justify-content: space-between;
  696. width: 400rpx;
  697. }
  698. .goodsItemName{
  699. font-size: 26rpx;
  700. font-weight: 400;
  701. color: #3C3C3C;
  702. width: 300rpx;
  703. }
  704. .salePrice{
  705. font-size: 32rpx;
  706. font-weight: 500;
  707. color: #FF4F00;
  708. }
  709. .replace{
  710. width: 75rpx;
  711. height: 37rpx;
  712. border-radius: 19rpx;
  713. border: 2rpx solid #B9B9B9;
  714. text-align: center;
  715. line-height: 35rpx;
  716. color: #707070;
  717. font-size: 22rpx;
  718. }
  719. .contZkMain{
  720. padding-top: 20rpx;
  721. }
  722. .asa{
  723. width: 44rpx;
  724. height: 44rpx;
  725. line-height: 44rpx;
  726. text-align: center;
  727. background: #F4F5F7;
  728. font-size: 30rpx;
  729. }
  730. .goodsCOntBOttom{
  731. display: flex;
  732. justify-content: space-between;
  733. }
  734. .as{
  735. display: flex;
  736. }
  737. .goodsPrice{
  738. display: flex;justify-content: space-between;
  739. padding-top: 10rpx;
  740. }
  741. .goodsPriceNum{
  742. color: #F8F8F8;
  743. font-size: 28rpx;
  744. }
  745. .asNum{
  746. font-size: 24rpx;color: #333333;
  747. padding: 0 18rpx;
  748. height: 44rpx;
  749. line-height: 44rpx;
  750. background: #F4F5F7;
  751. margin-left: 1px;
  752. margin-right: 1px;
  753. }
  754. .itemNum{
  755. font-size: 24rpx;
  756. font-weight: 400;
  757. color: #999999;
  758. }
  759. .bottom{
  760. display: flex;
  761. justify-content: space-between;
  762. }
  763. .caidanImg{
  764. width: 50rpx;
  765. height: 50rpx;
  766. }
  767. .bottomLeft{
  768. display: flex;
  769. }
  770. .caidan{
  771. padding-left: 33rpx;
  772. padding-top: 35rpx;
  773. padding-right: 33rpx;
  774. position: relative;
  775. }
  776. .total{
  777. position: absolute;
  778. width: 40rpx;
  779. height: 26rpx;
  780. background: #FF270A;
  781. line-height: 26rpx;
  782. text-align: center;
  783. color: #FFFFFF;
  784. font-size: 20rpx;
  785. top: 25rpx;
  786. right: 15rpx;
  787. border-radius: 13rpx;
  788. }
  789. .heji1{
  790. font-size: 24rpx;
  791. font-weight: 500;
  792. color: #666666;
  793. }
  794. .hejiNum{
  795. font-size: 32rpx;
  796. font-family: PingFangSC-Medium, PingFang SC;
  797. font-weight: 500;
  798. color: #FF4F00;
  799. }
  800. .hejiMs{
  801. font-size: 24rpx;
  802. padding-top: 5rpx;
  803. color: #999999;
  804. }
  805. .heji{
  806. padding-top: 23rpx;
  807. }
  808. .settlement{
  809. width: 203rpx;
  810. height: 74rpx;
  811. background: #FF4F00;
  812. border-radius: 37rpx;
  813. text-align: center;
  814. line-height: 74rpx;
  815. font-size: 30rpx;
  816. font-family: PingFangSC-Medium, PingFang SC;
  817. font-weight: 500;
  818. color: #FEFFFE;
  819. margin-top: 23rpx;
  820. margin-right: 32rpx;
  821. }
  822. .nodataImg{
  823. width: 400rpx;
  824. padding-top: 100rpx;
  825. }
  826. .noTxt{
  827. font-size: 36rpx;
  828. color: #999999;
  829. padding-top: 50rpx;
  830. }
  831. .nodataBox{
  832. text-align: center;
  833. }
  834. </style>