parent
06a2348319
commit
5505de7f30
|
@ -246,13 +246,14 @@ export default {
|
||||||
handleShowQr(ROW) {
|
handleShowQr(ROW) {
|
||||||
this.dialogFormShow = true
|
this.dialogFormShow = true
|
||||||
this.qrInfo = ROW
|
this.qrInfo = ROW
|
||||||
// this.qrcodeStr = this.config.weburlWaiwang + 'static/qrcode/views/bsbw/point_list.html?id=' + ROW.FIRE_POINT_ID
|
// 2024-07-22 齐金城确认后,将代码还原,如果不还原则无法显示H5页面和。created by liu jun
|
||||||
const json = {
|
this.qrcodeStr = this.config.weburlWaiwang + 'static/qrcode/views/bsbw/point_list.html?id=' + ROW.FIRE_POINT_ID
|
||||||
MANAGER_TYPE: 'fireListManager',
|
// const json = {
|
||||||
FIRE_POINT_ID: ROW.FIRE_POINT_ID
|
// MANAGER_TYPE: 'fireListManager',
|
||||||
}
|
// FIRE_POINT_ID: ROW.FIRE_POINT_ID
|
||||||
const jsonStr = JSON.stringify(json)
|
// }
|
||||||
this.qrcodeStr = jsonStr
|
// const jsonStr = JSON.stringify(json)
|
||||||
|
// this.qrcodeStr = jsonStr
|
||||||
},
|
},
|
||||||
handleEdit(FIRE_POINT_ID) {
|
handleEdit(FIRE_POINT_ID) {
|
||||||
this.$parent.FIRE_POINT_ID = FIRE_POINT_ID
|
this.$parent.FIRE_POINT_ID = FIRE_POINT_ID
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
<template>
|
||||||
|
<div class="iframe-container">
|
||||||
|
<iframe
|
||||||
|
:src="'http://192.168.42.57:8080/QinHuangDao'"
|
||||||
|
width="100%"
|
||||||
|
height="100%"
|
||||||
|
allowfullscreen
|
||||||
|
style="overflow-y:hidden;overflow-x:hidden;"/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.iframe-container {
|
||||||
|
position: fixed;
|
||||||
|
top: 10;
|
||||||
|
left: 10;
|
||||||
|
width: 90%;
|
||||||
|
height: 90%;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue