n20-common-lib 2.6.6 → 2.6.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.6.6",
3
+ "version": "2.6.8",
4
4
  "private": false,
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -104,7 +104,7 @@
104
104
  }
105
105
 
106
106
  .el-input--suffix .el-input__inner {
107
- padding-right: 20px;
107
+ padding-right: 26px;
108
108
  }
109
109
  }
110
110
 
@@ -322,7 +322,7 @@ export default {
322
322
  const inputRangeProps = {
323
323
  startValue: form[item.startValue],
324
324
  endValue: form[item.endValue],
325
- isClearable: (item.props && item.props.isClearable) ?? true,
325
+
326
326
  // 将 props 对象中的属性应用到 inputRange 上
327
327
  ...item.props
328
328
  }
@@ -332,6 +332,7 @@ export default {
332
332
  ruleField: true,
333
333
  'rule-form': 'ruleValidate',
334
334
  rules: item.rules,
335
+ isClearable: (item.props && item.props.isClearable) ?? true,
335
336
  ruleErrorHide: item.ruleErrorHide
336
337
  },
337
338
  style: {
@@ -57,13 +57,13 @@
57
57
  </el-checkbox-group>
58
58
  </div>
59
59
  </div>
60
- <div class="right-c flex-column p-t-m" v-if="!hasPX">
60
+ <div v-if="!hasPX" class="right-c flex-column p-t-m">
61
61
  <div class="m-b">
62
62
  {{ '当前选定项' | $lc }}
63
63
  <el-link type="primary" style="visibility: hidden">{{ '当前选定项' | $lc }}</el-link>
64
64
  </div>
65
65
  <div class="flex-1 overflow-y">
66
- <drag-list :list="dragList" :label-key="labelKey" :in-show-column="true" @click="clickItem" />
66
+ <drag-list :list="dragList" :label-key="labelKey" :in-show-column="true" />
67
67
  </div>
68
68
  </div>
69
69
  <div v-else class="right-tree flex-column p-t-m">
@@ -99,8 +99,8 @@
99
99
  <el-link
100
100
  class="n20-icon-shanchu"
101
101
  :underline="false"
102
- @click.stop="() => removeMenu(node, data)"
103
102
  :disabled="data.checked"
103
+ @click.stop="() => removeMenu(node, data)"
104
104
  />
105
105
  </span>
106
106
  </el-tree>