25 changed files with 79 additions and 83 deletions
@ -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") |
|||
} |
|||
}, |
|||
} |
|||
|
@ -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") |
|||
} |
|||
}, |
|||
} |
|||
|
@ -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") |
|||
} |
|||
}, |
|||
} |
|||
|
@ -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") |
|||
} |
|||
}, |
|||
} |
|||
|
Loading…
Reference in new issue