代码更新
This commit is contained in:
@@ -107,7 +107,7 @@
|
||||
<el-input v-model="form.ivt_qty" style="width: 370px;" />
|
||||
</el-form-item>
|
||||
<el-form-item label="锁定类型" prop="lock_type">
|
||||
<el-select v-model="form.lock_type" filterable placeholder="请选择" style="width: 370px">
|
||||
<el-select v-model="form.lock_type" filterable placeholder="请选择" style="width: 370px">
|
||||
<el-option
|
||||
v-for="item in dict.sch_lock_type"
|
||||
:key="item.value"
|
||||
@@ -116,6 +116,16 @@
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="是否满拖" prop="is_full">
|
||||
<el-select v-model="form.is_full" filterable placeholder="请选择" style="width: 370px">
|
||||
<el-option
|
||||
v-for="item in dict.is_active"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="text" @click="crud.cancelCU">取消</el-button>
|
||||
@@ -191,7 +201,7 @@ export default {
|
||||
name: 'InKiln',
|
||||
components: { WorkDialog, pagination, crudOperation, rrOperation, udOperation },
|
||||
mixins: [presenter(), header(), form(defaultForm), crud()],
|
||||
dicts: ['sch_area_type', 'sch_point_type', 'sch_point_status', 'sch_lock_type'],
|
||||
dicts: ['sch_area_type', 'sch_point_type', 'sch_point_status', 'sch_lock_type', 'is_active'],
|
||||
cruds() {
|
||||
return CRUD({
|
||||
title: '入窑缓存库区',
|
||||
@@ -233,6 +243,9 @@ export default {
|
||||
],
|
||||
lock_type: [
|
||||
{ required: true, message: '锁定类型不能为空', trigger: 'blur' }
|
||||
],
|
||||
is_full: [
|
||||
{ required: true, message: '是否满拖不能为空', trigger: 'blur' }
|
||||
]
|
||||
}}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user