|
|
@@ -264,8 +264,9 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
activated() {
|
|
|
- if(this.latestUpdateTime!=null){
|
|
|
- this.getListTotalFn();
|
|
|
+ let type = this.$route.query.type;
|
|
|
+ if(this.latestUpdateTime!=null && type == 1){
|
|
|
+ this.getListTotalFn();
|
|
|
}
|
|
|
// setTimeout(() => {
|
|
|
// this.onSearch();
|
|
|
@@ -396,7 +397,9 @@ export default {
|
|
|
this.onSearch();
|
|
|
},
|
|
|
onClickLeft() {
|
|
|
- this.$router.go(-1);
|
|
|
+ this.$router.push({
|
|
|
+ path: '/My/index',
|
|
|
+ });
|
|
|
},
|
|
|
onSearch() {
|
|
|
this.refreshTotal = 0;
|