3 changed files with 44 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||||
|
<template> |
||||
|
<!-- 库存流水帐汇总(ERP储位)-账期 --> |
||||
|
<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:"InventoryBookSummaryERP_pay", |
||||
|
components:{popUpPage}, |
||||
|
mounted () { |
||||
|
this.openHandle() |
||||
|
}, |
||||
|
methods:{ |
||||
|
openHandle(){ |
||||
|
createNewTabs(reportsAddress.InventoryBookSummaryLocation + '?title=' + this.$route.meta.title) |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
@ -0,0 +1,21 @@ |
|||||
|
<template> |
||||
|
<!-- 库存流水账汇总(WMS库位)-账期 --> |
||||
|
<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:"InventoryBookSummaryWMS_pay", |
||||
|
components:{popUpPage}, |
||||
|
mounted () { |
||||
|
this.openHandle() |
||||
|
}, |
||||
|
methods:{ |
||||
|
openHandle(){ |
||||
|
createNewTabs(reportsAddress.InventoryBookSummaryLocation + '?title=' + this.$route.meta.title) |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
Loading…
Reference in new issue