This commit is contained in:
qsh
2024-07-11 15:25:00 +08:00
parent d31f4b4f8b
commit 72accc0ab2
16 changed files with 117 additions and 153 deletions

View File

@@ -180,6 +180,11 @@ const props = defineProps({
const showSchema = computed(() => {
const arr1 = [...props.schema]
arr1.forEach((it) => {
if (it.label.includes('日期')) {
it.dateFormat = 'YYYY-MM-DD'
}
})
if (arr1.length % 2 != 0) {
arr1.push({})
}