1、修复消防点位扫码无法正常显示点位信息H5bug修复

2、新增
liujun-07-22-风向模块迁移
liujun 2024-07-22 14:03:40 +08:00
parent 06a2348319
commit 5505de7f30
2 changed files with 40 additions and 7 deletions

View File

@ -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 H5created 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

View File

@ -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>