maintain.vue 26 KB

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