Browse Source

修改资产流水不能及时跟新数据

master
liaoxinyu 9 months ago
parent
commit
0ca5df31cb
  1. 7
      layout/vPaging.vue
  2. 8
      pages/assets/bill.vue

7
layout/vPaging.vue

@ -58,6 +58,13 @@ export default {
});
},
},
watch:{
'$route' (to, from){
if(to.query.coin_name){
this.getList()
}
}
},
created() {},
};
</script>

8
pages/assets/bill.vue

@ -68,6 +68,14 @@ export default {
},
...mapGetters(['themeStyle'])
},
watch:{
'$route' (to, from){
if(to.query.coin_name){
this.query.coin_name = to.query.coin_name
this.appTokenAssets();
}
}
},
methods: {
omitTo:math.omitTo,
parseTime: date.parseTime,

Loading…
Cancel
Save