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:"ItemStoreRelationReport", |
||||
|
components:{popUpPage}, |
||||
|
mounted () { |
||||
|
this.openHandle() |
||||
|
}, |
||||
|
methods:{ |
||||
|
openHandle(){ |
||||
|
createNewTabs(reportsAddress.ItemStoreRelationReport + '?title=' + this.$route.meta.title) |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
Loading…
Reference in new issue