maintain.vue 27 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093
  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.goodsList" 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.goodsList.length>1">更换</view>
  62. </view>
  63. <view class="goodsCOntBOttom">
  64. <view class="salePrice">¥{{v.salePrice?v.salePrice:'--'}}</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. console.log(goods.goodsGroupDetail)
  329. /* goods.forEach(sp=>{
  330. this.goodsTotal=Number(this.goodsTotal)
  331. this.goodsTotal+=sp.salePrice*sp.qty
  332. this.goodsTotal=this.goodsTotal.toFixed(2)
  333. })
  334. //goods[0].salePrice=1;*/
  335. this.goodsTotal=Number(this.goodsTotal)
  336. if(!isNaN(goods.goodsList[0].salePrice)){
  337. this.goodsTotal+=goods.goodsList[0].salePrice*goods.goodsList[0].qty
  338. this.goodsTotal=this.goodsTotal.toFixed(2)
  339. }else{
  340. this.isNull=false
  341. }
  342. if(goods.goodsList[0].salePrice==null){
  343. this.isNull=false
  344. }
  345. obj.listGoodsAll.push(goods.goodsList[0])
  346. })
  347. }
  348. if(i.listItem.length>0){
  349. obj.listItem=i.listItem
  350. }
  351. this.orderData.push(obj)
  352. v.num++;
  353. this.total++;
  354. i.listItem.forEach(xm=>{
  355. xm.qty=1;
  356. if(!isNaN(xm.salePrice)){
  357. this.salePriceTotal=Number(this.salePriceTotal)
  358. this.salePriceTotal+=xm.salePrice
  359. this.salePriceTotal=this.salePriceTotal.toFixed(2)
  360. }else{
  361. this.isNull=false
  362. }
  363. if(xm.salePrice==null){
  364. this.isNull=false
  365. }
  366. //xm.salePrice=1;
  367. })
  368. //this.totalhj
  369. }
  370. })
  371. }
  372. }
  373. //if(v.listPackage)
  374. })
  375. this.totalhj=Number(this.goodsTotal)+Number(this.salePriceTotal)
  376. this.totalhj=this.totalhj.toFixed(2)
  377. console.log(this.orderData)
  378. },
  379. reduce(v){
  380. console.log(v)
  381. if(v.qty>1){
  382. v.qty--;
  383. this.calculation()
  384. }else if(v.del){
  385. if(v.qty>0){
  386. v.qty--;
  387. this.calculation()
  388. }
  389. }
  390. },
  391. plus(v){
  392. v.qty++;
  393. this.calculation()
  394. },
  395. getData(){
  396. uni.showLoading({
  397. title: '加载中'
  398. })
  399. var location = uni.getStorageSync("locationCity");
  400. var selectCity = uni.getStorageSync("selectCity");
  401. var cityCode=''
  402. if(selectCity){
  403. cityCode=selectCity.code
  404. }else{
  405. cityCode=location.cityCode
  406. }
  407. this.$http('miniApp/tPackageMiniAppController/queryPackageList', {
  408. mileage:this.maintainCarData.milage,
  409. liyangId:this.maintainCarData.nLevelID,
  410. cityCode:cityCode,
  411. guidePrice:this.maintainCarData.guidePrice?this.maintainCarData.guidePrice:0,
  412. },'GET').then(res => {
  413. console.log(res)
  414. uni.hideLoading();
  415. if(res.code==1){
  416. uni.showModal({
  417. title: '提示',
  418. content: res.msg,
  419. showCancel:false,
  420. success: function (res) {
  421. }
  422. });
  423. }
  424. res.data.forEach(item=>{
  425. //console.log(item)
  426. item.listPackage.forEach((list,i)=>{
  427. if(list.listGoodsAll.length>0){
  428. list.listGoodsAll.forEach((goods,index)=>{
  429. //console.log(goods.goodsGroupDetail)
  430. if(goods.goodsGroupDetail.length==0){
  431. //同组品为空的情况
  432. if(goods.goodsList[0].capacity&&!goods.goodsList[0].del){
  433. //console.log(Number(list.referenceDosageQty)/goods[0].capacity)
  434. if(Number(list.referenceDosageQty)/goods.goodsList[0].capacity>1){
  435. console.log("添加一条")
  436. var addDta={
  437. goodsGroupDetail:[],
  438. goodsList:goods.goodsList
  439. }
  440. addDta.goodsList.forEach(add=>{
  441. add.del=true;
  442. })
  443. //addDta.splice(1,0)
  444. console.log(addDta)
  445. var add=JSON.parse(JSON.stringify(addDta))
  446. list.listGoodsAll.splice(index+1, 0,add)
  447. }
  448. }
  449. }else{
  450. //同组品不为空的情况
  451. //console.log("同组品不为空的情况 ")
  452. var remainder=0;
  453. var addNum=index
  454. console.log("list.referenceDosageQty - "+list.referenceDosageQty+list.name)
  455. var referenceDosageQty=Number(list.referenceDosageQty)
  456. //var addArr= goods.goodsList
  457. goods.goodsList.splice(300);
  458. var addArr=JSON.parse(JSON.stringify(goods.goodsList))
  459. if(list.referenceDosageQty&&!goods.goodsList[0].del){
  460. goods.goodsGroupDetail.forEach((tgoods,tindex)=>{
  461. if(tindex==0){
  462. if(referenceDosageQty>tgoods.capacity){
  463. var parseIntNum=parseInt(referenceDosageQty/tgoods.capacity)
  464. tgoods.qty=parseIntNum
  465. var reduce= tgoods.capacity*parseIntNum
  466. referenceDosageQty=referenceDosageQty - reduce
  467. }else{
  468. addArr.unshift(tgoods)
  469. referenceDosageQty=referenceDosageQty-tgoods.capacity
  470. }
  471. /* remainder=referenceDosageQty%tgoods.capacity
  472. console.log('--remainder---'+remainder)
  473. if(remainder>0){
  474. //addArr.unshift(tgoods)
  475. } */
  476. var addDta={
  477. goodsGroupDetail:[],
  478. goodsList:addArr,
  479. del:true
  480. }
  481. addDta.goodsList.forEach(add=>{
  482. add.del=true;
  483. })
  484. //console.log(addArr)
  485. if(tindex==0){
  486. // console.log(addDta.goodsList[0])
  487. list.listGoodsAll.splice(index, 1,addDta)
  488. //console.log(list.listGoodsAll[index])
  489. }else{
  490. addNum++
  491. console.log('addNum=='+addNum)
  492. //console.log(addDta.goodsList[0])
  493. list.listGoodsAll.splice(addNum, 0,addDta)
  494. }
  495. }else{
  496. if(referenceDosageQty>0){
  497. console.log('referenceDosageQty'+referenceDosageQty)
  498. console.log(tgoods)
  499. /* remainder=Number(referenceDosageQty)%tgoods.capacity
  500. if(remainder>1){
  501. addArr.unshift(tgoods)
  502. }
  503. referenceDosageQty=referenceDosageQty-tgoods.capacity */
  504. if(referenceDosageQty>tgoods.capacity){
  505. var parseIntNum=parseInt(referenceDosageQty/tgoods.capacity)
  506. tgoods.qty=parseIntNum
  507. addArr.unshift(tgoods)
  508. var reduce= tgoods.capacity*parseIntNum
  509. referenceDosageQty=referenceDosageQty - reduce
  510. }else{
  511. addArr.unshift(tgoods)
  512. referenceDosageQty=referenceDosageQty-tgoods.capacity
  513. }
  514. var addDta={
  515. goodsGroupDetail:[],
  516. goodsList:addArr,
  517. del:true
  518. }
  519. addDta.goodsList.forEach(add=>{
  520. add.del=true;
  521. })
  522. //console.log(addArr)
  523. if(tindex==0){
  524. // console.log(addDta.goodsList[0])
  525. list.listGoodsAll.splice(index, 1,addDta)
  526. //console.log(list.listGoodsAll[index])
  527. }else{
  528. addNum++
  529. console.log('addNum=='+addNum)
  530. //console.log(addDta.goodsList[0])
  531. list.listGoodsAll.splice(addNum, 0,addDta)
  532. }
  533. }
  534. }
  535. } )
  536. }
  537. }
  538. })
  539. }
  540. })
  541. })
  542. this.mealData=res.data;
  543. this.mealData.splice(1,0)
  544. console.log(this.mealData)
  545. this.calculation();
  546. })
  547. },
  548. handbook(){
  549. uni.navigateTo({
  550. url:'handbook?mileage'+this.maintainCarData.milage+'&liyangId='+this.maintainCarData.nLevelID
  551. })
  552. },
  553. settlement(){
  554. if(!this.isNull){
  555. uni.showToast({
  556. title: '您选择的有未设置价格的商品,请重新选择',
  557. icon:'none',
  558. duration: 5000
  559. });
  560. return false;
  561. }
  562. console.log(this.orderData)
  563. //return false;
  564. uni.removeStorageSync('couponData');
  565. if(this.orderData.length>0){
  566. /* uni.navigateTo({
  567. url:'confirmOrder?orderData='+JSON.stringify(this.orderData)+'&currentMileage='+this.maintainCarData.milage
  568. }) */
  569. uni.navigateTo({
  570. url:'orderShop?orderData='+JSON.stringify(this.orderData)+'&currentMileage='+this.maintainCarData.milage+'&brand='+this.brand
  571. })
  572. }
  573. },
  574. replace(v,index,i,replaceIndex){
  575. //v.splice(replaceIndex, 1)
  576. console.log(v)
  577. console.log(replaceIndex)
  578. v.forEach((item,vindex)=>{
  579. if(replaceIndex==vindex){
  580. item.showr=false
  581. }else{
  582. item.showr=true
  583. }
  584. })
  585. uni.removeStorageSync('replaceData');
  586. this.replaceIndex1=index;
  587. this.replaceIndex2=i;
  588. uni.setStorage({
  589. key: 'replaceDataList',
  590. data: v,
  591. success: function () {
  592. uni.navigateTo({
  593. url:'replaceGoods'
  594. })
  595. }
  596. });
  597. },
  598. caidanClick(){
  599. this.qingdanShow=!this.qingdanShow
  600. },
  601. milageEdit(){
  602. this.maintainCarData.milage=''
  603. },
  604. carEdit(){
  605. uni.navigateTo({
  606. url:'../index/cailist?type=2'
  607. })
  608. }
  609. }
  610. }
  611. </script>
  612. <style scoped>
  613. .caidanTk{
  614. height: calc(100vh );
  615. width: 100vw;
  616. background: rgba(0,0,0,0.6);
  617. position:fixed;
  618. left: 0;
  619. top: 0;
  620. }
  621. .tkCont{
  622. height: 70vh;
  623. /* margin-top: calc(40vh ); */
  624. position: absolute;
  625. left: 0;
  626. bottom: 0;
  627. }
  628. .caidanTkTop{
  629. width: 750rpx;
  630. height: 90rpx;
  631. background: #FFFFFF;
  632. border-radius: 24rpx 24rpx 0px 0px;
  633. }
  634. .caidanTkTop{
  635. display: flex;justify-content: space-between;
  636. }
  637. .topTopright{
  638. display: flex;
  639. padding-top: 29rpx;
  640. }
  641. .tkTopTitle{
  642. line-height: 90rpx;
  643. font-size: 30rpx;
  644. font-weight: 600;
  645. color: #3C3C3C;
  646. padding-left: 24rpx;
  647. }
  648. .empty{
  649. width: 86rpx;
  650. height: 42rpx;
  651. background: #EEEEEE;
  652. border-radius: 21rpx;
  653. text-align: center;
  654. color: #666666;
  655. font-size: 24rpx;
  656. line-height: 42rpx;
  657. }
  658. .close{
  659. color: #999999;
  660. font-size: 30rpx;
  661. padding-right: 30rpx;
  662. padding-left: 24rpx;
  663. }
  664. .tkMain{
  665. background: #F0F0F0;
  666. height: calc(70vh - 90rpx);
  667. }
  668. .tkMainSv{
  669. padding: 0 24rpx;
  670. width: 702rpx;
  671. height: calc(70vh - 150rpx);
  672. }
  673. .goodsItemRight{
  674. width: 520rpx;
  675. padding-left: 20rpx;
  676. display: flex;
  677. flex-direction:column;
  678. justify-content: space-between;
  679. }
  680. .goodsItemBottom{
  681. display: flex;
  682. justify-content: space-between;
  683. }
  684. .goodssalePrice{
  685. font-size: 32rpx;font-weight: 500;color: #FF4F00;
  686. }
  687. .goodsNum{
  688. font-size: 24rpx;font-weight: 400;color: #999999;
  689. }
  690. .top{
  691. background: #FF4F00;
  692. display: flex;
  693. justify-content: space-between;
  694. padding: 30rpx 25rpx;
  695. font-size: 28rpx;
  696. color: #FFFFFF;
  697. }
  698. .goodsItem{
  699. display: flex;
  700. padding: 15rpx 0;
  701. }
  702. .qingdanLine{
  703. background: #FFFFFF;
  704. margin-top: 20rpx;
  705. padding: 24rpx 20rpx;
  706. border-radius: 10rpx;
  707. }
  708. .brandLogo{
  709. width: 42rpx;
  710. height: 42rpx;
  711. padding: 0 10rpx;
  712. }
  713. .topLeft{
  714. display: flex;
  715. align-content: center;
  716. }
  717. .carName{
  718. width: 61%;
  719. }
  720. .topEdit{
  721. width: 22rpx;
  722. height: 22rpx;
  723. padding: 10rpx;
  724. }
  725. .topRight{
  726. display: flex;
  727. justify-content: flex-end;
  728. align-items: center;
  729. }
  730. .topInput{
  731. font-size: 28rpx;
  732. color: #FFFFFF;
  733. text-align: right;
  734. padding-top: 3rpx;
  735. width: 70%;
  736. }
  737. .maintainrecommend{
  738. padding: 30rpx 24rpx;
  739. display: flex;
  740. justify-content: space-between;
  741. border-bottom: 2rpx solid #EEEEEE;
  742. }
  743. .recommendTxt{
  744. color: #3C3C3C;
  745. font-size: 30rpx;
  746. font-weight: 600;
  747. }
  748. .manual{
  749. width: 119rpx;
  750. height: 40rpx;
  751. border-radius: 20rpx;
  752. border: 2rpx solid #F19D01;
  753. text-align: center;
  754. line-height: 40rpx;
  755. font-size: 22rpx;
  756. color: #F19D01;
  757. }
  758. .bottom{
  759. position: fixed;
  760. left: 0;
  761. bottom: 0;
  762. width: 100vw;
  763. height: 120rpx;
  764. background: #FFFFFF;
  765. box-shadow: 0px -2px 20px 0px rgba(153, 153, 153, 0.2);
  766. padding-bottom: constant(safe-area-inset-bottom);
  767. padding-bottom: env(safe-area-inset-bottom);
  768. box-sizing: content-box;
  769. z-index: 11;
  770. }
  771. .ckBottom{
  772. width: 100vw;
  773. height: 120rpx;
  774. padding-bottom: constant(safe-area-inset-bottom);
  775. padding-bottom: env(safe-area-inset-bottom);
  776. box-sizing: content-box;
  777. }
  778. .main{
  779. display: flex;
  780. height: calc(100vh - 410rpx);
  781. }
  782. .mainscrollView{
  783. height: calc(100vh - 410rpx);
  784. padding-bottom: constant(safe-area-inset-bottom);
  785. padding-bottom: env(safe-area-inset-bottom);
  786. box-sizing: content-box;
  787. margin-bottom: 120rpx;
  788. }
  789. /* #ifdef MP-WEIXIN */
  790. .main{
  791. display: flex;
  792. height: calc(100vh - 310rpx);
  793. }
  794. .mainscrollView{
  795. height: calc(100vh - 310rpx);
  796. }
  797. /* #endif */
  798. .mainLeft{
  799. width: 146rpx;
  800. background: #F5F5F5;
  801. }
  802. .mainRight{
  803. width: 604rpx;
  804. }
  805. .mainLeftLine{
  806. color: #3C3C3C;
  807. padding: 30rpx 20rpx;
  808. font-size: 24rpx;
  809. text-align: center;
  810. position: relative;
  811. }
  812. .lineNum{
  813. position: absolute;
  814. background: #FF270A;
  815. width: 40rpx;
  816. height: 26rpx;
  817. text-align: center;
  818. line-height: 26rpx;
  819. font-size: 20rpx;
  820. color: #FFFFFF;
  821. border-radius: 13rpx;
  822. top: 10rpx;
  823. right: 10rpx;
  824. }
  825. .lineLeftActive{
  826. background: #FFFFFF;
  827. }
  828. .nock{
  829. width: 22rpx;
  830. height: 22rpx;
  831. border-radius: 50%;
  832. border:2px solid #AEAEAE;
  833. margin-top: 2rpx;
  834. margin-right: 10rpx;
  835. }
  836. .imgPrivacy{
  837. width: 36rpx;
  838. height: 36rpx;
  839. /* margin-top: 2rpx; */
  840. margin-right: 10rpx;
  841. }
  842. .contTopRight{
  843. display: flex;
  844. align-items: center;
  845. }
  846. .mainRightLine{
  847. padding: 20rpx 20rpx 0 20rpx;
  848. }
  849. .contTop{
  850. display: flex;
  851. justify-content: space-between;
  852. }
  853. .listPackgeName{
  854. font-size: 26rpx;
  855. font-family: PingFangSC-Regular, PingFang SC;
  856. font-weight: 600;
  857. color: #3C3C3C;
  858. }
  859. .listPackgeMs{
  860. font-size: 22rpx;
  861. font-family: PingFangSC-Regular, PingFang SC;
  862. font-weight: 400;
  863. color: #999999;
  864. padding-top: 5rpx;
  865. line-height: 30rpx;
  866. }
  867. .contZk{
  868. border-bottom: 1px solid #EEEEEE;
  869. padding-bottom: 20rpx;
  870. }
  871. .goodsImg{
  872. width: 120rpx;
  873. height: 120rpx;
  874. border-radius: 11rpx;
  875. }
  876. .goodsItemLIne{
  877. display: flex;
  878. padding-top: 20rpx;
  879. padding-bottom: 20rpx;
  880. }
  881. .goodsCont{
  882. display: flex;
  883. flex-direction:column;
  884. justify-content: space-between;
  885. padding-left: 20rpx;
  886. }
  887. .goodsContTop{
  888. display: flex;
  889. justify-content: space-between;
  890. width: 400rpx;
  891. }
  892. .goodsItemName{
  893. font-size: 26rpx;
  894. font-weight: 400;
  895. color: #3C3C3C;
  896. width: 78%;
  897. }
  898. .salePrice{
  899. font-size: 32rpx;
  900. font-weight: 500;
  901. color: #FF4F00;
  902. }
  903. .replace{
  904. width: 75rpx;
  905. height: 37rpx;
  906. border-radius: 19rpx;
  907. border: 2rpx solid #B9B9B9;
  908. text-align: center;
  909. line-height: 35rpx;
  910. color: #707070;
  911. font-size: 22rpx;
  912. }
  913. .contZkMain{
  914. padding-top: 20rpx;
  915. }
  916. .asa{
  917. width: 44rpx;
  918. height: 44rpx;
  919. line-height: 44rpx;
  920. text-align: center;
  921. background: #F4F5F7;
  922. font-size: 30rpx;
  923. }
  924. .goodsCOntBOttom{
  925. display: flex;
  926. justify-content: space-between;
  927. }
  928. .as{
  929. display: flex;
  930. }
  931. .goodsPrice{
  932. display: flex;justify-content: space-between;
  933. padding-top: 10rpx;
  934. }
  935. .goodsPriceNum{
  936. color: #F8F8F8;
  937. font-size: 28rpx;
  938. }
  939. .asNum{
  940. font-size: 24rpx;color: #333333;
  941. padding: 0 18rpx;
  942. height: 44rpx;
  943. line-height: 44rpx;
  944. background: #F4F5F7;
  945. margin-left: 1px;
  946. margin-right: 1px;
  947. }
  948. .itemNum{
  949. font-size: 24rpx;
  950. font-weight: 400;
  951. color: #999999;
  952. }
  953. .bottom{
  954. display: flex;
  955. justify-content: space-between;
  956. }
  957. .caidanImg{
  958. width: 50rpx;
  959. height: 50rpx;
  960. }
  961. .bottomLeft{
  962. display: flex;
  963. }
  964. .caidan{
  965. padding-left: 33rpx;
  966. padding-top: 35rpx;
  967. padding-right: 33rpx;
  968. position: relative;
  969. }
  970. .total{
  971. position: absolute;
  972. width: 40rpx;
  973. height: 26rpx;
  974. background: #FF270A;
  975. line-height: 26rpx;
  976. text-align: center;
  977. color: #FFFFFF;
  978. font-size: 20rpx;
  979. top: 25rpx;
  980. right: 15rpx;
  981. border-radius: 13rpx;
  982. }
  983. .heji1{
  984. font-size: 24rpx;
  985. font-weight: 500;
  986. color: #666666;
  987. }
  988. .hejiNum{
  989. font-size: 32rpx;
  990. font-family: PingFangSC-Medium, PingFang SC;
  991. font-weight: 500;
  992. color: #FF4F00;
  993. }
  994. .hejiMs{
  995. font-size: 24rpx;
  996. padding-top: 5rpx;
  997. color: #999999;
  998. }
  999. .heji{
  1000. padding-top: 23rpx;
  1001. }
  1002. .settlement{
  1003. width: 203rpx;
  1004. height: 74rpx;
  1005. background: #FF4F00;
  1006. border-radius: 37rpx;
  1007. text-align: center;
  1008. line-height: 74rpx;
  1009. font-size: 30rpx;
  1010. font-family: PingFangSC-Medium, PingFang SC;
  1011. font-weight: 500;
  1012. color: #FEFFFE;
  1013. margin-top: 23rpx;
  1014. margin-right: 32rpx;
  1015. }
  1016. .nodataImg{
  1017. width: 400rpx;
  1018. padding-top: 100rpx;
  1019. }
  1020. .noTxt{
  1021. font-size: 36rpx;
  1022. color: #999999;
  1023. padding-top: 50rpx;
  1024. }
  1025. .nodataBox{
  1026. text-align: center;
  1027. }
  1028. </style>