南昌市物联网技防平台-前端
zengh
2021-03-09 5a731fa204428b68f95a2c656c25d35e838d110d
src/views/clientManagement/clientManagement.vue
@@ -78,6 +78,21 @@
        </avue-crud>
        <el-drawer
          title="电子地图"
          append-to-body="true"
          :visible.sync="showMap"
        >
          <iframe
            id="mapDiv"
            ref="mapDiv"
            src="/map/index.html?openid=ClientManagement&ISinit=1"
            frameborder="0"
            width="100%"
            height="100%"
          ></iframe>
        </el-drawer>
      </basic-container>
    </el-col>
    <el-dialog title="缴费提醒" :visible.sync="dialogTableVisible" top="280px" custom-class="payWin" append-to-body="true">
@@ -104,6 +119,7 @@
      return {
        form: {},
        query: {},
        showMap: false,
        loading: true,
        page: {
          pageSize: 10,
@@ -527,7 +543,25 @@
          }
        });
      }
      },handleStart(row) {
        var arr = [];
        this.$store.state.tags.tagList.forEach(item => {
          if (item.label != "视频") {
            arr.push(item);
          }
        });
        this.$store.state.tags.tagList = arr;
        this.$router.push({
          path: `/real/video/`,query:row
        });
      },handleMap(row) {
        this.showMap = true;
        this.$nextTick(() => {
          this.$refs.mapDiv.onload = () => {
            window.frames[0].init("equipment",{x: row.jd, y: row.wd});
          };
        })
      },
    }
  };
</script>