cnhis-design-vue 2.1.154 → 2.1.156
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/CHANGELOG.md +15 -0
- package/es/age/index.js +2 -2
- package/es/big-table/index.js +26 -26
- package/es/button/index.js +11 -5
- package/es/captcha/index.js +3 -3
- package/es/card-reader-sdk/index.js +1 -1
- package/es/checkbox/index.js +1 -1
- package/es/color-picker/index.js +1 -1
- package/es/drag-layout/index.js +3 -3
- package/es/editor/index.js +1 -1
- package/es/ellipsis/index.js +1 -1
- package/es/fabric-chart/index.js +9 -9
- package/es/form-table/index.js +20 -20
- package/es/full-calendar/index.js +4 -4
- package/es/index/index.js +230 -197
- package/es/input/index.js +1 -1
- package/es/map/index.js +1 -1
- package/es/multi-chat/index.js +25 -25
- package/es/multi-chat-client/index.js +19 -19
- package/es/multi-chat-history/index.js +4 -4
- package/es/multi-chat-record/index.js +4 -4
- package/es/multi-chat-setting/index.js +20 -20
- package/es/multi-chat-sip/index.js +1 -1
- package/es/radio/index.js +1 -1
- package/es/scale-container/index.js +1 -1
- package/es/scale-view/index.js +27 -27
- package/es/select/index.js +4 -4
- package/es/select-label/index.js +3 -3
- package/es/select-person/index.js +2 -2
- package/es/select-tag/index.js +4 -4
- package/es/shortcut-setter/index.js +2 -2
- package/es/slider-tree/index.js +1 -1
- package/es/table-filter/index.js +131 -44
- package/es/tag/index.js +1 -1
- package/es/verification-code/index.js +2 -2
- package/lib/cui.common.js +231 -201
- package/lib/cui.umd.js +231 -201
- package/lib/cui.umd.min.js +2 -2
- package/package.json +1 -1
- package/packages/button/src/ButtonPrint/index.vue +7 -1
- package/packages/table-filter/src/components/render-widget/components/SelectDynamic.vue +9 -3
- package/packages/table-filter/src/components/render-widget/mixins/dynamic-method.js +7 -5
package/package.json
CHANGED
|
@@ -153,7 +153,13 @@ export default create({
|
|
|
153
153
|
// 向外抛出vue2组件直接调用内部的方法
|
|
154
154
|
handleClickBtn() {
|
|
155
155
|
this.$refs.printComponentRef.handleClickBtn();
|
|
156
|
-
}
|
|
156
|
+
},
|
|
157
|
+
init() {
|
|
158
|
+
return this.$refs.printComponentRef.init();
|
|
159
|
+
},
|
|
160
|
+
handleClickPrint(e) {
|
|
161
|
+
return this.$refs.printComponentRef.handleClickPrint(e);
|
|
162
|
+
},
|
|
157
163
|
}
|
|
158
164
|
});
|
|
159
165
|
</script>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
class="quick-dynamic-select"
|
|
16
16
|
:notFoundContent="componentCfg.fetchingWordbook ? undefined : '暂无数据'"
|
|
17
17
|
:class="{ 'quick-dynamic-select-mul': maxTagCount > 0 }"
|
|
18
|
-
@search="
|
|
18
|
+
@search="handleWordBookSearchDebounce"
|
|
19
19
|
@dropdownVisibleChange="dropdownVisibleChangeRender($event, componentCfg)"
|
|
20
20
|
@change="handleChange($event, componentCfg)"
|
|
21
21
|
>
|
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
import { Select, Spin, Icon,Button } from 'ant-design-vue';
|
|
66
66
|
import selectPages from '@/component/select-pages';
|
|
67
67
|
import Ellipsis from '~/ellipsis'
|
|
68
|
+
import { debounce } from "lodash";
|
|
68
69
|
export default {
|
|
69
70
|
name: "SelectDynamic",
|
|
70
71
|
components: {
|
|
@@ -163,7 +164,9 @@ export default {
|
|
|
163
164
|
// }
|
|
164
165
|
},
|
|
165
166
|
// 生命周期
|
|
166
|
-
created() {
|
|
167
|
+
created() {
|
|
168
|
+
this.handleWordBookSearchDebounce = debounce(this.handleWordBookSearch, 300)
|
|
169
|
+
},
|
|
167
170
|
mounted() {},
|
|
168
171
|
|
|
169
172
|
// 方法
|
|
@@ -178,11 +181,14 @@ export default {
|
|
|
178
181
|
if(this.mode === 'multiple') return;
|
|
179
182
|
this.$emit('change')
|
|
180
183
|
},
|
|
184
|
+
handleWordBookSearch(keyword) {
|
|
185
|
+
this.handleWordBookSearchRender(keyword, this.componentCfg, { skipFirstDef: true });
|
|
186
|
+
},
|
|
181
187
|
handleSearchChangePage(type) {
|
|
182
188
|
let cType = type || 'next';
|
|
183
189
|
let { page, keyword = undefined } = this?.componentCfg?.searchPageConfig;
|
|
184
190
|
page = cType === 'next' ? page + 1 : page - 1;
|
|
185
|
-
this.handleWordBookSearchRender(keyword, this.componentCfg, { page });
|
|
191
|
+
this.handleWordBookSearchRender(keyword, this.componentCfg, { page, skipFirstDef: true });
|
|
186
192
|
}
|
|
187
193
|
}
|
|
188
194
|
};
|
|
@@ -124,10 +124,11 @@ export default {
|
|
|
124
124
|
searchPageConfig
|
|
125
125
|
};
|
|
126
126
|
},
|
|
127
|
-
wordbookDataMethodRender(params, item) {
|
|
127
|
+
wordbookDataMethodRender(params, item, config = {}) {
|
|
128
|
+
const { skipFirstDef } = config;
|
|
128
129
|
this.getWordbookDataRender(params, item).then(({ data }) => {
|
|
129
130
|
let { rows, searchPageConfig } = this.formatWordbookDataRender(item, data, params);
|
|
130
|
-
this.handleRenderFirstDef(item, rows);
|
|
131
|
+
!skipFirstDef && this.handleRenderFirstDef(item, rows);
|
|
131
132
|
this.$set(item, 'dataSource', rows);
|
|
132
133
|
this.$set(item, 'searchPageConfig', searchPageConfig);
|
|
133
134
|
});
|
|
@@ -147,7 +148,7 @@ export default {
|
|
|
147
148
|
dropdownVisibleChangeRender(open, item) {
|
|
148
149
|
if (!open) return;
|
|
149
150
|
let params = this.wordbookDataParamsRender(item.widgetCfg.dynamicOptionInfo);
|
|
150
|
-
this.wordbookDataMethodRender(params, item);
|
|
151
|
+
this.wordbookDataMethodRender(params, item, { skipFirstDef: true });
|
|
151
152
|
},
|
|
152
153
|
handleWordBookSearchDef(value, item, config = {}) {
|
|
153
154
|
let params = this.wordbookDataParamsRender(item.widgetCfg.dynamicOptionInfo);
|
|
@@ -157,8 +158,9 @@ export default {
|
|
|
157
158
|
if (tableDataType === 'API' && Array.isArray(filterKeys) && filterKeys.length) {
|
|
158
159
|
searchKeyName = filterKeys[0] || 'keyword';
|
|
159
160
|
}
|
|
160
|
-
|
|
161
|
-
|
|
161
|
+
const { skipFirstDef, ...others } = config || {};
|
|
162
|
+
let rp = { [searchKeyName]: value, ...params, ...others };
|
|
163
|
+
this.wordbookDataMethodRender(rp, item, { skipFirstDef });
|
|
162
164
|
}
|
|
163
165
|
}
|
|
164
166
|
};
|