4 changed files with 51 additions and 3 deletions
@ -1,3 +1,3 @@ |
|||||
{ |
{ |
||||
"version": "1.0.12" |
"version": "1.0.13" |
||||
} |
} |
@ -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:"inventoryBalanceReportLocationCode", |
||||
|
// data() { |
||||
|
// return { |
||||
|
// url:reportsAddress.InventoryBlanace, |
||||
|
// } |
||||
|
// }, |
||||
|
data() { |
||||
|
return { |
||||
|
url:null |
||||
|
} |
||||
|
}, |
||||
|
activated () { |
||||
|
createNewTabs(reportsAddress.inventoryBalanceReportLocationCode) |
||||
|
} |
||||
|
} |
||||
|
</script> |
@ -0,0 +1,24 @@ |
|||||
|
<template> |
||||
|
<!-- 库存余额报表按ERP库位 --> |
||||
|
<iframe :src="url" class="fullPageIframe"></iframe> |
||||
|
</template> |
||||
|
<script> |
||||
|
import { reportsAddress } from "@/filters/excelOrReportsOption"; |
||||
|
import { createNewTabs } from '@/utils/index' |
||||
|
export default { |
||||
|
name:"inventoryBalanceReportLocationErpCode", |
||||
|
// data() { |
||||
|
// return { |
||||
|
// url:reportsAddress.InventoryBlanace, |
||||
|
// } |
||||
|
// }, |
||||
|
data() { |
||||
|
return { |
||||
|
url:null |
||||
|
} |
||||
|
}, |
||||
|
activated () { |
||||
|
createNewTabs(reportsAddress.inventoryBalanceReportLocationErpCode) |
||||
|
} |
||||
|
} |
||||
|
</script> |
Loading…
Reference in new issue