maintain.vue 29 KB

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