123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626 |
- <template>
- <view>
- <view class="top">
- <view class="topLeft">
- <image :src="maintainCarData.brandLogo" mode="aspectFit" class="brandLogo"></image>
- <view class="carName">{{maintainCarData.brand}}-{{maintainCarData.series}}</view>
- <image src="../../static/img/icon_edit.png" mode="" class="topEdit" @click="carEdit"></image>
- </view>
- <view class="topRight">
- <input type="number" v-model="maintainCarData.milage" @confirm="upMileage" value="" placeholder="请输入当前里程" class="topInput" placeholder-style="color:#ffffff;"/>
- <image src="../../static/img/icon_edit.png" mode="" class="topEdit" @click="milageEdit"></image>
- </view>
- </view>
- <!-- 保养推荐 -->
- <view class="maintainrecommend">
- <view class="recommendTxt">保养推荐</view>
- <view class="manual" @click="handbook()">保养手册</view>
- </view>
- <!--主体 -->
- <view class="main">
- <view class="mainLeft">
- <scroll-view scroll-y="true" class="mainscrollView">
- <view class="mainLeftLine" v-for="(item,index) in mealData" :class="{lineLeftActive:leftIndex==index}"
- @click="leftClick(item,index)">
- <span>{{item.name}}</span>
- <view class="lineNum" v-show="item.num!=0">{{item.num}}</view>
- </view>
- <view style="height: 100rpx;"></view>
- </scroll-view>
- </view>
- <view class="mainRight">
- <scroll-view scroll-y="true" class="mainscrollView">
- <view v-show="mealData[leftIndex].listPackage.length==0">
- <view class="nodataBox">
- <image src="../../static/img/nodata.png" mode="widthFix" class="nodataImg"></image>
- <view class="noTxt">暂无数据</view>
- </view>
- </view>
- <view class="mainRightLine" v-for="(item,index) in mealData[leftIndex].listPackage">
- <view class="contTop">
- <view class="contTopLeft">
- <view class="listPackgeName"> {{item.name}} </view>
- <view class="listPackgeMs">
- <span v-if="item.referenceDosageQty">{{item.referenceDosage}}</span>
- </view>
- </view>
- <view class="contTopRight" @click="listcheck(item,index)">
- <image src="../../static/img/login_icon_checked.png" mode="" class="imgPrivacy" v-show="item.planItem"></image>
- <image src="../../static/img/login_icon_uncheck.png" mode="" class="imgPrivacy" v-show="!item.planItem"></image>
- <!-- <view class="nock" v-show="!item.check"></view> -->
- </view>
- </view>
- <view class="contZk">
- <view class="contZkMain" v-show="item.planItem">
- <view v-for="(vf,findex) in item.listGoodsAll">
- <view class="goodsItemLIne" v-for="(v,i) in vf.goodsList" v-if="i==0" @click="goGoods(v)">
- <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
- <image src="../../static/img/noimg.png" mode="" class="goodsImg sm" v-else></image>
- <view class="goodsCont">
- <view class="goodsContTop">
- <view class="goodsItemName">{{v.showName}}</view>
- <view class="replaceBox" v-if="vf.goodsList.length>1" @click.stop="replace(vf,index,findex,i)">
- <!-- <view class="replace" v-if="vf.goodsList.length>1&&!v.gh">更换</view> -->
- <view class="replace" >更换</view>
- </view>
-
- </view>
- <view class="goodsCOntBOttom">
- <view class="salePrice">¥{{v.salePrice?v.salePrice:'-'}}</view>
- <view class="as">
- <view class="asa" @click.stop="reduce(v)">-</view>
- <view class="asNum">{{v.qty}}</view>
- <view class="asa" @click.stop="plus(v)">+</view>
- </view>
- </view>
- </view>
-
- </view>
-
- </view>
- <view class="goodsItemLIne" v-for="(v,i) in item.listItem" >
- <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
- <image src="../../static/img/icon_xiangmu.png" mode="" class="goodsImg sm" v-else></image>
- <view class="goodsCont">
- <view class="goodsContTop">
- <view class="goodsItemName">{{v.itemName}}</view>
- </view>
- <view class="goodsCOntBOttom">
- <view class="salePrice" >¥{{v.salePrice?v.salePrice:'-'}}</view>
- <view class="itemNum">x1</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view style="height: 120rpx;"></view>
-
- </scroll-view>
- </view>
- </view>
- <!-- 底部 -->
- <view class="bottom">
- <view class="bottomLeft">
- <view class="caidan" @click="caidanClick">
- <image src="../../static/img/caidan.png" mode="" class="caidanImg"></image>
- <view class="total" v-show="total>0">{{total}}</view>
- </view>
- <view>
- <view class="heji"> <span class="heji1">合计</span> <span class="hejiNum">¥{{totalhj}}</span> </view>
- <view class="hejiMs">商品¥{{goodsTotal}}+工时费¥{{salePriceTotal}}</view>
- </view>
- </view>
- <view class="settlement" @click="settlement">去选店</view>
- </view>
-
- <view class="caidanTk" v-show="qingdanShow" @click="qingdanShow=false">
- <view class="tkCont">
- <view class="caidanTkTop">
- <view class="tkTopTitle">清单</view>
- <view class="topTopright">
- <view class="empty" @click.stop="empty">清空</view>
- <view class="close" @click="qingdanShow=false">X</view>
- </view>
- </view>
-
- <view class="tkMain" @click.stop>
- <scroll-view scroll-y="true" class="tkMainSv">
- <view class="qingdanLine" v-for="(item,index) in orderData">
- <view class="mainTitle">{{item.name}}</view>
-
- <view class="goodsItem" v-for="(v,i) in item.listGoodsAll">
- <view >
- <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
- <image src="../../static/img/noimg.png" mode="" class="goodsImg " v-else></image>
- </view>
- <view class="goodsItemRight" >
- <view class="goodsItemName">{{v.showName}}</view>
- <view class="goodsItemBottom">
- <view class="goodssalePrice">¥{{v.salePrice?v.salePrice:'-'}}</view>
- <view class="goodsNum">x{{v.qty}}</view>
- </view>
- </view>
- </view>
- <view class="goodsItem" v-for="(v,i) in item.listItem">
- <view>
- <image :src="v.picUrl" mode="" class="goodsImg" v-if="v.picUrl"></image>
- <image src="../../static/img/icon_xiangmu.png" mode="" class="goodsImg " v-else></image>
- </view>
- <view class="goodsItemRight" >
- <view class="goodsItemName">{{v.itemName}}</view>
- <view class="goodsItemBottom">
- <view class="goodssalePrice">¥{{v.salePrice?v.salePrice:'-'}}</view>
- <view class="goodsNum">x{{v.qty}}</view>
- </view>
- </view>
- </view>
- </view>
- <view class="ckBottom"></view>
- </scroll-view>
- </view>
-
- </view>
-
-
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- maintainCarData:'',
- shopData:'',
- mealData:'',
- leftIndex:0,
- total:0,
- qingdanShow:false,
- totalhj:0,
- goodsTotal:0,
- salePriceTotal:0,
- orderData:[],
- replaceIndex1:'',
- replaceIndex2:'',
- brand:'',
- isNull:true,
- csdata:'',
- }
- },
- onLoad(opt) {
- this.$common.isUserId()
- this.maintainCarData=uni.getStorageSync("maintainCarData");
- //console.log(this.maintainCarData)
- this.shopData=uni.getStorageSync("shopData");
- if(this.maintainCarData.milage==0){
- this.maintainCarData.milage='';
- }
- if (opt.brand) {
- this.brand = opt.brand
- }
- this.getData();
- },
- onShow() {
- var maintainCarData2=uni.getStorageSync("maintainCarData");
- if(this.maintainCarData.id!=maintainCarData2.id){
- this.maintainCarData=maintainCarData2;
- if(this.maintainCarData.milage==0){
- this.maintainCarData.milage='';
- }
- this.getData();
- }
- var replaceData=uni.getStorageSync("replaceData");
-
- if(replaceData){
- //replaceData.qty=1;
- console.log(replaceData)
-
- //this.mealData=JSON.parse(JSON.stringify(this.csdata))
- //console.log(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll.goodsList[this.replaceIndex2])
- this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].goodsList.unshift(replaceData)
- //console.log(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll.goodsList[this.replaceIndex2])
-
- this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].goodsList=this.unique(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].goodsList)
- this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].goodsList[0].del=false;
- //this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2]=replaceData
- //this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].goodsName='666'
- //console.log(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2])
-
- this.$forceUpdate()
- this.newData()
- }
-
- },
- methods: {
- unique(arr1) {
- const res = new Map();
- return arr1.filter((a) => !res.has(a.goodsID) && res.set(a.goodsID, 1))
- },
- upMileage(){
- this.getData();
- this.$http('worldKeepCar/worldHome/updateTMemberCarByHome', {
- id: this.maintainCarData.id,
- milage: this.maintainCarData.milage?this.maintainCarData.milage:0,
-
- }, 'POST').then(res => {
- uni.hideLoading();
- console.log(res);
- if (res.code == 0) {
- var cardata = uni.getStorageSync("maintainCarData")
-
- if (cardata) {
- cardata.milage = this.maintainCarData.milage
- uni.setStorage({
- key: 'maintainCarData',
- data: cardata,
- success: function () {
- }
- });
-
- }
-
- }
-
- })
-
- },
- // milageEditconfirm(){
- // this.getData();
- // var that=this;
- // for(let k in this.maintainCarData){this.maintainCarData[k] = this.maintainCarData[k]==null?'':this.maintainCarData[k]}
- // this.$http('miniAppMyBMemberCar/updateMemberCar',this.maintainCarData,'POST').then(res => {
- // uni.hideLoading();
- // uni.setStorage({
- // key: 'maintainCarData',
- // data: that.maintainCarData,
- // success: function () {
- // /* uni.navigateBack({
- // delta:1
- // }) */
-
- // }
- // });
-
- // })
- // },
- leftClick(item,index){
- this.leftIndex=index
- },
- listcheck(item,index){
- item.planItem=!item.planItem;
- //var
- console.log(this.mealData[this.leftIndex].listPackage[index].name)
- if(this.mealData[this.leftIndex].listPackage[index].name=='小保养服务'){
- this.calculation('大保养服务');
- }else if(this.mealData[this.leftIndex].listPackage[index].name=='大保养服务'){
- this.calculation('小保养服务');
- }else{
- this.calculation();
- }
- /* if(this.mealData[this.leftIndex].name=='小保养'){
- this.calculation('大保养');
- }else if(this.mealData[this.leftIndex].name=='大保养'){
- this.calculation('小保养');
- }else{
- this.calculation();
- } */
- if(item.planItem){
- /* this.orderData.push(item) */
- }
- },
- goGoods(item){
- /* uni.navigateTo({
- url:'../module/goodsDetail?goodsId='+item.goodsID+'&type=1'+'&typeIndex=2&maintain=1'
- }) */
- },
- empty(){
- var that=this;
- uni.showModal({
- title: '提示',
- content: '确定要清空清单吗',
- success: function (res) {
- if (res.confirm) {
- that.orderData=[];
- that.mealData.forEach(item=>{
- item.num=0;
- if(item.listPackage){
- item.listPackage.forEach(v=>{
- v.planItem=false
- })
- }
-
- })
- console.log(that.mealData)
- that.calculation();
- that.qingdanShow=false;
- }
-
- }
- });
-
- },
- calculation(txt){
- this.isNull=true
- this.total=0;
- this.totalhj=0;
- this.goodsTotal=0;
- this.salePriceTotal=0;
- this.orderData=[]
- this.mealData.forEach(v=>{
- v.num=0;
- v.listPackage.forEach(i=>{
- if(txt == i.name){
- i.planItem=false
- }
-
- })
-
- if(txt == v.name){
- console.log(v.name)
- /* if(v.listPackage){
- v.listPackage.forEach(i=>{
- i.planItem=false
- })
- } */
- }else{
- if(v.listPackage){
- v.listPackage.forEach(i=>{
- if(i.planItem){
- var obj={
- listGoodsAll:[],
- listItem:'',
- id:i.id,
- name:i.name
- }
- if(i.listGoodsAll.length>0){
- i.listGoodsAll.forEach((goods,goodsIndex)=>{
- console.log(goods.goodsGroupDetail)
- /* goods.forEach(sp=>{
- this.goodsTotal=Number(this.goodsTotal)
- this.goodsTotal+=sp.salePrice*sp.qty
- this.goodsTotal=this.goodsTotal.toFixed(2)
- })
- //goods[0].salePrice=1;*/
- this.goodsTotal=Number(this.goodsTotal)
- if(!isNaN(goods.goodsList[0].salePrice)){
- this.goodsTotal+=goods.goodsList[0].salePrice*goods.goodsList[0].qty
- this.goodsTotal=this.goodsTotal.toFixed(2)
-
- }else{
- this.isNull=false
- }
- if(goods.goodsList[0].salePrice==null){
- this.isNull=false
- }
- obj.listGoodsAll.push(goods.goodsList[0])
-
- })
-
- }
- if(i.listItem.length>0){
- obj.listItem=i.listItem
- }
- this.orderData.push(obj)
- v.num++;
- this.total++;
-
- i.listItem.forEach(xm=>{
- xm.qty=1;
- if(!isNaN(xm.salePrice)){
- this.salePriceTotal=Number(this.salePriceTotal)
- this.salePriceTotal+=xm.salePrice
- this.salePriceTotal=this.salePriceTotal.toFixed(2)
- }else{
- this.isNull=false
- }
- if(xm.salePrice==null){
- this.isNull=false
- }
- //xm.salePrice=1;
-
- })
- //this.totalhj
- }
- })
- }
- }
- //if(v.listPackage)
- })
- this.totalhj=Number(this.goodsTotal)+Number(this.salePriceTotal)
- this.totalhj=this.totalhj.toFixed(2)
- console.log(this.orderData)
- },
- reduce(v){
- console.log(v)
- if(v.qty>1){
- v.qty--;
- this.calculation()
- }else if(v.del){
- if(v.qty>0){
- v.qty--;
- this.calculation()
- }
-
- }
- },
- plus(v){
- v.qty++;
- this.calculation()
- },
- getData(){
- uni.showLoading({
- title: '加载中'
- })
- var location = uni.getStorageSync("locationCity");
- var selectCity = uni.getStorageSync("selectCity");
- var cityCode=''
- if(selectCity){
- cityCode=selectCity.code
- }else{
- cityCode=location.cityCode
- }
- this.$http('miniApp/tPackageMiniAppController/queryPackageList', {
- mileage:this.maintainCarData.milage,
- liyangId:this.maintainCarData.nLevelID,
- cityCode:cityCode,
- guidePrice:this.maintainCarData.guidePrice?this.maintainCarData.guidePrice:0,
- },'GET').then(res => {
- console.log(res)
- // this.csdata=JSON.parse(JSON.stringify(res.data))
- uni.hideLoading();
- if(res.code==1){
- uni.showModal({
- title: '提示',
- content: res.msg,
- showCancel:false,
- success: function (res) {
-
- }
- });
- }
- res.data.forEach(item=>{
- //console.log(item)
- item.listPackage.forEach((list,i)=>{
- if(list.listGoodsAll.length>0){
- list.listGoodsAll.forEach((goods,index)=>{
- var brandName=goods.goodsList[0].brandName
- var newtp=[];
- goods.goodsGroupDetail.forEach(tgoods=>{
- if(brandName==tgoods.brandName){
- newtp.push(tgoods)
- }
- })
- goods.goodsGroupDetail=newtp
- /* console.log("同品组")
- console.log(goods.goodsGroupDetail) */
-
- if(goods.goodsGroupDetail.length==0){
- //同组品为空的情况
- var referenceDosageQty=Number(list.referenceDosageQty)
- referenceDosageQty=Math.ceil(referenceDosageQty)
- if(goods.goodsList[0].capacity&&!goods.goodsList[0].del){
- console.log(list.name+"??==="+referenceDosageQty/goods.goodsList[0].capacity)
- if(referenceDosageQty/goods.goodsList[0].capacity>1){
- var qtynum1=referenceDosageQty-goods.goodsList[0].capacity
- var qtynum2=Math.ceil(qtynum1/goods.goodsList[0].capacity)
-
- goods.goodsList.splice(300);
- var addArrnt=JSON.parse(JSON.stringify(goods.goodsList))
- //console.log(addArrnt[0])
- addArrnt[0].qty=qtynum2;
- addArrnt[0].gh=true
- var addDta={
- goodsGroupDetail:[],
- goodsList:addArrnt
- }
-
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
- //addDta.splice(1,0)
- console.log(addDta)
- var add=JSON.parse(JSON.stringify(addDta))
- list.listGoodsAll.splice(index+1, 0,add)
-
- }
- }
- }else{
- //同组品不为空的情况
- //console.log("同组品不为空的情况 ")
- //debugger;
- var remainder=0;
- var addNum=index
- console.log("list.referenceDosageQty - "+list.referenceDosageQty+list.name)
- var referenceDosageQty=Number(list.referenceDosageQty)
- //var addArr= goods.goodsList
- referenceDosageQty=Math.ceil(referenceDosageQty)
- goods.goodsList.splice(300);
-
- if(list.referenceDosageQty&&!goods.goodsList[0].del){
-
- goods.goodsGroupDetail.forEach((tgoods,tindex)=>{
- var addArr=JSON.parse(JSON.stringify(goods.goodsList))
-
- if(tindex==0){
- console.log(tgoods.brandName)
- if(tgoods.capacity){
- if(referenceDosageQty>tgoods.capacity||referenceDosageQty==tgoods.capacity){
- if(goods.goodsGroupDetail.length==1){
- //console.log("referenceDosageQty>tgoods.capacity")
- var parseIntNum=parseInt(referenceDosageQty/tgoods.capacity)
- //console.log("parseIntNum--"+parseIntNum)
- tgoods.qty=parseIntNum+1
- addArr.unshift(tgoods)
- var reduce= tgoods.capacity*parseIntNum
- referenceDosageQty=referenceDosageQty - reduce
- var addDta={
- //goodsGroupDetail:[],
- goodsGroupDetail:goods.goodsGroupDetail,
- goodsList:addArr,
- del:true,
- }
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
-
- list.listGoodsAll.splice(index, 1,addDta)
- }else{
- //console.log("referenceDosageQty>tgoods.capacity")
- var parseIntNum=parseInt(referenceDosageQty/tgoods.capacity)
- //console.log("parseIntNum--"+parseIntNum)
- tgoods.qty=parseIntNum
- addArr.unshift(tgoods)
- var reduce= tgoods.capacity*parseIntNum
- referenceDosageQty=referenceDosageQty - reduce
- var addDta={
- //goodsGroupDetail:[],
- goodsGroupDetail:goods.goodsGroupDetail,
- goodsList:addArr,
- del:true,
- }
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
-
- list.listGoodsAll.splice(index, 1,addDta)
- }
-
- }else{
- console.log("推荐大于容量")
- if(goods.goodsGroupDetail.length==1){
- console.log("同组品 一个")
- addArr.unshift(tgoods)
- referenceDosageQty=referenceDosageQty-tgoods.capacity
- var addDta={
- //goodsGroupDetail:[],
- goodsGroupDetail:goods.goodsGroupDetail,
- goodsList:addArr,
- del:true,
- }
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
-
- list.listGoodsAll.splice(index, 1,addDta)
- }else{
- list.listGoodsAll.splice(index, 1)
- }
-
- }
- }else{
- addArr.unshift(tgoods)
- var addDta={
- //goodsGroupDetail:[],
- goodsGroupDetail:goods.goodsGroupDetail,
- goodsList:addArr,
- del:true,
- }
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
-
- list.listGoodsAll.splice(index, 1,addDta)
- }
-
-
-
-
- }else{
- if(goods.goodsGroupDetail[0].capacity){
-
- if(referenceDosageQty>0){
- console.log('referenceDosageQty'+referenceDosageQty)
- console.log(tgoods)
- /* remainder=Number(referenceDosageQty)%tgoods.capacity
-
- if(remainder>1){
- addArr.unshift(tgoods)
- }
- referenceDosageQty=referenceDosageQty-tgoods.capacity */
- if(referenceDosageQty>tgoods.capacity){
- var parseIntNum=parseInt(referenceDosageQty/tgoods.capacity)
-
- var reduce= tgoods.capacity*parseIntNum
- if(goods.goodsGroupDetail.length==tindex+1){
- var a=referenceDosageQty - reduce
- if(a>0){
- parseIntNum++
- }
- }
- tgoods.qty=parseIntNum
- addArr.unshift(tgoods)
- //addArr[0].gh=true
- referenceDosageQty=referenceDosageQty - reduce
- var addDta={
- //goodsGroupDetail:[],
- goodsGroupDetail:goods.goodsGroupDetail,
- goodsList:addArr,
- del:true,
-
- tpn:true,
- }
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
- //console.log(addArr)
- if(tindex==0){
- // console.log(addDta.goodsList[0])
- //list.listGoodsAll.splice(index, 1,addDta)
- //console.log(list.listGoodsAll[index])
- }else{
- addNum++
- console.log('addNum=='+addNum)
- //console.log(addDta.goodsList[0])
- list.listGoodsAll.splice(addNum, 0,addDta)
- }
- }else{
- if(goods.goodsGroupDetail.length==tindex+1){
- addArr.unshift(tgoods)
- //addArr[0].gh=true
- referenceDosageQty=referenceDosageQty-tgoods.capacity
- var addDta={
- //goodsGroupDetail:[],
- goodsGroupDetail:goods.goodsGroupDetail,
- goodsList:addArr,
- del:true,
- tpn:true,
- //gh:true,
- }
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
- //console.log(addArr)
- if(tindex==0){
- // console.log(addDta.goodsList[0])
- //list.listGoodsAll.splice(index, 1,addDta)
- //console.log(list.listGoodsAll[index])
- }else{
- addNum++
- console.log('addNum=='+addNum)
- //console.log(addDta.goodsList[0])
- list.listGoodsAll.splice(addNum, 0,addDta)
- }
- }
-
- }
-
-
- }
-
-
- }
-
-
- }
-
-
- } )
-
- }
- }
-
- })
-
- }
- })
- })
- this.mealData=res.data;
- this.mealData.splice(1,0)
- //debugger;
- console.log("第一次的数据")
- console.log(this.mealData)
- this.calculation();
- })
- },
-
- newData(){
-
- var replaceData=uni.getStorageSync("replaceData");
- var location = uni.getStorageSync("locationCity");
- var selectCity = uni.getStorageSync("selectCity");
- var cityCode=''
- if(selectCity){
- cityCode=selectCity.code
- }else{
- cityCode=location.cityCode
- }
- var params={
- mileage:this.maintainCarData.milage,
- liyangId:this.maintainCarData.nLevelID,
- cityCode:cityCode,
- guidePrice:this.maintainCarData.guidePrice?this.maintainCarData.guidePrice:0,
- goodsID:replaceData.goodsID,
- itemID:replaceData.itemID,
- packageID:replaceData.packageID,
- packageGoodsGroupID:replaceData.packageGoodsGroupID,
- }
- uni.showLoading({ });
- var arr=[]
- this.$http('miniApp/tPackageMiniAppController/queryTGoodsGroupDetailForApp', params,'GET').then(res => {
- uni.hideLoading();
- if(res.data.length>0){
- res.data.forEach(item=>{
- if(item.brandName==replaceData.brandName){
- arr.push(item)
- }
- })
- arr.forEach((item,index)=>{
- if(item.goodsID==replaceData.goodsID){
- arr.splice(index, 1)
- }
- })
-
- arr.unshift(replaceData)
- }
-
- console.log("处理的同品组")
- console.log(arr)
- // debugger;
- var packageGoodsGroupID=this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].goodsList[0].packageGoodsGroupID
- this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll.forEach(item=>{
- if(packageGoodsGroupID==item.goodsList[0].packageGoodsGroupID){
- item.tpn=true
- }
-
- })
- this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].tpn=false;
- this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].goodsGroupDetail=arr
- this.mealData.splice(1,0)
- console.log("this.leftIndex"+this.leftIndex+'--'+this.replaceIndex1+'--'+this.replaceIndex2)
- console.log(this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2])
- console.log(this.mealData)
- this.chulidata()
-
- })
-
-
-
- },
- chulidata(){
- //debugger;
- this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].goodsList.forEach((item,index)=>{
- if(item.gh){
- this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll[this.replaceIndex2].goodsList.splice(index, 1)
- }
- })
-
- this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll.forEach((item,index)=>{
- if(item.tpn){
- this.mealData[this.leftIndex].listPackage[this.replaceIndex1].listGoodsAll.splice(index, 1)
- }
- })
-
-
- this.mealData.forEach((item,index1)=>{
- item.listPackage.forEach((list,i)=>{
- list.listGoodsAll.forEach((goods,index)=>{
- goods.goodsGroupDetail.forEach(tgoods=>{
- tgoods.del=false;
-
- })
- goods.goodsList[0].del=false;
- if(goods.tpn){
- list.listGoodsAll.splice(index, 1)
- }
- })
- })
- })
- console.log("重新初始化数据")
- console.log(this.mealData)
- this.mealData.forEach(item=>{
- //console.log(item)
- item.listPackage.forEach((list,i)=>{
- if(list.listGoodsAll.length>0){
- console.log(list.name)
- list.listGoodsAll.forEach((goods,index)=>{
- var brandName=goods.goodsList[0].brandName
- var newtp=[];
- goods.goodsGroupDetail.forEach(tgoods=>{
- //tgoods.del=false;
- if(brandName==tgoods.brandName){
- newtp.push(tgoods)
- }
- })
- goods.goodsGroupDetail=newtp
- /* console.log("同品组")
- console.log(goods.goodsGroupDetail) */
-
- if(goods.goodsGroupDetail.length==0){
- //同组品为空的情况
- console.log("同组品为空的情况")
- var referenceDosageQty=Number(list.referenceDosageQty)
- referenceDosageQty=Math.ceil(referenceDosageQty)
- if(Number.isInteger(referenceDosageQty/goods.goodsList[0].capacity)){
- goods.goodsList[0].qty=referenceDosageQty/goods.goodsList[0].capacity
- }else
- if(goods.goodsList[0].capacity>0&&!goods.goodsList[0].del){
- goods.goodsList.forEach((newGoods,newindex)=>{
- var qtynum1=referenceDosageQty-newGoods.capacity
- var qtynum2=Math.ceil(qtynum1/newGoods.capacity)
- console.log("qtynum2=="+qtynum2)
- if(newindex==0&&!goods.goodsList[0].del){
- console.log("??sdsaf")
- goods.goodsList[0].qty=qtynum2;
- goods.goodsList[0].del=true;
- referenceDosageQty=referenceDosageQty-(qtynum2*newGoods.capacity)
- }else if(newindex!=0&&!newGoods.del){
- if(referenceDosageQty>0){
- //var qtynum4=referenceDosageQty-newGoods.capacity
- var qtynum3=Math.ceil(referenceDosageQty/newGoods.capacity)
- referenceDosageQty=referenceDosageQty-(qtynum3*newGoods.capacity)
- var addArrnt=JSON.parse(JSON.stringify(goods.goodsList))
-
- addArrnt[0].qty=qtynum3;
-
- var addDta={
- goodsGroupDetail:[],
- goodsList:addArrnt
- }
-
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
-
- console.log(addDta)
- var add=JSON.parse(JSON.stringify(addDta))
- list.listGoodsAll.splice(index+1, 0,add)
- //if(addArrnt[0].)
- }
-
- }
- })
- /* if(referenceDosageQty/goods.goodsList[0].capacity>1){
- var qtynum1=referenceDosageQty-goods.goodsList[0].capacity
- var qtynum2=Math.ceil(qtynum1/goods.goodsList[0].capacity)
- console.log("qtynum2=="+qtynum2)
-
- goods.goodsList.splice(300);
- var addArrnt=JSON.parse(JSON.stringify(goods.goodsList))
-
- addArrnt[0].qty=qtynum2;
-
- var addDta={
- goodsGroupDetail:[],
- goodsList:addArrnt
- }
-
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
-
- console.log(addDta)
- var add=JSON.parse(JSON.stringify(addDta))
- list.listGoodsAll.splice(index+1, 0,add)
-
- } */
- }
- }else{
- //同组品不为空的情况
- //console.log("同组品不为空的情况 ")
- var remainder=0;
- var addNum=index
- console.log("list.referenceDosageQty - "+list.referenceDosageQty+list.name)
- var referenceDosageQty=Number(list.referenceDosageQty)
- //var addArr= goods.goodsList
- referenceDosageQty=Math.ceil(referenceDosageQty)
- goods.goodsList.splice(300);
- console.log("referenceDosageQty---"+referenceDosageQty + "goods.goodsList[0].del---" +goods.goodsList[0].del)
- if(list.referenceDosageQty&&!goods.goodsList[0].del){
-
- goods.goodsGroupDetail.forEach((tgoods,tindex)=>{
- var addArr=JSON.parse(JSON.stringify(goods.goodsList))
- //debugger;
- if(tindex==0){
- console.log(tgoods.brandName)
- if(tgoods.capacity){
- if(referenceDosageQty>tgoods.capacity||referenceDosageQty==tgoods.capacity){
- if(goods.goodsGroupDetail.length==1){
- //console.log("referenceDosageQty>tgoods.capacity")
- var parseIntNum=parseInt(referenceDosageQty/tgoods.capacity)
- //console.log("parseIntNum--"+parseIntNum)
- tgoods.qty=parseIntNum+1
- addArr.unshift(tgoods)
- var reduce= tgoods.capacity*parseIntNum
- referenceDosageQty=referenceDosageQty - reduce
- var addDta={
- //goodsGroupDetail:[],
- goodsGroupDetail:goods.goodsGroupDetail,
- goodsList:addArr,
- del:true,
- }
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
-
- list.listGoodsAll.splice(index, 1,addDta)
- }else{
-
- //console.log("referenceDosageQty>tgoods.capacity")
- var parseIntNum=parseInt(referenceDosageQty/tgoods.capacity)
- //console.log("parseIntNum--"+parseIntNum)
- tgoods.qty=parseIntNum
- /* if(tgoods.capacity==1){
- tgoods.qty=tgoods.qty+1
- } */
- addArr.unshift(tgoods)
- var reduce= tgoods.capacity*parseIntNum
- referenceDosageQty=referenceDosageQty - reduce
- var addDta={
- //goodsGroupDetail:[],
- goodsGroupDetail:goods.goodsGroupDetail,
- goodsList:addArr,
- del:true,
- }
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
-
- list.listGoodsAll.splice(index, 1,addDta)
- }
-
- }else{
- console.log("推荐大于容量")
- if(goods.goodsGroupDetail.length==1){
- console.log("同组品 一个")
- addArr.unshift(tgoods)
- referenceDosageQty=referenceDosageQty-tgoods.capacity
- var addDta={
- //goodsGroupDetail:[],
- goodsGroupDetail:goods.goodsGroupDetail,
- goodsList:addArr,
- del:true,
- }
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
-
- list.listGoodsAll.splice(index, 1,addDta)
- }else{
- list.listGoodsAll.splice(index, 1)
- }
-
- }
- }else{
- addArr.unshift(tgoods)
- var addDta={
- //goodsGroupDetail:[],
- goodsGroupDetail:goods.goodsGroupDetail,
- goodsList:addArr,
- del:true,
- }
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
-
- list.listGoodsAll.splice(index, 1,addDta)
- }
-
-
-
-
- }else{
- if(goods.goodsGroupDetail[0].capacity){
-
- if(referenceDosageQty>1||referenceDosageQty==1){
- console.log('referenceDosageQty'+referenceDosageQty)
- console.log(tgoods)
- /* remainder=Number(referenceDosageQty)%tgoods.capacity
-
- if(remainder>1){
- addArr.unshift(tgoods)
- }
- referenceDosageQty=referenceDosageQty-tgoods.capacity */
- if(referenceDosageQty>tgoods.capacity){
- var parseIntNum=parseInt(referenceDosageQty/tgoods.capacity)
-
- var reduce= tgoods.capacity*parseIntNum
- if(goods.goodsGroupDetail.length==tindex+1){
- var a=referenceDosageQty - reduce
- if(a>0){
- parseIntNum++
- }
- }
- tgoods.qty=parseIntNum
- addArr.unshift(tgoods)
- referenceDosageQty=referenceDosageQty - reduce
- var addDta={
- //goodsGroupDetail:[],
- goodsGroupDetail:goods.goodsGroupDetail,
- goodsList:addArr,
- del:true,
- tpn:true,
- }
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
- //console.log(addArr)
- if(tindex==0){
- // console.log(addDta.goodsList[0])
- //list.listGoodsAll.splice(index, 1,addDta)
- //console.log(list.listGoodsAll[index])
- }else{
- addNum++
- console.log('addNum=='+addNum)
- //console.log(addDta.goodsList[0])
- list.listGoodsAll.splice(addNum, 0,addDta)
- }
- }else{
- if(goods.goodsGroupDetail.length==tindex+1){
- addArr.unshift(tgoods)
- referenceDosageQty=referenceDosageQty-tgoods.capacity
- var addDta={
- //goodsGroupDetail:[],
- goodsGroupDetail:goods.goodsGroupDetail,
- goodsList:addArr,
- del:true,
- tpn:true,
- }
- addDta.goodsList.forEach(add=>{
- add.del=true;
- })
- //console.log(addArr)
- if(tindex==0){
- // console.log(addDta.goodsList[0])
- //list.listGoodsAll.splice(index, 1,addDta)
- //console.log(list.listGoodsAll[index])
- }else{
- addNum++
- console.log('addNum=='+addNum)
- //console.log(addDta.goodsList[0])
- list.listGoodsAll.splice(addNum, 0,addDta)
- }
- }
-
- }
-
-
- }
-
-
- }
-
-
- }
-
-
- } )
-
- }
- }
-
- })
-
- }
- })
- })
-
- this.mealData.splice(1,0)
- console.log("处理数据")
- console.log(this.mealData)
- this.calculation();
- },
- handbook(){
- uni.navigateTo({
- url:'handbook?mileage'+this.maintainCarData.milage+'&liyangId='+this.maintainCarData.nLevelID
- })
- },
- settlement(){
- if(!this.isNull){
- uni.showToast({
- title: '您选择的有未设置价格的商品,请重新选择',
- icon:'none',
- duration: 5000
- });
- return false;
- }
- console.log(this.orderData)
- //return false;
- uni.removeStorageSync('couponData');
- if(this.orderData.length>0){
- /* uni.navigateTo({
- url:'confirmOrder?orderData='+JSON.stringify(this.orderData)+'¤tMileage='+this.maintainCarData.milage
- }) */
- uni.navigateTo({
- url:'orderShop?orderData='+JSON.stringify(this.orderData)+'¤tMileage='+this.maintainCarData.milage+'&brand='+this.brand
- })
- }
-
- },
- replace(v,index,i,replaceIndex){
- //v.splice(replaceIndex, 1)
- console.log(v)
- console.log(replaceIndex)
- v.goodsList.forEach((item,vindex)=>{
- if(replaceIndex==vindex){
- item.showr=false
- }else{
- item.showr=true
- }
- })
- uni.removeStorageSync('replaceData');
- this.replaceIndex1=index;
- this.replaceIndex2=i;
- uni.setStorage({
- key: 'replaceDataList',
- data: v,
- success: function () {
- uni.navigateTo({
- url:'replaceGoods'
- })
- }
- });
-
- },
- caidanClick(){
- this.qingdanShow=!this.qingdanShow
- },
- milageEdit(){
- this.maintainCarData.milage=''
- },
- carEdit(){
- uni.navigateTo({
- url:'../index/cailist?type=2'
-
- })
- }
- }
- }
- </script>
- <style scoped>
-
- .caidanTk{
- height: calc(100vh );
- width: 100vw;
- background: rgba(0,0,0,0.6);
- position:fixed;
- left: 0;
- top: 0;
-
- }
- .tkCont{
- height: 70vh;
- /* margin-top: calc(40vh ); */
- position: absolute;
- left: 0;
- bottom: 0;
- }
- .caidanTkTop{
- width: 750rpx;
- height: 90rpx;
- background: #FFFFFF;
- border-radius: 24rpx 24rpx 0px 0px;
- }
- .caidanTkTop{
- display: flex;justify-content: space-between;
- }
- .topTopright{
- display: flex;
- padding-top: 29rpx;
-
- }
- .tkTopTitle{
- line-height: 90rpx;
- font-size: 30rpx;
- font-weight: 600;
- color: #3C3C3C;
- padding-left: 24rpx;
- }
- .empty{
- width: 86rpx;
- height: 42rpx;
- background: #EEEEEE;
- border-radius: 21rpx;
- text-align: center;
- color: #666666;
- font-size: 24rpx;
- line-height: 42rpx;
-
- }
- .close{
- color: #999999;
- font-size: 30rpx;
- padding-right: 30rpx;
- padding-left: 24rpx;
- }
- .tkMain{
-
- background: #F0F0F0;
- height: calc(70vh - 90rpx);
- }
- .tkMainSv{
- padding: 0 24rpx;
- width: 702rpx;
- height: calc(70vh - 150rpx);
-
- }
- .goodsItemRight{
- width: 520rpx;
- padding-left: 20rpx;
- display: flex;
- flex-direction:column;
- justify-content: space-between;
- }
- .goodsItemBottom{
- display: flex;
- justify-content: space-between;
- }
-
- .goodssalePrice{
- font-size: 32rpx;font-weight: 500;color: #FF4F00;
- }
- .goodsNum{
- font-size: 24rpx;font-weight: 400;color: #999999;
- }
- .top{
- background: #FF4F00;
- display: flex;
- justify-content: space-between;
- padding: 30rpx 25rpx;
- font-size: 28rpx;
- color: #FFFFFF;
- }
- .goodsItem{
- display: flex;
- padding: 15rpx 0;
- }
- .qingdanLine{
- background: #FFFFFF;
- margin-top: 20rpx;
- padding: 24rpx 20rpx;
- border-radius: 10rpx;
- }
- .brandLogo{
- width: 42rpx;
- height: 42rpx;
- padding: 0 10rpx;
- }
- .topLeft{
- display: flex;
- align-content: center;
- }
- .carName{
- width: 61%;
- }
- .topEdit{
- width: 22rpx;
- height: 22rpx;
- padding: 10rpx;
- }
- .topRight{
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .topInput{
- font-size: 28rpx;
- color: #FFFFFF;
- text-align: right;
- padding-top: 3rpx;
- width: 70%;
- }
- .maintainrecommend{
- padding: 30rpx 24rpx;
- display: flex;
- justify-content: space-between;
- border-bottom: 2rpx solid #EEEEEE;
- }
- .recommendTxt{
- color: #3C3C3C;
- font-size: 30rpx;
- font-weight: 600;
- }
- .manual{
- width: 119rpx;
- height: 40rpx;
- border-radius: 20rpx;
- border: 2rpx solid #F19D01;
- text-align: center;
- line-height: 40rpx;
- font-size: 22rpx;
- color: #F19D01;
- }
- .bottom{
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100vw;
- height: 120rpx;
- background: #FFFFFF;
- box-shadow: 0px -2px 20px 0px rgba(153, 153, 153, 0.2);
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- box-sizing: content-box;
- z-index: 11;
- }
- .ckBottom{
- width: 100vw;
- height: 120rpx;
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- box-sizing: content-box;
- }
- .main{
- display: flex;
- height: calc(100vh - 410rpx);
- }
- .mainscrollView{
- height: calc(100vh - 410rpx);
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- box-sizing: content-box;
- margin-bottom: 120rpx;
- }
- /* #ifdef MP-WEIXIN */
- .main{
- display: flex;
- height: calc(100vh - 310rpx);
- }
- .mainscrollView{
- height: calc(100vh - 310rpx);
- }
- /* #endif */
- .mainLeft{
- width: 146rpx;
- background: #F5F5F5;
- }
- .mainRight{
- width: 604rpx;
- }
- .mainLeftLine{
- color: #3C3C3C;
- padding: 30rpx 20rpx;
- font-size: 24rpx;
- text-align: center;
- position: relative;
- }
- .lineNum{
- position: absolute;
- background: #FF270A;
- width: 40rpx;
- height: 26rpx;
- text-align: center;
- line-height: 26rpx;
- font-size: 20rpx;
- color: #FFFFFF;
- border-radius: 13rpx;
- top: 10rpx;
- right: 10rpx;
- }
- .lineLeftActive{
- background: #FFFFFF;
- }
- .nock{
- width: 22rpx;
- height: 22rpx;
- border-radius: 50%;
- border:2px solid #AEAEAE;
- margin-top: 2rpx;
- margin-right: 10rpx;
- }
- .imgPrivacy{
- width: 36rpx;
- height: 36rpx;
- /* margin-top: 2rpx; */
- /* margin-right: 10rpx; */
- }
- .contTopRight{
- display: flex;
- align-items: center;
- width: 38rpx;
- height: 36rpx;
- margin-right: 10rpx;
- }
- .mainRightLine{
- padding: 20rpx 20rpx 0 20rpx;
-
- }
- .contTop{
- display: flex;
- justify-content: space-between;
- }
- .listPackgeName{
- font-size: 26rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 600;
- color: #3C3C3C;
- }
- .listPackgeMs{
- font-size: 22rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #999999;
- padding-top: 5rpx;
- line-height: 30rpx;
- }
- .contZk{
- border-bottom: 1px solid #EEEEEE;
- padding-bottom: 20rpx;
- }
- .goodsImg{
- width: 120rpx;
- height: 120rpx;
-
- border-radius: 11rpx;
- }
- .goodsItemLIne{
- display: flex;
- padding-top: 20rpx;
- padding-bottom: 20rpx;
- }
- .goodsCont{
- display: flex;
- flex-direction:column;
- justify-content: space-between;
- padding-left: 20rpx;
- }
- .goodsContTop{
- display: flex;
- justify-content: space-between;
- width: 400rpx;
- }
- .goodsItemName{
- font-size: 26rpx;
- font-weight: 400;
- color: #3C3C3C;
- width: 78%;
-
- }
- .salePrice{
- font-size: 32rpx;
- font-weight: 500;
- color: #FF4F00;
- }
- .replaceBox{
- width: 100rpx;
- }
- .replace{
- width: 75rpx;
- height: 37rpx;
- border-radius: 19rpx;
- border: 2rpx solid #B9B9B9;
- text-align: center;
- line-height: 35rpx;
- color: #707070;
- font-size: 22rpx;
- margin-left: 25rpx;
- }
- .contZkMain{
- padding-top: 20rpx;
- }
- .asa{
- width: 44rpx;
- height: 44rpx;
- line-height: 44rpx;
- text-align: center;
- background: #F4F5F7;
- font-size: 30rpx;
- }
- .goodsCOntBOttom{
- display: flex;
- justify-content: space-between;
- }
- .as{
- display: flex;
-
- }
- .goodsPrice{
- display: flex;justify-content: space-between;
- padding-top: 10rpx;
- }
- .goodsPriceNum{
- color: #F8F8F8;
- font-size: 28rpx;
- }
- .asNum{
- font-size: 24rpx;color: #333333;
- padding: 0 18rpx;
- height: 44rpx;
- line-height: 44rpx;
- background: #F4F5F7;
- margin-left: 1px;
- margin-right: 1px;
- }
- .itemNum{
- font-size: 24rpx;
- font-weight: 400;
- color: #999999;
- }
- .bottom{
- display: flex;
- justify-content: space-between;
- }
- .caidanImg{
- width: 50rpx;
- height: 50rpx;
- }
- .bottomLeft{
- display: flex;
- }
- .caidan{
- padding-left: 33rpx;
- padding-top: 35rpx;
- padding-right: 33rpx;
- position: relative;
- }
- .total{
- position: absolute;
- width: 40rpx;
- height: 26rpx;
- background: #FF270A;
- line-height: 26rpx;
- text-align: center;
- color: #FFFFFF;
- font-size: 20rpx;
- top: 25rpx;
- right: 15rpx;
- border-radius: 13rpx;
- }
- .heji1{
- font-size: 24rpx;
- font-weight: 500;
- color: #666666;
- }
- .hejiNum{
- font-size: 32rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FF4F00;
- }
- .hejiMs{
- font-size: 24rpx;
- padding-top: 5rpx;
- color: #999999;
- }
- .heji{
- padding-top: 23rpx;
- }
- .settlement{
- width: 203rpx;
- height: 74rpx;
- background: #FF4F00;
- border-radius: 37rpx;
- text-align: center;
- line-height: 74rpx;
- font-size: 30rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FEFFFE;
- margin-top: 23rpx;
- margin-right: 32rpx;
- }
- .nodataImg{
- width: 400rpx;
- padding-top: 100rpx;
- }
- .noTxt{
- font-size: 36rpx;
- color: #999999;
- padding-top: 50rpx;
- }
- .nodataBox{
- text-align: center;
- }
- </style>
|