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 +1 -1
- package/src/assets/css/filter.scss +1 -1
- package/src/components/AdvancedFilter/formItemRender.vue +2 -1
- package/src/components/ShowColumn/index.vue +3 -3
- package/style/index.css +1 -1
- package/theme/blue.css +1 -1
- package/theme/cctcRed.css +1 -1
- package/theme/green.css +1 -1
- package/theme/lightBlue.css +1 -1
- package/theme/orange.css +1 -1
- package/theme/purple.css +1 -1
- package/theme/red.css +1 -1
- package/theme/yellow.css +1 -1
package/package.json
CHANGED
|
@@ -322,7 +322,7 @@ export default {
|
|
|
322
322
|
const inputRangeProps = {
|
|
323
323
|
startValue: form[item.startValue],
|
|
324
324
|
endValue: form[item.endValue],
|
|
325
|
-
|
|
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"
|
|
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"
|
|
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>
|