cnhis-design-vue 2.1.156 → 2.1.157
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 +7 -0
- package/es/age/index.js +2 -2
- package/es/big-table/index.js +26 -26
- package/es/button/index.js +4 -4
- 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 +216 -213
- package/es/index/style.css +1 -1
- 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 +63 -60
- package/es/table-filter/style.css +1 -1
- package/es/tag/index.js +1 -1
- package/es/verification-code/index.js +2 -2
- package/lib/cui.common.js +239 -236
- package/lib/cui.umd.js +239 -236
- package/lib/cui.umd.min.js +7 -7
- package/package.json +1 -1
- package/packages/table-filter/src/base-search-com/BaseSearch.vue +3 -3
package/package.json
CHANGED
|
@@ -1346,7 +1346,7 @@ export default create({
|
|
|
1346
1346
|
this.$refs.quicksearch?.clearData();
|
|
1347
1347
|
this.$emit('reloadList', item);
|
|
1348
1348
|
},
|
|
1349
|
-
clickBtn(data, item, index, skip, j) {
|
|
1349
|
+
clickBtn(data, item, index, skip, j, config={}) {
|
|
1350
1350
|
this.$emit('clearTeamTitleName');
|
|
1351
1351
|
if ((item.name.includes('批量') && item.type == 'ADD' && !skip) || (item.type == 'BATCH' && !skip)) {
|
|
1352
1352
|
this.showDrawer(item, j);
|
|
@@ -1360,7 +1360,7 @@ export default create({
|
|
|
1360
1360
|
Object.assign(item, {
|
|
1361
1361
|
_index_: j
|
|
1362
1362
|
});
|
|
1363
|
-
this.$emit('clickBtn', data, item, index);
|
|
1363
|
+
this.$emit('clickBtn', data, item, index, j, config);
|
|
1364
1364
|
},
|
|
1365
1365
|
clickGroupBtn(btn, j) {
|
|
1366
1366
|
this.clickBtn(this.clickRowData, btn, this.clickRowData.my_index, undefined, j);
|
|
@@ -2065,7 +2065,7 @@ export default create({
|
|
|
2065
2065
|
触发原按钮流程,在EditTable中触发原打印按钮节点时,修改[printPrevFinish]状态
|
|
2066
2066
|
触发watch,再执行Promise.resolve()
|
|
2067
2067
|
*/
|
|
2068
|
-
this.clickBtn(clickBtn, btn, clickBtn.my_index, true, j);
|
|
2068
|
+
this.clickBtn(clickBtn, btn, clickBtn.my_index, true, j, {printBtnTrigger: true});
|
|
2069
2069
|
const timestamp = Date.now();
|
|
2070
2070
|
|
|
2071
2071
|
this.resetAllPrintFnWatch();
|