问题修复
This commit is contained in:
parent
0abf93c8c6
commit
7f8e60a457
|
|
@ -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"
|
||||
|
|
@ -432,6 +432,14 @@ const addAndEditModelRules = ref({
|
|||
message: '请填写正确的人名',
|
||||
},
|
||||
],
|
||||
vioDate: [
|
||||
{
|
||||
type: 'string',
|
||||
required: true,
|
||||
message: '请选择整违章日期',
|
||||
trigger: ['blur', 'change'],
|
||||
},
|
||||
],
|
||||
rectDate: [
|
||||
{
|
||||
type: 'string',
|
||||
|
|
|
|||
Loading…
Reference in New Issue