@newview/ui 1.1.88 → 1.1.90
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/dist/newview-ui.js +5 -3
- package/dist/newview-ui.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/newview-ui.js
CHANGED
|
@@ -178151,9 +178151,7 @@ function mobileinit() {
|
|
|
178151
178151
|
luckysheet_touchmove_status = false;
|
|
178152
178152
|
event2.stopPropagation();
|
|
178153
178153
|
});
|
|
178154
|
-
document.addEventListener("touchmove",
|
|
178155
|
-
event2.preventDefault();
|
|
178156
|
-
}, {
|
|
178154
|
+
document.addEventListener("touchmove", Store.preDefault, {
|
|
178157
178155
|
passive: false
|
|
178158
178156
|
});
|
|
178159
178157
|
}
|
|
@@ -214628,6 +214626,7 @@ Drawer.newInstance = (properties) => {
|
|
|
214628
214626
|
this.$refs.drawer.visible = false;
|
|
214629
214627
|
this.buttonLoading = false;
|
|
214630
214628
|
this.remove();
|
|
214629
|
+
this.drawerClose();
|
|
214631
214630
|
},
|
|
214632
214631
|
remove() {
|
|
214633
214632
|
this.closing = true;
|
|
@@ -215100,6 +215099,9 @@ class PrintApi extends BaseInstance {
|
|
|
215100
215099
|
body: prdata,
|
|
215101
215100
|
printReport: () => {
|
|
215102
215101
|
this.countPrintData(vrpdata);
|
|
215102
|
+
},
|
|
215103
|
+
drawerClose: () => {
|
|
215104
|
+
this.luckysheet.destroy();
|
|
215103
215105
|
}
|
|
215104
215106
|
}).show();
|
|
215105
215107
|
} else {
|