|
@@ -64,7 +64,9 @@
|
|
|
<view class="item-detail-text flex_1" v-if="item.affiliation=='SUPER_CATALOGUE'">
|
|
|
<view v-if="showPrice[0]">
|
|
|
<text class="item-price" v-if="showPrice[1]!='PURCHASES_PRICE'">¥{{item.price||0}}</text>
|
|
|
- <text class="item-price" v-else></text>
|
|
|
+ <text class="item-price" v-else>
|
|
|
+ {{showPrice[2]?(item.cost||''):(isAdmin?(item.cost||''):'')}}
|
|
|
+ </text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="item-detail-text" v-if="item.currentInven">
|
|
@@ -156,7 +158,7 @@
|
|
|
<u-image width="44" height="44" :src="`/static/icon_shopping@3x.png`"></u-image>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <view v-if="showPrice[1]=='CAR_OWNER_PRICE'&&totalAmount">
|
|
|
+ <view v-if="showPrice[0]&&showPrice[1]=='CAR_OWNER_PRICE'&&totalAmount">
|
|
|
合计:<text>¥{{totalAmount}}</text>
|
|
|
</view>
|
|
|
<div>
|
|
@@ -190,7 +192,9 @@
|
|
|
<view class="item-detail-text flex_1" v-if="item.affiliation=='SUPER_CATALOGUE'">
|
|
|
<view v-if="showPrice[0]">
|
|
|
<text class="item-price" v-if="showPrice[1]=='CAR_OWNER_PRICE'">¥{{item.price||0}}</text>
|
|
|
- <text class="item-price" v-else></text>
|
|
|
+ <text class="item-price" v-else>
|
|
|
+ {{showPrice[2]?(item.cost||''):(isAdmin?(item.cost||''):'')}}
|
|
|
+ </text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="item-detail-text flex_1" v-else>
|