cnhis-design-vue 2.1.15 → 2.1.18
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 +13 -0
- package/es/age/index.js +2 -2
- package/es/big-table/index.js +119 -106
- package/es/big-table/style.css +1 -1
- package/es/button/index.js +1208 -1132
- package/es/button/style.css +1 -1
- package/es/captcha/index.js +3 -3
- 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/fabric-chart/index.js +72 -81
- package/es/fabric-chart/style.css +1 -1
- package/es/form-table/index.js +17 -17
- package/es/index/index.js +1582 -1487
- 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 +24 -24
- package/es/multi-chat-client/index.js +18 -18
- 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 +74 -59
- package/es/multi-chat-setting/style.css +1 -1
- package/es/multi-chat-sip/index.js +1 -1
- package/es/radio/index.js +1 -1
- package/es/scale-view/index.js +24 -24
- package/es/select/index.js +3 -3
- package/es/select-label/index.js +3 -3
- package/es/select-person/index.js +2 -2
- package/es/table-filter/index.js +1227 -1151
- 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 +1682 -1587
- package/lib/cui.umd.js +1682 -1587
- package/lib/cui.umd.min.js +23 -23
- package/package.json +2 -2
- package/packages/big-table/src/components/AutoLayoutButton.vue +1 -1
- package/packages/big-table/src/utils/batchEditing.js +610 -603
- package/packages/button/src/ButtonPrint/index.vue +4 -0
- package/packages/button/src/ButtonPrint/js/print.es.min.js +2791 -3
- package/packages/fabric-chart/src/FabricChart.vue +15 -36
- package/packages/fabric-chart/src/fabric-chart/FabricCanvas.vue +4 -3
- package/packages/fabric-chart/src/fabric-chart/FabricScaleValue.vue +8 -6
- package/packages/multi-chat/setting/baseInfo/index.vue +27 -13
|
@@ -171,6 +171,10 @@ export default create({
|
|
|
171
171
|
mounted() {
|
|
172
172
|
this.isInited = false;
|
|
173
173
|
},
|
|
174
|
+
beforeDestroy() {
|
|
175
|
+
// 创建Print实例的时候会在webview中注册一个事件, 需要调用printInstance.destroy()手动清除
|
|
176
|
+
printInstance?.destroy?.()
|
|
177
|
+
},
|
|
174
178
|
watch: {
|
|
175
179
|
// 监听变化, 重新格式化printParams
|
|
176
180
|
params: {
|