|
|
@@ -63,7 +63,8 @@
|
|
|
<view class="select-cmd_bx" v-if="customData">
|
|
|
<view class="kc">
|
|
|
<text>库存 {{ customData.stock?parseFloat(customData.stock):0 }}</text>
|
|
|
- <text style="margin-left:14upx;">¥{{ parseFloat(customData.price) }}</text>
|
|
|
+ <text style="margin-left:14upx;" v-if="customData.priceType == 1">¥{{ parseFloat(customData.price) }}</text>
|
|
|
+ <text style="margin-left:14upx;" v-else>--</text>
|
|
|
</view>
|
|
|
<view class="num_bx">
|
|
|
<input style="width:280upx" v-model="customData.userPrice" @focus="customData.userPrice = null" :class="[Number(customData.cost) > Number(customData.userPrice) ? 'warning-price' : '']"
|