t20-common-lib 0.15.42 → 0.15.44
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.
package/package.json
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
:validate-event="false"
|
|
30
30
|
clearable
|
|
31
31
|
@input="debounce(searchTree, 1000)"
|
|
32
|
-
:placeholder="$lc('
|
|
32
|
+
:placeholder="$lc('请输入单位名称/编号')"
|
|
33
33
|
class="input-w nstc-unit-search"
|
|
34
34
|
></el-input>
|
|
35
35
|
<Filters :isEnableCommonConfigControl="isEnableCommonConfigControl" @filterChange="filterChange" v-bind="$attrs" />
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
:multiple="item.multiple"
|
|
10
10
|
v-model="searchForm[item.prop]"
|
|
11
11
|
:validate-event="false"
|
|
12
|
-
:placeholder="$lc('请选择')"
|
|
12
|
+
:placeholder="item.placeholder || $lc('请选择')"
|
|
13
13
|
@change="(val) => handleSearch(val, item)"
|
|
14
14
|
>
|
|
15
15
|
<el-option
|
|
@@ -48,10 +48,6 @@ export default {
|
|
|
48
48
|
type: String,
|
|
49
49
|
default: ''
|
|
50
50
|
},
|
|
51
|
-
useCommonConfigControl: {
|
|
52
|
-
type: Boolean,
|
|
53
|
-
default: true
|
|
54
|
-
},
|
|
55
51
|
/**
|
|
56
52
|
* 是否启用财资公参配置控制
|
|
57
53
|
* - true:启用财资公参配置控制
|