udxcms 1.0.49 → 1.0.51
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.
|
@@ -294,8 +294,21 @@ export default {
|
|
|
294
294
|
},
|
|
295
295
|
mounted() {
|
|
296
296
|
// refresh event
|
|
297
|
-
this.$nextTick(() => {
|
|
298
|
-
|
|
297
|
+
// this.$nextTick(() => {
|
|
298
|
+
// $Vue.$bus.$on("refresh", (events) => {
|
|
299
|
+
// events.map((type) => {
|
|
300
|
+
// switch (type) {
|
|
301
|
+
// case "initActiveUser":
|
|
302
|
+
// this.checkAccount();
|
|
303
|
+
// break;
|
|
304
|
+
// default:
|
|
305
|
+
// break;
|
|
306
|
+
// }
|
|
307
|
+
// });
|
|
308
|
+
// });
|
|
309
|
+
// });
|
|
310
|
+
|
|
311
|
+
this.$bus.$on("refresh", (events) => {
|
|
299
312
|
events.map((type) => {
|
|
300
313
|
switch (type) {
|
|
301
314
|
case "initActiveUser":
|
|
@@ -306,7 +319,6 @@ export default {
|
|
|
306
319
|
}
|
|
307
320
|
});
|
|
308
321
|
});
|
|
309
|
-
});
|
|
310
322
|
},
|
|
311
323
|
methods: {
|
|
312
324
|
scrollFn() {
|