This commit is contained in:
qsh
2024-08-03 18:15:14 +08:00
parent 925887f4c9
commit 22bc22c00a
4 changed files with 19 additions and 4 deletions

View File

@@ -169,7 +169,8 @@ const formSchema = computed(() => {
newSchema.forEach((it) => {
if (it.field == 'consultTime') {
it.componentProps['disabled-date'] = dateAfterToday
it.componentProps['disabled'] = formType.value != 'create'
// it.componentProps['disabled'] = formType.value != 'create'
it.componentProps['disabled'] = true
}
if (it.field == 'convertPeople') {
it.options = props.allUserOptions.map((it) => ({ ...it, name: it.nickname }))