2 changed files with 22 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||
<template> |
|||
<!-- 开账信息查询报表 --> |
|||
<popUpPage :openHandle="openHandle"></popUpPage> |
|||
</template> |
|||
<script> |
|||
import popUpPage from "../popUpPage/index.vue" |
|||
import { reportsAddress } from "@/filters/excelOrReportsOption"; |
|||
import { createNewTabs } from '@/utils/index' |
|||
export default { |
|||
name:"openingBalance", |
|||
components:{popUpPage}, |
|||
mounted () { |
|||
this.openHandle() |
|||
}, |
|||
methods:{ |
|||
openHandle(){ |
|||
createNewTabs(reportsAddress.openingBalance + '?title=' + this.$route.meta.title) |
|||
} |
|||
} |
|||
} |
|||
</script> |
Loading…
Reference in new issue