Browse Source

报表+看板弹出页面统一开发

dev_web_online
安虹睿 2 years ago
parent
commit
015b3d9e60
  1. 21
      fe/PC/src/views/activeReportManage/largeScreen/arrivalBoard.vue
  2. 21
      fe/PC/src/views/activeReportManage/largeScreen/logisticsTimeBoard.vue
  3. 21
      fe/PC/src/views/activeReportManage/largeScreen/planAndActualBoard.vue
  4. 21
      fe/PC/src/views/activeReportManage/largeScreen/warehouseBoard.vue
  5. 0
      fe/PC/src/views/activeReportManage/popUpPage/index.vue
  6. 4
      fe/PC/src/views/activeReportManage/reportForm/InventoryAgingSegmentSummary.vue
  7. 4
      fe/PC/src/views/activeReportManage/reportForm/InventoryBookDetail.vue
  8. 4
      fe/PC/src/views/activeReportManage/reportForm/InventoryBookSummary.vue
  9. 4
      fe/PC/src/views/activeReportManage/reportForm/InventoryBookSummaryLocation.vue
  10. 4
      fe/PC/src/views/activeReportManage/reportForm/InventoryDetailReport.vue
  11. 4
      fe/PC/src/views/activeReportManage/reportForm/UnplannedDeliverSummary.vue
  12. 4
      fe/PC/src/views/activeReportManage/reportForm/completionReceiptSummary.vue
  13. 4
      fe/PC/src/views/activeReportManage/reportForm/finishedProductDeliverySummary.vue
  14. 4
      fe/PC/src/views/activeReportManage/reportForm/inventoryBalanceReport.vue
  15. 4
      fe/PC/src/views/activeReportManage/reportForm/inventoryBalanceReportLocationCode.vue
  16. 4
      fe/PC/src/views/activeReportManage/reportForm/inventoryBalanceReportLocationErpCode.vue
  17. 4
      fe/PC/src/views/activeReportManage/reportForm/inventoryReport.vue
  18. 4
      fe/PC/src/views/activeReportManage/reportForm/inventorySummary.vue
  19. 4
      fe/PC/src/views/activeReportManage/reportForm/productionIssuanceSummary.vue
  20. 4
      fe/PC/src/views/activeReportManage/reportForm/productionReturnSummary.vue
  21. 2
      fe/PC/src/views/activeReportManage/reportForm/purchaseReceiptSummary.vue
  22. 4
      fe/PC/src/views/activeReportManage/reportForm/purchaseReturnSummaryReport.vue
  23. 4
      fe/PC/src/views/activeReportManage/reportForm/purchaseSum.vue
  24. 4
      fe/PC/src/views/activeReportManage/reportForm/scrapDetails.vue
  25. 4
      fe/PC/src/views/activeReportManage/reportForm/unplannedReceiptSummary.vue

21
fe/PC/src/views/activeReportManage/largeScreen/arrivalBoard.vue

