meixioacomponent 0.2.70 → 0.2.71
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
CHANGED
|
@@ -654,17 +654,18 @@ export default {
|
|
|
654
654
|
this.loading = true;
|
|
655
655
|
this.defaultSvg = false;
|
|
656
656
|
this.cleanCheckValue();
|
|
657
|
+
clearTimeout(this.triggerDown);
|
|
657
658
|
if (init) {
|
|
658
659
|
this.$props.pageProps[this.$props.pageConfig.page] = 1;
|
|
659
660
|
}
|
|
660
661
|
|
|
661
662
|
let screenResult = this.returnProScreenResult();
|
|
662
|
-
this.$props.httpRequire(screenResult).then((res
|
|
663
|
-
this.setTableData(res
|
|
663
|
+
this.$props.httpRequire(screenResult).then((res) => {
|
|
664
|
+
this.setTableData(res);
|
|
664
665
|
});
|
|
665
666
|
},
|
|
666
667
|
// 设置表格数据
|
|
667
|
-
setTableData(data, immediately =
|
|
668
|
+
setTableData(data, immediately = true) {
|
|
668
669
|
this.tableData = [];
|
|
669
670
|
this.tableData = data;
|
|
670
671
|
if (immediately) {
|