|
@@ -258,7 +258,7 @@ export default {
|
|
|
// console.log(to, from, next, 898);
|
|
|
next(vm => {
|
|
|
// 这个时候组件还没有创建,所以要通过vm来访问
|
|
|
- if (from.path == '/finance/details/balance_sum' && to.path == '/finance/details/wallet' && vm.$route.query.id) {
|
|
|
+ if (from.path == '/finance/balance_sum' && to.path == '/finance/wallet' && vm.$route.query.id) {
|
|
|
// 只有是从A进到B页面才执行
|
|
|
// 将要执行的逻辑
|
|
|
vm.show = true
|
|
@@ -326,7 +326,7 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
fnJump({ customerId }, type) {
|
|
|
- this.$router.push(`/finance/details/standbook_list?status=${type}&customerId=${customerId}`)
|
|
|
+ this.$router.push(`/finance/standbook_list?status=${type}&customerId=${customerId}`)
|
|
|
},
|
|
|
exportCancelFn() {
|
|
|
this.exportForm = {
|