@ -1,20 +1,19 @@
<template>
<iframe class="fullPageIframe" :src="url" frameborder="0"></iframe>
<!-- 到货信息指示屏 -->
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "../popUpPage/index.vue"
import { createNewTabs } from '@/utils/index'
export default {
data() {
return {
url:null
}
},
activated () {
// this.url = localStorage.getItem('largeScreen') + '/#/arrivalBoard'
this.goto()
name:"arrivalBoard",
components:{popUpPage},
mounted () {
this.openHandle()
},
methods: {
goto(){
window.open(localStorage.getItem('largeScreen') + "/#/arrivalBoard", "_blank")
openHandle(){
createNewTabs(localStorage.getItem('largeScreen') + "/#/arrivalBoard")
}
},
}

21
fe/PC/src/views/activeReportManage/largeScreen/logisticsTimeBoard.vue

@ -1,20 +1,19 @@
<template>
<iframe class="fullPageIframe" :src="url" frameborder="0"></iframe>
<!-- 物流时刻目视表 -->
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "../popUpPage/index.vue"
import { createNewTabs } from '@/utils/index'
export default {
data() {
return {
url:null
}
},
activated () {
// this.url = localStorage.getItem('largeScreen') + '/#/logisticsTimeBoard'
this.goto()
name:"logisticsTimeBoard",
components:{popUpPage},
mounted () {
this.openHandle()
},
methods: {
goto(){
window.open(localStorage.getItem('largeScreen') + "/#/logisticsTimeBoard", "_blank")
openHandle(){
createNewTabs(localStorage.getItem('largeScreen') + "/#/logisticsTimeBoard")
}
},
}

21
fe/PC/src/views/activeReportManage/largeScreen/planAndActualBoard.vue

@ -1,20 +1,19 @@
<template>
<iframe class="fullPageIframe" :src="url" frameborder="0"></iframe>
<!-- 纳入计划与实际 -->
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "../popUpPage/index.vue"
import { createNewTabs } from '@/utils/index'
export default {
data() {
return {
url:null
}
},
activated () {
// this.url = localStorage.getItem('largeScreen') + '/#/planAndActualBoard'
this.goto()
name:"planAndActualBoard",
components:{popUpPage},
mounted () {
this.openHandle()
},
methods: {
goto(){
window.open(localStorage.getItem('largeScreen') + "/#/planAndActualBoard", "_blank")
openHandle(){
createNewTabs(localStorage.getItem('largeScreen') + "/#/planAndActualBoard")
}
},
}

21
fe/PC/src/views/activeReportManage/largeScreen/warehouseBoard.vue

@ -1,20 +1,19 @@
<template>
<iframe class="fullPageIframe" :src="url" frameborder="0"></iframe>
<!-- 库房信息指示屏 -->
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "../popUpPage/index.vue"
import { createNewTabs } from '@/utils/index'
export default {
data() {
return {
url:null
}
},
activated () {
// this.url = localStorage.getItem('largeScreen') + '/#/warehouseBoard'
this.goto()
name:"warehouseBoard",
components:{popUpPage},
mounted () {
this.openHandle()
},
methods: {
goto(){
window.open(localStorage.getItem('largeScreen') + "/#/warehouseBoard", "_blank")
openHandle(){
createNewTabs(localStorage.getItem('largeScreen') + "/#/warehouseBoard")
}
},
}

0
fe/PC/src/views/activeReportManage/reportForm/popUpPage/index.vue → fe/PC/src/views/activeReportManage/popUpPage/index.vue

4
fe/PC/src/views/activeReportManage/reportForm/InventoryAgingSegmentSummary.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"InventoryAgingSegmentSummary",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/InventoryBookDetail.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"InventoryBookDetail",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/InventoryBookSummary.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"InventoryBookSummary",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/InventoryBookSummaryLocation.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"InventoryBookSummaryLocation",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/InventoryDetailReport.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"InventoryDetailReport",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/UnplannedDeliverSummary.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"UnplannedDeliverSummary",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/completionReceiptSummary.vue

@ -4,7 +4,7 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
@ -16,7 +16,7 @@ export default {
url:null
}
},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/finishedProductDeliverySummary.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"finishedProductDeliverySummary",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/inventoryBalanceReport.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"inventoryBalanceReport",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/inventoryBalanceReportLocationCode.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"inventoryBalanceReportLocationCode",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/inventoryBalanceReportLocationErpCode.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"inventoryBalanceReportLocationErpCode",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/inventoryReport.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"inventoryReport",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/inventorySummary.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"inventorySummary",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/productionIssuanceSummary.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"productionIssuanceSummary",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/productionReturnSummary.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"productionReturnSummary",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

2
fe/PC/src/views/activeReportManage/reportForm/purchaseReceiptSummary.vue

@ -3,7 +3,7 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {

4
fe/PC/src/views/activeReportManage/reportForm/purchaseReturnSummaryReport.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"purchaseReturnSummaryReport",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/purchaseSum.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"purchaseSum",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/scrapDetails.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"scrapDetails",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

4
fe/PC/src/views/activeReportManage/reportForm/unplannedReceiptSummary.vue

@ -3,13 +3,13 @@
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "./popUpPage/index"
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"unplannedReceiptSummary",
components:{popUpPage},
created () {
mounted () {
this.openHandle()
},
methods:{

Loading…
Cancel
Save