t20-common-lib 0.15.43 → 0.15.45

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "t20-common-lib",
3
- "version": "0.15.43",
3
+ "version": "0.15.45",
4
4
  "description": "T20",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
@@ -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" />
@@ -32,7 +32,7 @@
32
32
  :validate-event="false"
33
33
  clearable
34
34
  @input="debounce(searchTree, 1000)"
35
- :placeholder="$lc('请输入')"
35
+ :placeholder="$lc('请输入单位名称/编号')"
36
36
  class="input-w nstc-unit-search"
37
37
  ></el-input>
38
38
  <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
package/src/i18n.json CHANGED
@@ -97,5 +97,8 @@
97
97
  },
98
98
  "校验通过": {
99
99
  "en": "Validation passed"
100
+ },
101
+ "请输入单位名称/编号": {
102
+ "en": "Please enter the unit name/number"
100
103
  }
101
104
  }