|
@@ -309,10 +309,10 @@
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="计划件数" prop="fPlanqty">
|
|
|
<el-input
|
|
|
- v-model.number="form.fPlanqty"
|
|
|
+ v-model="form.fPlanqty"
|
|
|
style="width: 80%"
|
|
|
maxlength="9"
|
|
|
- v-input-limit="0"
|
|
|
+ v-input-limit="2"
|
|
|
placeholder="计划件数"
|
|
|
:disabled="
|
|
|
browseStatus || current !== before || form.warehouseStatus > 3
|
|
@@ -641,17 +641,16 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="是否质押" prop="isPledge">
|
|
|
+ <el-form-item label="贸易方式" prop="fTrademodeid">
|
|
|
<el-select
|
|
|
- v-model="form.isPledge"
|
|
|
- placeholder="请选择是否质押"
|
|
|
+ v-model="form.fTrademodeid"
|
|
|
+ placeholder="请选择贸易方式"
|
|
|
+ :disabled="browseStatus || form.warehouseStatus > 3 || detailList.findIndex(function(item){return item.fBillstatus == 40}) == -1?false:true"
|
|
|
clearable
|
|
|
- :disabled="browseStatus || form.warehouseStatus > 3"
|
|
|
style="width: 80%"
|
|
|
- @change="feeUnitChange"
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="(item, index) in isPledgeOptions"
|
|
|
+ v-for="(item, index) in fTrademodeidOptions"
|
|
|
:key="index.dictValue"
|
|
|
:label="item.dictLabel"
|
|
|
:value="item.dictValue"
|
|
@@ -810,16 +809,17 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
- <el-form-item label="贸易方式" prop="fTrademodeid">
|
|
|
+ <el-form-item label="是否质押" prop="isPledge">
|
|
|
<el-select
|
|
|
- v-model="form.fTrademodeid"
|
|
|
- placeholder="请选择贸易方式"
|
|
|
- :disabled="browseStatus || form.warehouseStatus > 3 || detailList.findIndex(function(item){return item.fBillstatus == 40}) == -1?false:true"
|
|
|
+ v-model="form.isPledge"
|
|
|
+ placeholder="请选择是否质押"
|
|
|
clearable
|
|
|
+ :disabled="browseStatus || form.warehouseStatus > 3"
|
|
|
style="width: 80%"
|
|
|
+ @change="feeUnitChange"
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="(item, index) in fTrademodeidOptions"
|
|
|
+ v-for="(item, index) in isPledgeOptions"
|
|
|
:key="index.dictValue"
|
|
|
:label="item.dictLabel"
|
|
|
:value="item.dictValue"
|
|
@@ -1666,8 +1666,8 @@
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="计划件数" prop="fPlanqty">
|
|
|
<el-input
|
|
|
- v-input-limit="0"
|
|
|
- v-model.number="importList.fPlanqty"
|
|
|
+ v-input-limit="2"
|
|
|
+ v-model="importList.fPlanqty"
|
|
|
style="width: 100%"
|
|
|
placeholder="件数"
|
|
|
/>
|
|
@@ -1702,8 +1702,8 @@
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="件数" prop="fQty">
|
|
|
<el-input
|
|
|
- v-input-limit="0"
|
|
|
- v-model.number="importList.fQty"
|
|
|
+ v-input-limit="2"
|
|
|
+ v-model="importList.fQty"
|
|
|
style="width: 100%"
|
|
|
placeholder="件数"
|
|
|
@input="imporComputer"
|
|
@@ -9501,7 +9501,7 @@ export default {
|
|
|
this.$set(this.form, 'fContacts', this.userVal.nickName)
|
|
|
this.$set(this.form, 'fIfdamage', '1')
|
|
|
this.$set(this.form, 'fIfweigh', '1')
|
|
|
- this.$set(this.form, 'fTrademodeid', '1')
|
|
|
+ this.$set(this.form, 'fTrademodeid', '3')
|
|
|
this.$set(this.form, 'createTime', Date.parse(new Date()))
|
|
|
this.$set(this.form, 'fBstime', Date.parse(new Date()))
|
|
|
this.$set(this.form, 'fBusinessType', '0')
|