n20-common-lib 2.14.7 → 2.14.8

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": "n20-common-lib",
3
- "version": "2.14.7",
3
+ "version": "2.14.8",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -11,9 +11,9 @@
11
11
  {{ item.cfgName }}
12
12
  </span>
13
13
  <el-input
14
- v-if="['11', '12'].includes(item.cfgType)"
14
+ v-if="['11'].includes(item.cfgType)"
15
15
  v-model="item.cfgVal"
16
- :type="item.cfgType === '11' ? 'text' : 'textarea'"
16
+ :type="'text'"
17
17
  placeholder="请输入"
18
18
  class="input-w"
19
19
  clearable
@@ -57,6 +57,14 @@
57
57
  }}</el-checkbox>
58
58
  </el-checkbox-group>
59
59
  </el-form-item>
60
+ <el-input
61
+ v-if="['12'].includes(item.cfgType)"
62
+ v-model="item.cfgVal"
63
+ :type="'textarea'"
64
+ placeholder="请输入"
65
+ class="w-100p m-r-ss m-b-s flex-1"
66
+ clearable
67
+ />
60
68
  <el-input
61
69
  v-if="item.cfgHasRemark === '1' && !['11', '12'].includes(item.cfgType)"
62
70
  v-model="item.cfgRemark"