Merge branch 'bjxz-dev' of http://139.9.66.234:18023/kun/mobile-workflow into bjxz-dev

This commit is contained in:
Rain 2024-06-26 17:54:08 +08:00
commit b996f06cc7

View File

@ -50,9 +50,11 @@
return props.modelValue return props.modelValue
}, },
set(val) { set(val) {
if (props.formProps.format === 'yyyy-mm-dd hh:mm') { console.log(11111111, props.formProps.format == 'yyyy-MM-dd HH:mm', val)
val = val.substring(0, 16) + ':00' if (props.formProps.format == 'yyyy-MM-dd HH:mm') {
val = val.substring(0, 16)
} }
console.log(val)
emits('update:modelValue', val) emits('update:modelValue', val)
} }
}) })