maintain.vue 24 KB

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