resolver-egretimp-plus 0.0.93 → 0.0.94
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
|
@@ -149,7 +149,11 @@ onMounted(() => {
|
|
|
149
149
|
pageNum: page.pageNum
|
|
150
150
|
}
|
|
151
151
|
}, ({ val }) => {
|
|
152
|
-
|
|
152
|
+
try {
|
|
153
|
+
// 这边有的时候会报错
|
|
154
|
+
tableRef.value?.setTableData([])
|
|
155
|
+
} catch (error) {
|
|
156
|
+
}
|
|
153
157
|
setTimeout(() => {
|
|
154
158
|
tableRef.value?.setTableData(val)
|
|
155
159
|
}, 100);
|