问题修复
This commit is contained in:
parent
7f8e60a457
commit
ce82e83f28
|
|
@ -101,7 +101,7 @@
|
|||
:placeholder="props.addAndEditFormType == 3 ? '' : '请输入检查人'"
|
||||
/>
|
||||
</up-form-item>
|
||||
<up-form-item prop="vioDate" label="检查日期">
|
||||
<up-form-item prop="vioDate" label="检查日期" required>
|
||||
<up-input
|
||||
readonly
|
||||
border="none"
|
||||
|
|
@ -420,6 +420,14 @@ const addAndEditModelRules = ref({
|
|||
trigger: ['blur', 'change'],
|
||||
},
|
||||
],
|
||||
vioDate: [
|
||||
{
|
||||
type: 'string',
|
||||
required: true,
|
||||
message: '请选择检查日期',
|
||||
trigger: ['blur', 'change'],
|
||||
},
|
||||
],
|
||||
rectDate: [
|
||||
{
|
||||
type: 'string',
|
||||
|
|
|
|||
Loading…
Reference in New Issue