|
|
@@ -68,17 +68,12 @@
|
|
|
<!-- 花样年花门店和出车,要求不显示成本,其他批发商需要 -->
|
|
|
<text style="margin-left:14upx;" v-if="customData.mainId!=1553 && customData.mainId!=1563">成本 {{customData.avCost?parseFloat(customData.avCost):0}}</text>
|
|
|
</view>
|
|
|
- <view class="num_bx">
|
|
|
- <input style="width:280upx" v-model="customData.userPrice" @focus="customData.userPrice = null" :class="[Number(customData.avCost) > Number(customData.userPrice) ? 'warning-price' : '']"
|
|
|
- :disabled="false" type="digit" placeholder="单价" />
|
|
|
- <text style="font-size:35upx;font-weight:bold;color:#666666;">元</text>
|
|
|
- </view>
|
|
|
<view class="num_bx">
|
|
|
|
|
|
<!-- #ifdef APP-PLUS -->
|
|
|
- <input style="width: 280upx" v-model="customData.bigCount" v-if="globalUnitType == 0" type="number" />
|
|
|
+ <input style="width: 280upx" v-model="customData.bigCount" v-if="globalUnitType == 0" :focus="isAddInputFocus" type="number" />
|
|
|
<text style="font-size:35upx;font-weight:bold;color:#666666;" v-if="globalUnitType == 0">{{customData.bigUnit}}</text>
|
|
|
- <input style="width: 280upx" v-model="customData.smallCount" v-if="globalUnitType == 1" type="number" />
|
|
|
+ <input style="width: 280upx" v-model="customData.smallCount" v-if="globalUnitType == 1" :focus="isAddInputFocus" type="number" />
|
|
|
<text style="font-size:35upx;font-weight:bold;color:#666666;" v-if="globalUnitType == 1">{{customData.smallUnit}}</text>
|
|
|
<!-- #endif -->
|
|
|
|
|
|
@@ -95,7 +90,12 @@
|
|
|
<button class="admin-button-com mini-btn" @click="customData.userPrice=0.01;customData.bigCount=1" style="position:absolute;top:200upx;right:33upx;">赠送</button>
|
|
|
</view>
|
|
|
<view class="num_bx">
|
|
|
- <input style="width: 280upx;height:40upx;font-size:25upx;" v-model="customData.remark" type="text" placeholder="备注" />
|
|
|
+ <input style="width:280upx" v-model="customData.userPrice" @focus="customData.userPrice = null" :class="[Number(customData.avCost) > Number(customData.userPrice) ? 'warning-price' : '']"
|
|
|
+ :disabled="false" type="digit" placeholder="单价" />
|
|
|
+ <text style="font-size:35upx;font-weight:bold;color:#666666;">元</text>
|
|
|
+ </view>
|
|
|
+ <view class="num_bx">
|
|
|
+ <input style="width: 280upx;height:60upx;font-size:27upx;" v-model="customData.remark" type="text" placeholder="备注" />
|
|
|
</view>
|
|
|
</view>
|
|
|
</template>
|