|
@@ -7,7 +7,7 @@
|
|
<image src="../../static/img/icon_edit.png" mode="" class="topEdit" @click="carEdit"></image>
|
|
<image src="../../static/img/icon_edit.png" mode="" class="topEdit" @click="carEdit"></image>
|
|
</view>
|
|
</view>
|
|
<view class="topRight">
|
|
<view class="topRight">
|
|
- <input type="text" v-model="maintainCarData.milage" @confirm="milageEditconfirm" value="" placeholder="请输入当前里程" class="topInput" placeholder-style="color:#ffffff;"/>
|
|
|
|
|
|
+ <input type="number" v-model="maintainCarData.milage" @confirm="milageEditconfirm" value="" placeholder="请输入当前里程" class="topInput" placeholder-style="color:#ffffff;"/>
|
|
<image src="../../static/img/icon_edit.png" mode="" class="topEdit" @click="milageEdit"></image>
|
|
<image src="../../static/img/icon_edit.png" mode="" class="topEdit" @click="milageEdit"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -225,7 +225,6 @@ export default {
|
|
for(let k in this.maintainCarData){this.maintainCarData[k] = this.maintainCarData[k]==null?'':this.maintainCarData[k]}
|
|
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 => {
|
|
this.$http('miniAppMyBMemberCar/updateMemberCar',this.maintainCarData,'POST').then(res => {
|
|
uni.hideLoading();
|
|
uni.hideLoading();
|
|
-
|
|
|
|
uni.setStorage({
|
|
uni.setStorage({
|
|
key: 'maintainCarData',
|
|
key: 'maintainCarData',
|
|
data: that.maintainCarData,
|
|
data: that.maintainCarData,
|
|
@@ -299,12 +298,12 @@ export default {
|
|
}
|
|
}
|
|
if(i.listGoodsAll.length>0){
|
|
if(i.listGoodsAll.length>0){
|
|
i.listGoodsAll.forEach((goods,goodsIndex)=>{
|
|
i.listGoodsAll.forEach((goods,goodsIndex)=>{
|
|
- /* goods.forEach(sp=>{
|
|
|
|
|
|
+ goods.forEach(sp=>{
|
|
this.goodsTotal=Number(this.goodsTotal)
|
|
this.goodsTotal=Number(this.goodsTotal)
|
|
this.goodsTotal+=sp.salePrice*sp.qty
|
|
this.goodsTotal+=sp.salePrice*sp.qty
|
|
this.goodsTotal=this.goodsTotal.toFixed(2)
|
|
this.goodsTotal=this.goodsTotal.toFixed(2)
|
|
- }) */
|
|
|
|
- goods[0].salePrice=1;
|
|
|
|
|
|
+ })
|
|
|
|
+ //goods[0].salePrice=1;
|
|
this.goodsTotal=Number(this.goodsTotal)
|
|
this.goodsTotal=Number(this.goodsTotal)
|
|
this.goodsTotal+=goods[0].salePrice*goods[0].qty
|
|
this.goodsTotal+=goods[0].salePrice*goods[0].qty
|
|
this.goodsTotal=this.goodsTotal.toFixed(2)
|
|
this.goodsTotal=this.goodsTotal.toFixed(2)
|
|
@@ -323,7 +322,7 @@ export default {
|
|
|
|
|
|
i.listItem.forEach(xm=>{
|
|
i.listItem.forEach(xm=>{
|
|
xm.qty=1;
|
|
xm.qty=1;
|
|
- xm.salePrice=1;
|
|
|
|
|
|
+ //xm.salePrice=1;
|
|
this.salePriceTotal=Number(this.salePriceTotal)
|
|
this.salePriceTotal=Number(this.salePriceTotal)
|
|
this.salePriceTotal+=xm.salePrice
|
|
this.salePriceTotal+=xm.salePrice
|
|
this.salePriceTotal=this.salePriceTotal.toFixed(2)
|
|
this.salePriceTotal=this.salePriceTotal.toFixed(2)
|