free-fe-core-modules 0.1.29 → 0.1.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
:Field="{
|
|
18
18
|
Type: 'String',
|
|
19
19
|
Name: 'kw',
|
|
20
|
-
Placeholder: `请输入 [${(kwFields && kwFields.length) ? kwFields.join('、') : ''}] 关键字进行查询`
|
|
20
|
+
Placeholder: Field?.Options?.InputPlaceholder || `请输入 [${(kwFields && kwFields.length) ? kwFields.join('、') : ''}] 关键字进行查询`
|
|
21
21
|
}"
|
|
22
22
|
:values="query"
|
|
23
23
|
@input="queryChanged = true"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
Type: 'String',
|
|
46
46
|
Label: '关键字',
|
|
47
47
|
Name: 'kw',
|
|
48
|
-
Placeholder: `请输入 [${(kwFields && kwFields.length) ? kwFields.join('、') : ''}] 进行查询`
|
|
48
|
+
Placeholder: Field?.Options?.InputPlaceholder || `请输入 [${(kwFields && kwFields.length) ? kwFields.join('、') : ''}] 进行查询`
|
|
49
49
|
}"
|
|
50
50
|
:values="query"
|
|
51
51
|
@input="queryChanged = true"
|
|
@@ -80,6 +80,13 @@ export default defineComponent({
|
|
|
80
80
|
Label: '筛选条件',
|
|
81
81
|
Value: 'QueryFilters',
|
|
82
82
|
Description: '',
|
|
83
|
+
Extra: [
|
|
84
|
+
{
|
|
85
|
+
Type: 'String',
|
|
86
|
+
Label: '输入框占位提示',
|
|
87
|
+
Name: 'Options.InputPlaceholder',
|
|
88
|
+
},
|
|
89
|
+
],
|
|
83
90
|
},
|
|
84
91
|
props: {
|
|
85
92
|
...freeFieldProps,
|