|
@@ -165,6 +165,13 @@
|
|
|
</view>
|
|
</view>
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
|
|
|
|
|
|
|
+ <tui-list-cell class="line-cell" :hover="false">
|
|
|
|
|
+ <view class="tui-title">线下开单超欠</view>
|
|
|
|
|
+ <view>
|
|
|
|
|
+ <switch style="transform:scale(0.7,0.7)" :checked="form.overAllowDebt == 0 ? false : true" @change="overAllowDebtChange" /> {{form.overAllowDebt==1 ? '允许' : '禁止'}}
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </tui-list-cell>
|
|
|
|
|
+
|
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
|
<view class="tui-title " style="color:#3385FF;">整单满扎数</view>
|
|
<view class="tui-title " style="color:#3385FF;">整单满扎数</view>
|
|
|
<input v-model="form.meetNum" style="color:#3385FF;" @focus="form.meetNum=''" placeholder-class="phcolor" class="tui-input" name="meetNum" placeholder="多少扎" type="digit" />
|
|
<input v-model="form.meetNum" style="color:#3385FF;" @focus="form.meetNum=''" placeholder-class="phcolor" class="tui-input" name="meetNum" placeholder="多少扎" type="digit" />
|
|
@@ -271,6 +278,7 @@ export default {
|
|
|
afterSale:1,
|
|
afterSale:1,
|
|
|
pfLevel:0,
|
|
pfLevel:0,
|
|
|
cgUnitType:0,
|
|
cgUnitType:0,
|
|
|
|
|
+ overAllowDebt:1,
|
|
|
isHd:1,
|
|
isHd:1,
|
|
|
itemToClass:0
|
|
itemToClass:0
|
|
|
},
|
|
},
|
|
@@ -348,6 +356,9 @@ export default {
|
|
|
showStockChange(e){
|
|
showStockChange(e){
|
|
|
this.form.showStock = e.target.value ? 1 : 0
|
|
this.form.showStock = e.target.value ? 1 : 0
|
|
|
},
|
|
},
|
|
|
|
|
+ overAllowDebtChange(e){
|
|
|
|
|
+ this.form.overAllowDebt = e.target.value ? 1 : 0
|
|
|
|
|
+ },
|
|
|
cgUnitTypeChange(e){
|
|
cgUnitTypeChange(e){
|
|
|
this.form.cgUnitType = e.target.value ? 1 : 0
|
|
this.form.cgUnitType = e.target.value ? 1 : 0
|
|
|
},
|
|
},
|