bug修复

This commit is contained in:
BianLzhaoMin 2025-04-17 17:36:12 +08:00
parent 104f98ed59
commit 73bc04f887
1 changed files with 7 additions and 1 deletions

View File

@ -37,7 +37,7 @@
</template> </template>
</up-input> </up-input>
</up-form-item> </up-form-item>
<up-form-item prop="buildPlace" label="建设地点"> <up-form-item prop="buildPlace" label="建设地点" required>
<up-input <up-input
border="none" border="none"
v-model="addAndEditModel.buildPlace" v-model="addAndEditModel.buildPlace"
@ -341,6 +341,12 @@ const addAndEditModelRules = ref({
}, },
], ],
buildPlace: [ buildPlace: [
{
type: 'string',
required: true,
message: '请填写建设地点',
trigger: ['blur'],
},
{ {
type: 'string', type: 'string',
max: 100, max: 100,