parent
06a2348319
commit
5505de7f30
|
@ -246,13 +246,14 @@ export default {
|
|||
handleShowQr(ROW) {
|
||||
this.dialogFormShow = true
|
||||
this.qrInfo = ROW
|
||||
// this.qrcodeStr = this.config.weburlWaiwang + 'static/qrcode/views/bsbw/point_list.html?id=' + ROW.FIRE_POINT_ID
|
||||
const json = {
|
||||
MANAGER_TYPE: 'fireListManager',
|
||||
FIRE_POINT_ID: ROW.FIRE_POINT_ID
|
||||
}
|
||||
const jsonStr = JSON.stringify(json)
|
||||
this.qrcodeStr = jsonStr
|
||||
// 2024-07-22 齐金城确认后,将代码还原,如果不还原则无法显示H5页面和。created by liu jun
|
||||
this.qrcodeStr = this.config.weburlWaiwang + 'static/qrcode/views/bsbw/point_list.html?id=' + ROW.FIRE_POINT_ID
|
||||
// const json = {
|
||||
// MANAGER_TYPE: 'fireListManager',
|
||||
// FIRE_POINT_ID: ROW.FIRE_POINT_ID
|
||||
// }
|
||||
// const jsonStr = JSON.stringify(json)
|
||||
// this.qrcodeStr = jsonStr
|
||||
},
|
||||
handleEdit(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