Explorar o código

字典占位符修改

tongshangming %!s(int64=2) %!d(string=hai) anos
pai
achega
4e2f3eeaf2
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/components/form/FormComp.vue

+ 1 - 1
src/components/form/FormComp.vue

@@ -20,7 +20,7 @@ const modelValue = computed({
 })
 
 const placeholder = (item: BasicFormItem) => {
-  if (['select', 'cascader'].includes(item.type)) {
+  if (['select', 'cascader', 'date-picker', 'time-picker', 'time-select', 'dict'].includes(item.type)) {
     return '请选择' + item.label
   } else {
     return '请输入' + item.label