问题修复

This commit is contained in:
BianLzhaoMin 2025-04-17 15:01:06 +08:00
parent 0abf93c8c6
commit 7f8e60a457
1 changed files with 9 additions and 1 deletions

View File

@ -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',