This commit is contained in:
parent
707fc1ad26
commit
de18cdcc85
|
|
@ -624,6 +624,19 @@
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="是否为立体仓" prop="isRs">
|
||||||
|
<el-select
|
||||||
|
v-model="form.isRs"
|
||||||
|
filterable
|
||||||
|
placeholder="请选择"
|
||||||
|
style="width: 100%"
|
||||||
|
>
|
||||||
|
<el-option value="0" label="否">否</el-option>
|
||||||
|
<el-option value="1" label="是">是</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="是否检验" prop="isCheck">
|
<el-form-item label="是否检验" prop="isCheck">
|
||||||
<el-select
|
<el-select
|
||||||
|
|
@ -873,7 +886,8 @@ export default {
|
||||||
form: {
|
form: {
|
||||||
companyId: "",
|
companyId: "",
|
||||||
isCheck: '0',
|
isCheck: '0',
|
||||||
jiJuType:'1'
|
jiJuType:'1',
|
||||||
|
isRs:'0'
|
||||||
},
|
},
|
||||||
chosenTypeId: "",
|
chosenTypeId: "",
|
||||||
leasePrice: "",
|
leasePrice: "",
|
||||||
|
|
@ -1220,6 +1234,7 @@ export default {
|
||||||
this.form.isCharging = this.form.isCharging + "";
|
this.form.isCharging = this.form.isCharging + "";
|
||||||
this.form.jiJuType = this.form.jiJuType + "";
|
this.form.jiJuType = this.form.jiJuType + "";
|
||||||
this.form.isTest = this.form.isTest + "";
|
this.form.isTest = this.form.isTest + "";
|
||||||
|
this.form.isRs = this.form.isRs + "";
|
||||||
|
|
||||||
// this.form.houseName = row.houseName;
|
// this.form.houseName = row.houseName;
|
||||||
this.form.itemType = row.itemType;
|
this.form.itemType = row.itemType;
|
||||||
|
|
@ -1249,6 +1264,7 @@ export default {
|
||||||
this.form.isCharging = this.form.isCharging + "";
|
this.form.isCharging = this.form.isCharging + "";
|
||||||
this.form.jiJuType = this.form.jiJuType + "";
|
this.form.jiJuType = this.form.jiJuType + "";
|
||||||
this.form.isTest = this.form.isTest + "";
|
this.form.isTest = this.form.isTest + "";
|
||||||
|
this.form.isRs = this.form.isRs + "";
|
||||||
// this.form.houseName = row.houseName;
|
// this.form.houseName = row.houseName;
|
||||||
this.form.itemType = row.itemType;
|
this.form.itemType = row.itemType;
|
||||||
this.form.materialType = row.materialType;
|
this.form.materialType = row.materialType;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue