8 changed files with 155 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:"InventoryBalanceAg", |
|||
components:{popUpPage}, |
|||
mounted () { |
|||
this.openHandle() |
|||
}, |
|||
methods:{ |
|||
openHandle(){ |
|||
createNewTabs(reportsAddress.InventoryBalanceAg + '?title=' + this.$route.meta.title) |
|||
} |
|||
} |
|||
} |
|||
</script> |
@ -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:"dailyReconciliation", |
|||
components:{popUpPage}, |
|||
mounted () { |
|||
this.openHandle() |
|||
}, |
|||
methods:{ |
|||
openHandle(){ |
|||
createNewTabs(reportsAddress.dailyReconciliation + '?title=' + this.$route.meta.title) |
|||
} |
|||
} |
|||
} |
|||
</script> |
@ -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:"putInDetails", |
|||
components:{popUpPage}, |
|||
mounted () { |
|||
this.openHandle() |
|||
}, |
|||
methods:{ |
|||
openHandle(){ |
|||
createNewTabs(reportsAddress.putInDetails + '?title=' + this.$route.meta.title) |
|||
} |
|||
} |
|||
} |
|||
</script> |
@ -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:"putOutDetails", |
|||
components:{popUpPage}, |
|||
mounted () { |
|||
this.openHandle() |
|||
}, |
|||
methods:{ |
|||
openHandle(){ |
|||
createNewTabs(reportsAddress.putOutDetails + '?title=' + this.$route.meta.title) |
|||
} |
|||
} |
|||
} |
|||
</script> |
@ -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:"putaway", |
|||
components:{popUpPage}, |
|||
mounted () { |
|||
this.openHandle() |
|||
}, |
|||
methods:{ |
|||
openHandle(){ |
|||
createNewTabs(reportsAddress.putaway + '?title=' + this.$route.meta.title) |
|||
} |
|||
} |
|||
} |
|||
</script> |
@ -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:"returnAfterListing", |
|||
components:{popUpPage}, |
|||
mounted () { |
|||
this.openHandle() |
|||
}, |
|||
methods:{ |
|||
openHandle(){ |
|||
createNewTabs(reportsAddress.returnAfterListing + '?title=' + this.$route.meta.title) |
|||
} |
|||
} |
|||
} |
|||
</script> |
@ -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:"returnBeforeListing", |
|||
components:{popUpPage}, |
|||
mounted () { |
|||
this.openHandle() |
|||
}, |
|||
methods:{ |
|||
openHandle(){ |
|||
createNewTabs(reportsAddress.returnBeforeListing + '?title=' + this.$route.meta.title) |
|||
} |
|||
} |
|||
} |
|||
</script> |
Loading…
Reference in new issue