|
|
@@ -169,10 +169,14 @@
|
|
|
<view class="under-bar">
|
|
|
<view class="price-view">
|
|
|
<text class="price-title">
|
|
|
- <text>实际金额</text>
|
|
|
+ <text>金额</text>
|
|
|
</text>
|
|
|
<text class="price-number">¥<text class="large">{{ modifyPrice }}</text></text>
|
|
|
</view>
|
|
|
+ <text style="font-size:30upx;right:100upx;">
|
|
|
+ 当前在
|
|
|
+ <text v-if="currentShop && currentShop.default != 1"
|
|
|
+ style="font-weight:bold;color:red;margin-left:6upx;font-size:38upx;">{{currentShop.shopName}}</text></text>
|
|
|
<button class="admin-button-com blue big" @click="confirmSubmit">提交</button>
|
|
|
</view>
|
|
|
|
|
|
@@ -275,7 +279,8 @@ export default {
|
|
|
modifyPrice:'',
|
|
|
isScanEnv:false,
|
|
|
calc:'add',
|
|
|
- diffPriceList:[]
|
|
|
+ diffPriceList:[],
|
|
|
+ currentShop:{default:0}
|
|
|
};
|
|
|
},
|
|
|
onLoad (option) {
|
|
|
@@ -288,6 +293,8 @@ export default {
|
|
|
uni.setNavigationBarTitle({ title: data.name })
|
|
|
that.form.packCost = data.shopInfo.packCost?parseFloat(data.shopInfo.packCost):0
|
|
|
|
|
|
+ that.currentShop = data.shopInfo
|
|
|
+
|
|
|
})
|
|
|
|
|
|
//默认出车
|