maintain.vue 24 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000
  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">
  43. <span v-if="item.referenceDosageQty">{{item.referenceDosage}}</span>
  44. </view>
  45. </view>
  46. <view class="contTopRight" @click="listcheck(item)">
  47. <image src="../../static/img/login_icon_checked.png" mode="" class="imgPrivacy" v-show="item.planItem"></image>
  48. <image src="../../static/img/login_icon_uncheck.png" mode="" class="imgPrivacy" v-show="!item.planItem"></image>
  49. <!-- <view class="nock" v-show="!item.check"></view> -->
  50. </view>
  51. </view>
  52. <view class="contZk">
  53. <view class="contZkMain" v-show="item.planItem">
  54. <view v-for="(vf,findex) in item.listGoodsAll">
  55. <view class="goodsItemLIne" v-for="(v,i) in vf" v-if="i==0" @click="goGoods(v)">
  56. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  57. <image src="../../static/img/noimg.png" mode="" class="goodsImg sm" v-else></image>
  58. <view class="goodsCont">
  59. <view class="goodsContTop">
  60. <view class="goodsItemName">{{v.showName}}</view>
  61. <view class="replace" @click.stop="replace(vf,index,findex,i)" v-if="vf.length>1">更换</view>
  62. </view>
  63. <view class="goodsCOntBOttom">
  64. <view class="salePrice">¥{{v.salePrice?v.salePrice:'0.00'}}</view>
  65. <view class="as">
  66. <view class="asa" @click.stop="reduce(v)">-</view>
  67. <view class="asNum">{{v.qty}}</view>
  68. <view class="asa" @click.stop="plus(v)">+</view>
  69. </view>
  70. </view>
  71. </view>
  72. </view>
  73. </view>
  74. <view class="goodsItemLIne" v-for="(v,i) in item.listItem" >
  75. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  76. <image src="../../static/img/icon_xiangmu.png" mode="" class="goodsImg sm" v-else></image>
  77. <view class="goodsCont">
  78. <view class="goodsContTop">
  79. <view class="goodsItemName">{{v.itemName}}</view>
  80. </view>
  81. <view class="goodsCOntBOttom">
  82. <view class="salePrice" >¥{{v.salePrice?v.salePrice:'-'}}</view>
  83. <view class="itemNum">x1</view>
  84. </view>
  85. </view>
  86. </view>
  87. </view>
  88. </view>
  89. </view>
  90. <view style="height: 100rpx;"></view>
  91. </scroll-view>
  92. </view>
  93. </view>
  94. <!-- 底部 -->
  95. <view class="bottom">
  96. <view class="bottomLeft">
  97. <view class="caidan" @click="caidanClick">
  98. <image src="../../static/img/caidan.png" mode="" class="caidanImg"></image>
  99. <view class="total" v-show="total>0">{{total}}</view>
  100. </view>
  101. <view>
  102. <view class="heji"> <span class="heji1">合计</span> <span class="hejiNum">¥{{totalhj}}</span> </view>
  103. <view class="hejiMs">商品¥{{goodsTotal}}+工时费¥{{salePriceTotal}}</view>
  104. </view>
  105. </view>
  106. <view class="settlement" @click="settlement">去结算</view>
  107. </view>
  108. <view class="caidanTk" v-show="qingdanShow" @click="qingdanShow=false">
  109. <view class="tkCont">
  110. <view class="caidanTkTop">
  111. <view class="tkTopTitle">清单</view>
  112. <view class="topTopright">
  113. <view class="empty" @click.stop="empty">清空</view>
  114. <view class="close" @click="qingdanShow=false">X</view>
  115. </view>
  116. </view>
  117. <view class="tkMain" @click.stop>
  118. <scroll-view scroll-y="true" class="tkMainSv">
  119. <view class="qingdanLine" v-for="(item,index) in orderData">
  120. <view class="mainTitle">{{item.name}}</view>
  121. <view class="goodsItem" v-for="(v,i) in item.listGoodsAll">
  122. <view >
  123. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  124. <image src="../../static/img/noimg.png" mode="" class="goodsImg " v-else></image>
  125. </view>
  126. <view class="goodsItemRight" >
  127. <view class="goodsItemName">{{v.showName}}</view>
  128. <view class="goodsItemBottom">
  129. <view class="goodssalePrice">¥{{v.salePrice}}</view>
  130. <view class="goodsNum">x{{v.qty}}</view>
  131. </view>
  132. </view>
  133. </view>
  134. <view class="goodsItem" v-for="(v,i) in item.listItem">
  135. <view>
  136. <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
  137. <image src="../../static/img/icon_xiangmu.png" mode="" class="goodsImg " v-else></image>
  138. </view>
  139. <view class="goodsItemRight" >
  140. <view class="goodsItemName">{{v.itemName}}</view>
  141. <view class="goodsItemBottom">
  142. <view class="goodssalePrice">¥{{v.salePrice?v.salePrice:'-'}}</view>
  143. <view class="goodsNum">x{{v.qty}}</view>
  144. </view>
  145. </view>
  146. </view>
  147. </view>
  148. <view class="ckBottom"></view>
  149. </scroll-view>
  150. </view>
  151. </view>
  152. </view>
  153. </view>
  154. </template>
  155. <script>
  156. export default {
  157. data() {
  158. return {
  159. maintainCarData:'',
  160. shopData:'',
  161. mealData:'',
  162. leftIndex:0,
  163. total:0,
  164. qingdanShow:false,
  165. totalhj:0,
  166. goodsTotal:0,
  167. salePriceTotal:0,
  168. orderData:[],
  169. replaceIndex1:'',
  170. replaceIndex2:'',
  171. brand:'',
  172. isNull:true,
  173. }
  174. },
  175. onLoad(opt) {
  176. this.$common.isUserId()
  177. this.maintainCarData=uni.getStorageSync("maintainCarData");
  178. //console.log(this.maintainCarData)
  179. this.shopData=uni.getStorageSync("shopData");
  180. if(this.maintainCarData.milage==0){
  181. this.maintainCarData.milage='';
  182. }
  183. if (opt.brand) {
  184. this.brand = opt.brand
  185. }
  186. this.getData();
  187. },
  188. onShow() {
  189. var maintainCarData2=uni.getStorageSync("maintainCarData");
  190. if(this.maintainCarData.id!=maintainCarData2.id){
  191. this.maintainCarData=maintainCarData2;
  192. if(this.maintainCarData.milage==0){
  193. this.maintainCarData.milage='';
  194. }
  195. this.getData();
  196. }
  197. var replaceData=uni.getStorageSync("replaceData");
  198. if(replaceData){
  199. replaceData.qty=1;
  200. console.log(replaceData)
  201. this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].unshift(replaceData)
  202. console.log(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2])
  203. this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2]=this.unique(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2])
  204. //this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2]=replaceData
  205. //this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].goodsName='666'
  206. //console.log(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2])
  207. this.$forceUpdate()
  208. this.calculation()
  209. }
  210. },
  211. methods: {
  212. unique(arr1) {
  213. const res = new Map();
  214. return arr1.filter((a) => !res.has(a.goodsID) && res.set(a.goodsID, 1))
  215. },
  216. upMileage(){
  217. this.getData();
  218. this.$http('worldKeepCar/worldHome/updateTMemberCarByHome', {
  219. id: this.maintainCarData.id,
  220. milage: this.maintainCarData.milage?this.maintainCarData.milage:0,
  221. }, 'POST').then(res => {
  222. uni.hideLoading();
  223. console.log(res);
  224. if (res.code == 0) {
  225. var cardata = uni.getStorageSync("maintainCarData")
  226. if (cardata) {
  227. cardata.milage = this.maintainCarData.milage
  228. uni.setStorage({
  229. key: 'maintainCarData',
  230. data: cardata,
  231. success: function () {
  232. }
  233. });
  234. }
  235. }
  236. })
  237. },
  238. // milageEditconfirm(){
  239. // this.getData();
  240. // var that=this;
  241. // for(let k in this.maintainCarData){this.maintainCarData[k] = this.maintainCarData[k]==null?'':this.maintainCarData[k]}
  242. // this.$http('miniAppMyBMemberCar/updateMemberCar',this.maintainCarData,'POST').then(res => {
  243. // uni.hideLoading();
  244. // uni.setStorage({
  245. // key: 'maintainCarData',
  246. // data: that.maintainCarData,
  247. // success: function () {
  248. // /* uni.navigateBack({
  249. // delta:1
  250. // }) */
  251. // }
  252. // });
  253. // })
  254. // },
  255. leftClick(item,index){
  256. this.leftIndex=index
  257. },
  258. listcheck(item){
  259. item.planItem=!item.planItem;
  260. //var
  261. if(this.mealData[this.leftIndex].name=='小保养'){
  262. this.calculation('大保养');
  263. }else if(this.mealData[this.leftIndex].name=='大保养'){
  264. this.calculation('小保养');
  265. }else{
  266. this.calculation();
  267. }
  268. if(item.planItem){
  269. /* this.orderData.push(item) */
  270. }
  271. },
  272. goGoods(item){
  273. uni.navigateTo({
  274. url:'../module/goodsDetail?goodsId='+item.goodsID+'&type=1'+'&typeIndex=2&maintain=1'
  275. })
  276. },
  277. empty(){
  278. var that=this;
  279. uni.showModal({
  280. title: '提示',
  281. content: '确定要清空清单吗',
  282. success: function (res) {
  283. if (res.confirm) {
  284. that.orderData=[];
  285. that.mealData.forEach(item=>{
  286. item.num=0;
  287. if(item.listPackage){
  288. item.listPackage.forEach(v=>{
  289. v.planItem=false
  290. })
  291. }
  292. })
  293. console.log(that.mealData)
  294. that.calculation();
  295. that.qingdanShow=false;
  296. }
  297. }
  298. });
  299. },
  300. calculation(txt){
  301. this.isNull=true
  302. this.total=0;
  303. this.totalhj=0;
  304. this.goodsTotal=0;
  305. this.salePriceTotal=0;
  306. this.orderData=[]
  307. this.mealData.forEach(v=>{
  308. v.num=0;
  309. if(txt == v.name){
  310. console.log(v.name)
  311. if(v.listPackage){
  312. v.listPackage.forEach(i=>{
  313. i.planItem=false
  314. })
  315. }
  316. }else{
  317. if(v.listPackage){
  318. v.listPackage.forEach(i=>{
  319. if(i.planItem){
  320. var obj={
  321. listGoodsAll:[],
  322. listItem:'',
  323. id:i.id,
  324. name:i.name
  325. }
  326. if(i.listGoodsAll.length>0){
  327. i.listGoodsAll.forEach((goods,goodsIndex)=>{
  328. /* goods.forEach(sp=>{
  329. this.goodsTotal=Number(this.goodsTotal)
  330. this.goodsTotal+=sp.salePrice*sp.qty
  331. this.goodsTotal=this.goodsTotal.toFixed(2)
  332. }) */
  333. //goods[0].salePrice=1;
  334. this.goodsTotal=Number(this.goodsTotal)
  335. if(!isNaN(goods[0].salePrice)){
  336. this.goodsTotal+=goods[0].salePrice*goods[0].qty
  337. this.goodsTotal=this.goodsTotal.toFixed(2)
  338. }else{
  339. this.isNull=false
  340. }
  341. if(goods[0].salePrice==null){
  342. this.isNull=false
  343. }
  344. obj.listGoodsAll.push(goods[0])
  345. })
  346. }
  347. if(i.listItem.length>0){
  348. obj.listItem=i.listItem
  349. }
  350. this.orderData.push(obj)
  351. v.num++;
  352. this.total++;
  353. i.listItem.forEach(xm=>{
  354. xm.qty=1;
  355. if(!isNaN(xm.salePrice)){
  356. this.salePriceTotal=Number(this.salePriceTotal)
  357. this.salePriceTotal+=xm.salePrice
  358. this.salePriceTotal=this.salePriceTotal.toFixed(2)
  359. }else{
  360. this.isNull=false
  361. }
  362. if(xm.salePrice==null){
  363. this.isNull=false
  364. }
  365. //xm.salePrice=1;
  366. })
  367. //this.totalhj
  368. }
  369. })
  370. }
  371. }
  372. //if(v.listPackage)
  373. })
  374. this.totalhj=Number(this.goodsTotal)+Number(this.salePriceTotal)
  375. this.totalhj=this.totalhj.toFixed(2)
  376. console.log(this.orderData)
  377. },
  378. reduce(v){
  379. console.log(v)
  380. if(v.qty>1){
  381. v.qty--;
  382. this.calculation()
  383. }else if(v.del){
  384. if(v.qty>0){
  385. v.qty--;
  386. this.calculation()
  387. }
  388. }
  389. },
  390. plus(v){
  391. v.qty++;
  392. this.calculation()
  393. },
  394. getData(){
  395. uni.showLoading({
  396. title: '加载中'
  397. })
  398. var location = uni.getStorageSync("locationCity");
  399. this.$http('miniApp/tPackageMiniAppController/queryPackageList', {
  400. mileage:this.maintainCarData.milage,
  401. liyangId:this.maintainCarData.nLevelID,
  402. cityCode:location.cityCode,
  403. guidePrice:this.maintainCarData.guidePrice,
  404. },'GET').then(res => {
  405. console.log(res)
  406. uni.hideLoading();
  407. if(res.code==1){
  408. uni.showModal({
  409. title: '提示',
  410. content: res.msg,
  411. showCancel:false,
  412. success: function (res) {
  413. }
  414. });
  415. }
  416. res.data.forEach(item=>{
  417. //console.log(item)
  418. item.listPackage.forEach((list,i)=>{
  419. if(list.listGoodsAll.length>0){
  420. //console.log(list)
  421. //if(true){
  422. //if(list.listGoodsAll[i]!=list.listGoodsAll[i-1]){
  423. list.listGoodsAll.forEach((goods,index)=>{
  424. //console.log(goods[0])
  425. if(goods[0].capacity&&!goods[0].del){
  426. //console.log(Number(list.referenceDosageQty)/goods[0].capacity)
  427. if(Number(list.referenceDosageQty)/goods[0].capacity>1){
  428. console.log("添加一条")
  429. var addDta=list.listGoodsAll[index];
  430. addDta.forEach(add=>{
  431. add.del=true;
  432. })
  433. //addDta.splice(1,0)
  434. //console.log(addDta)
  435. var add=JSON.parse(JSON.stringify(addDta))
  436. list.listGoodsAll.splice(index+1, 0,add)
  437. //list.listGoodsAll.splice(1,0)
  438. //list.listGoodsAll.push(list.listGoodsAll[index])
  439. }
  440. }
  441. })
  442. //}
  443. /* }else{
  444. list.listGoodsAll.forEach((goods,index)=>{
  445. //console.log(goods[0])
  446. if(goods[0].capacity){
  447. console.log(Number(list.referenceDosageQty)/goods[0].capacity)
  448. if(Number(list.referenceDosageQty)/goods[0].capacity>1){
  449. console.log("添加一条")
  450. list.listGoodsAll.splice(index+1, 0,list.listGoodsAll[index])
  451. //list.listGoodsAll.push(list.listGoodsAll[index])
  452. }
  453. }
  454. })
  455. } */
  456. }
  457. })
  458. })
  459. this.mealData=res.data;
  460. this.mealData.splice(1,0)
  461. console.log(this.mealData)
  462. this.calculation();
  463. })
  464. },
  465. handbook(){
  466. uni.navigateTo({
  467. url:'handbook?mileage'+this.maintainCarData.milage+'&liyangId='+this.maintainCarData.nLevelID
  468. })
  469. },
  470. settlement(){
  471. if(!this.isNull){
  472. uni.showToast({
  473. title: '您选择的有未设置价格的商品,请重新选择',
  474. icon:'none',
  475. duration: 5000
  476. });
  477. return false;
  478. }
  479. console.log(this.orderData)
  480. //return false;
  481. uni.removeStorageSync('couponData');
  482. if(this.orderData.length>0){
  483. /* uni.navigateTo({
  484. url:'confirmOrder?orderData='+JSON.stringify(this.orderData)+'&currentMileage='+this.maintainCarData.milage
  485. }) */
  486. uni.navigateTo({
  487. url:'orderShop?orderData='+JSON.stringify(this.orderData)+'&currentMileage='+this.maintainCarData.milage+'&brand='+this.brand
  488. })
  489. }
  490. },
  491. replace(v,index,i,replaceIndex){
  492. //v.splice(replaceIndex, 1)
  493. console.log(v)
  494. console.log(replaceIndex)
  495. v.forEach((item,vindex)=>{
  496. if(replaceIndex==vindex){
  497. item.showr=false
  498. }else{
  499. item.showr=true
  500. }
  501. })
  502. uni.removeStorageSync('replaceData');
  503. this.replaceIndex1=index;
  504. this.replaceIndex2=i;
  505. uni.setStorage({
  506. key: 'replaceDataList',
  507. data: v,
  508. success: function () {
  509. uni.navigateTo({
  510. url:'replaceGoods'
  511. })
  512. }
  513. });
  514. },
  515. caidanClick(){
  516. this.qingdanShow=!this.qingdanShow
  517. },
  518. milageEdit(){
  519. this.maintainCarData.milage=''
  520. },
  521. carEdit(){
  522. uni.navigateTo({
  523. url:'../index/cailist?type=2'
  524. })
  525. }
  526. }
  527. }
  528. </script>
  529. <style scoped>
  530. .caidanTk{
  531. height: calc(100vh );
  532. width: 100vw;
  533. background: rgba(0,0,0,0.6);
  534. position:fixed;
  535. left: 0;
  536. top: 0;
  537. }
  538. .tkCont{
  539. height: 70vh;
  540. /* margin-top: calc(40vh ); */
  541. position: absolute;
  542. left: 0;
  543. bottom: 0;
  544. }
  545. .caidanTkTop{
  546. width: 750rpx;
  547. height: 90rpx;
  548. background: #FFFFFF;
  549. border-radius: 24rpx 24rpx 0px 0px;
  550. }
  551. .caidanTkTop{
  552. display: flex;justify-content: space-between;
  553. }
  554. .topTopright{
  555. display: flex;
  556. padding-top: 29rpx;
  557. }
  558. .tkTopTitle{
  559. line-height: 90rpx;
  560. font-size: 30rpx;
  561. font-weight: 600;
  562. color: #3C3C3C;
  563. padding-left: 24rpx;
  564. }
  565. .empty{
  566. width: 86rpx;
  567. height: 42rpx;
  568. background: #EEEEEE;
  569. border-radius: 21rpx;
  570. text-align: center;
  571. color: #666666;
  572. font-size: 24rpx;
  573. line-height: 42rpx;
  574. }
  575. .close{
  576. color: #999999;
  577. font-size: 30rpx;
  578. padding-right: 30rpx;
  579. padding-left: 24rpx;
  580. }
  581. .tkMain{
  582. background: #F0F0F0;
  583. height: calc(70vh - 90rpx);
  584. }
  585. .tkMainSv{
  586. padding: 0 24rpx;
  587. width: 702rpx;
  588. height: calc(70vh - 150rpx);
  589. }
  590. .goodsItemRight{
  591. width: 520rpx;
  592. padding-left: 20rpx;
  593. display: flex;
  594. flex-direction:column;
  595. justify-content: space-between;
  596. }
  597. .goodsItemBottom{
  598. display: flex;
  599. justify-content: space-between;
  600. }
  601. .goodssalePrice{
  602. font-size: 32rpx;font-weight: 500;color: #FF4F00;
  603. }
  604. .goodsNum{
  605. font-size: 24rpx;font-weight: 400;color: #999999;
  606. }
  607. .top{
  608. background: #FF4F00;
  609. display: flex;
  610. justify-content: space-between;
  611. padding: 30rpx 25rpx;
  612. font-size: 28rpx;
  613. color: #FFFFFF;
  614. }
  615. .goodsItem{
  616. display: flex;
  617. padding: 15rpx 0;
  618. }
  619. .qingdanLine{
  620. background: #FFFFFF;
  621. margin-top: 20rpx;
  622. padding: 24rpx 20rpx;
  623. border-radius: 10rpx;
  624. }
  625. .brandLogo{
  626. width: 42rpx;
  627. height: 42rpx;
  628. padding: 0 10rpx;
  629. }
  630. .topLeft{
  631. display: flex;
  632. align-content: center;
  633. }
  634. .carName{
  635. width: 61%;
  636. }
  637. .topEdit{
  638. width: 22rpx;
  639. height: 22rpx;
  640. padding: 10rpx;
  641. }
  642. .topRight{
  643. display: flex;
  644. justify-content: flex-end;
  645. align-items: center;
  646. }
  647. .topInput{
  648. font-size: 28rpx;
  649. color: #FFFFFF;
  650. text-align: right;
  651. padding-top: 3rpx;
  652. width: 70%;
  653. }
  654. .maintainrecommend{
  655. padding: 30rpx 24rpx;
  656. display: flex;
  657. justify-content: space-between;
  658. border-bottom: 2rpx solid #EEEEEE;
  659. }
  660. .recommendTxt{
  661. color: #3C3C3C;
  662. font-size: 30rpx;
  663. font-weight: 600;
  664. }
  665. .manual{
  666. width: 119rpx;
  667. height: 40rpx;
  668. border-radius: 20rpx;
  669. border: 2rpx solid #F19D01;
  670. text-align: center;
  671. line-height: 40rpx;
  672. font-size: 22rpx;
  673. color: #F19D01;
  674. }
  675. .bottom{
  676. position: fixed;
  677. left: 0;
  678. bottom: 0;
  679. width: 100vw;
  680. height: 120rpx;
  681. background: #FFFFFF;
  682. box-shadow: 0px -2px 20px 0px rgba(153, 153, 153, 0.2);
  683. padding-bottom: constant(safe-area-inset-bottom);
  684. padding-bottom: env(safe-area-inset-bottom);
  685. box-sizing: content-box;
  686. z-index: 11;
  687. }
  688. .ckBottom{
  689. width: 100vw;
  690. height: 120rpx;
  691. padding-bottom: constant(safe-area-inset-bottom);
  692. padding-bottom: env(safe-area-inset-bottom);
  693. box-sizing: content-box;
  694. }
  695. .main{
  696. display: flex;
  697. height: calc(100vh - 410rpx);
  698. }
  699. .mainscrollView{
  700. height: calc(100vh - 410rpx);
  701. padding-bottom: constant(safe-area-inset-bottom);
  702. padding-bottom: env(safe-area-inset-bottom);
  703. box-sizing: content-box;
  704. margin-bottom: 120rpx;
  705. }
  706. /* #ifdef MP-WEIXIN */
  707. .main{
  708. display: flex;
  709. height: calc(100vh - 310rpx);
  710. }
  711. .mainscrollView{
  712. height: calc(100vh - 310rpx);
  713. }
  714. /* #endif */
  715. .mainLeft{
  716. width: 146rpx;
  717. background: #F5F5F5;
  718. }
  719. .mainRight{
  720. width: 604rpx;
  721. }
  722. .mainLeftLine{
  723. color: #3C3C3C;
  724. padding: 30rpx 20rpx;
  725. font-size: 24rpx;
  726. text-align: center;
  727. position: relative;
  728. }
  729. .lineNum{
  730. position: absolute;
  731. background: #FF270A;
  732. width: 40rpx;
  733. height: 26rpx;
  734. text-align: center;
  735. line-height: 26rpx;
  736. font-size: 20rpx;
  737. color: #FFFFFF;
  738. border-radius: 13rpx;
  739. top: 10rpx;
  740. right: 10rpx;
  741. }
  742. .lineLeftActive{
  743. background: #FFFFFF;
  744. }
  745. .nock{
  746. width: 22rpx;
  747. height: 22rpx;
  748. border-radius: 50%;
  749. border:2px solid #AEAEAE;
  750. margin-top: 2rpx;
  751. margin-right: 10rpx;
  752. }
  753. .imgPrivacy{
  754. width: 36rpx;
  755. height: 36rpx;
  756. /* margin-top: 2rpx; */
  757. margin-right: 10rpx;
  758. }
  759. .contTopRight{
  760. display: flex;
  761. align-items: center;
  762. }
  763. .mainRightLine{
  764. padding: 20rpx 20rpx 0 20rpx;
  765. }
  766. .contTop{
  767. display: flex;
  768. justify-content: space-between;
  769. }
  770. .listPackgeName{
  771. font-size: 26rpx;
  772. font-family: PingFangSC-Regular, PingFang SC;
  773. font-weight: 600;
  774. color: #3C3C3C;
  775. }
  776. .listPackgeMs{
  777. font-size: 22rpx;
  778. font-family: PingFangSC-Regular, PingFang SC;
  779. font-weight: 400;
  780. color: #999999;
  781. padding-top: 5rpx;
  782. line-height: 30rpx;
  783. }
  784. .contZk{
  785. border-bottom: 1px solid #EEEEEE;
  786. padding-bottom: 20rpx;
  787. }
  788. .goodsImg{
  789. width: 120rpx;
  790. height: 120rpx;
  791. border-radius: 11rpx;
  792. }
  793. .goodsItemLIne{
  794. display: flex;
  795. padding-top: 20rpx;
  796. padding-bottom: 20rpx;
  797. }
  798. .goodsCont{
  799. display: flex;
  800. flex-direction:column;
  801. justify-content: space-between;
  802. padding-left: 20rpx;
  803. }
  804. .goodsContTop{
  805. display: flex;
  806. justify-content: space-between;
  807. width: 400rpx;
  808. }
  809. .goodsItemName{
  810. font-size: 26rpx;
  811. font-weight: 400;
  812. color: #3C3C3C;
  813. width: 78%;
  814. }
  815. .salePrice{
  816. font-size: 32rpx;
  817. font-weight: 500;
  818. color: #FF4F00;
  819. }
  820. .replace{
  821. width: 75rpx;
  822. height: 37rpx;
  823. border-radius: 19rpx;
  824. border: 2rpx solid #B9B9B9;
  825. text-align: center;
  826. line-height: 35rpx;
  827. color: #707070;
  828. font-size: 22rpx;
  829. }
  830. .contZkMain{
  831. padding-top: 20rpx;
  832. }
  833. .asa{
  834. width: 44rpx;
  835. height: 44rpx;
  836. line-height: 44rpx;
  837. text-align: center;
  838. background: #F4F5F7;
  839. font-size: 30rpx;
  840. }
  841. .goodsCOntBOttom{
  842. display: flex;
  843. justify-content: space-between;
  844. }
  845. .as{
  846. display: flex;
  847. }
  848. .goodsPrice{
  849. display: flex;justify-content: space-between;
  850. padding-top: 10rpx;
  851. }
  852. .goodsPriceNum{
  853. color: #F8F8F8;
  854. font-size: 28rpx;
  855. }
  856. .asNum{
  857. font-size: 24rpx;color: #333333;
  858. padding: 0 18rpx;
  859. height: 44rpx;
  860. line-height: 44rpx;
  861. background: #F4F5F7;
  862. margin-left: 1px;
  863. margin-right: 1px;
  864. }
  865. .itemNum{
  866. font-size: 24rpx;
  867. font-weight: 400;
  868. color: #999999;
  869. }
  870. .bottom{
  871. display: flex;
  872. justify-content: space-between;
  873. }
  874. .caidanImg{
  875. width: 50rpx;
  876. height: 50rpx;
  877. }
  878. .bottomLeft{
  879. display: flex;
  880. }
  881. .caidan{
  882. padding-left: 33rpx;
  883. padding-top: 35rpx;
  884. padding-right: 33rpx;
  885. position: relative;
  886. }
  887. .total{
  888. position: absolute;
  889. width: 40rpx;
  890. height: 26rpx;
  891. background: #FF270A;
  892. line-height: 26rpx;
  893. text-align: center;
  894. color: #FFFFFF;
  895. font-size: 20rpx;
  896. top: 25rpx;
  897. right: 15rpx;
  898. border-radius: 13rpx;
  899. }
  900. .heji1{
  901. font-size: 24rpx;
  902. font-weight: 500;
  903. color: #666666;
  904. }
  905. .hejiNum{
  906. font-size: 32rpx;
  907. font-family: PingFangSC-Medium, PingFang SC;
  908. font-weight: 500;
  909. color: #FF4F00;
  910. }
  911. .hejiMs{
  912. font-size: 24rpx;
  913. padding-top: 5rpx;
  914. color: #999999;
  915. }
  916. .heji{
  917. padding-top: 23rpx;
  918. }
  919. .settlement{
  920. width: 203rpx;
  921. height: 74rpx;
  922. background: #FF4F00;
  923. border-radius: 37rpx;
  924. text-align: center;
  925. line-height: 74rpx;
  926. font-size: 30rpx;
  927. font-family: PingFangSC-Medium, PingFang SC;
  928. font-weight: 500;
  929. color: #FEFFFE;
  930. margin-top: 23rpx;
  931. margin-right: 32rpx;
  932. }
  933. .nodataImg{
  934. width: 400rpx;
  935. padding-top: 100rpx;
  936. }
  937. .noTxt{
  938. font-size: 36rpx;
  939. color: #999999;
  940. padding-top: 50rpx;
  941. }
  942. .nodataBox{
  943. text-align: center;
  944. }
  945. </style>