系统参数修改
This commit is contained in:
parent
02c38651b9
commit
4efde056ee
@ -225,7 +225,7 @@
|
|||||||
<el-form-item label="类型:" prop="paramType">
|
<el-form-item label="类型:" prop="paramType">
|
||||||
<el-input v-model="formInlineAdd.paramType" placeholder="" clearable />
|
<el-input v-model="formInlineAdd.paramType" placeholder="" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="参数值:">
|
<el-form-item label="参数值:" prop="paramValue">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="formInlineAdd.paramValue"
|
v-model="formInlineAdd.paramValue"
|
||||||
:rows="2"
|
:rows="2"
|
||||||
@ -403,6 +403,13 @@ const rules = reactive<FormRules<RuleForm>>({
|
|||||||
trigger: 'blur',
|
trigger: 'blur',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
paramValue: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '参数值不能为空',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
],
|
||||||
})
|
})
|
||||||
const formInlineAdd = reactive({
|
const formInlineAdd = reactive({
|
||||||
paramName: '',
|
paramName: '',
|
||||||
|
Loading…
Reference in New Issue
Block a user