2 changed files with 25 additions and 0 deletions
@ -0,0 +1,24 @@ |
|||||
|
<template> |
||||
|
<!-- 库存流水帐汇总(库位) --> |
||||
|
<iframe :src="url" class="fullPageIframe"></iframe> |
||||
|
</template> |
||||
|
<script> |
||||
|
import { reportsAddress } from "@/filters/excelOrReportsOption"; |
||||
|
import { createNewTabs } from '@/utils/index' |
||||
|
export default { |
||||
|
name:"InventoryBookSummaryLocation", |
||||
|
// data() { |
||||
|
// return { |
||||
|
// url: reportsAddress.InventoryBookSummaryLocation, |
||||
|
// } |
||||
|
// }, |
||||
|
data() { |
||||
|
return { |
||||
|
url:null |
||||
|
} |
||||
|
}, |
||||
|
activated () { |
||||
|
createNewTabs(reportsAddress.InventoryBookSummaryLocation) |
||||
|
} |
||||
|
} |
||||
|
</script> |
Loading…
Reference in new issue