From a70e793398b4c6594e9aa9894af1e439ce80f579 Mon Sep 17 00:00:00 2001
From: zengh <123456>
Date: Sun, 21 Feb 2021 14:07:50 +0800
Subject: [PATCH] 外网版本(接口地址、端口等改动)

---
 src/views/realTimePolice/real.vue | 1634 +++++++++++++++++++++++++++++----------------------------
 1 files changed, 829 insertions(+), 805 deletions(-)

diff --git a/src/views/realTimePolice/real.vue b/src/views/realTimePolice/real.vue
index f1b1aa4..812fb59 100644
--- a/src/views/realTimePolice/real.vue
+++ b/src/views/realTimePolice/real.vue
@@ -29,35 +29,39 @@
           plain
           v-if="permission.real_delete"
           @click="handleDelete"
-          >删 除
+        >删 除
         </el-button>
       </template>
 
       <template slot="menuLeft">
         <el-button
+          v-bind:class=" activeClass==1 ? 'btn-color' : '' "
           size="small"
           type="primary"
-          @click="getBZdata"
-          >本周
+          @click="getBZdata(1)"
+        >本周
         </el-button>
         <el-button
+          v-bind:class=" activeClass==2 ? 'btn-color' : '' "
           size="small"
           type="primary"
-          @click="getBYdata"
-          >本月
+          @click="getBYdata(2)"
+        >本月
         </el-button>
         <el-button
+          v-bind:class=" activeClass==3 ? 'btn-color' : '' "
           size="small"
           type="primary"
-          @click="getQBdata"
-          >全部
+          @click="getQBdata(3)"
+        >全部
         </el-button>
       </template>
 
       <template slot-scope="{ row }" slot="jtype">
         <el-tag>{{
           row.jtype == "0" ? "否" : row.jtype == "1" ? "是" : "无"
-        }}</el-tag>
+          }}
+        </el-tag>
       </template>
 
       <template slot-scope="{ type, size, row }" slot="menu">
@@ -66,28 +70,32 @@
           :size="size"
           :type="type"
           @click.stop="handleHistory(row)"
-          >历史</el-button
+        >历史
+        </el-button
         >
         <el-button
           icon="el-icon-video-camera-solid"
           :size="size"
           :type="type"
           @click.stop="handleStart(row)"
-          >视频</el-button
+        >视频
+        </el-button
         >
         <el-button
           icon="el-icon-edit"
           :size="size"
           :type="type"
           @click.stop="handleManage(row)"
-          >处置</el-button
+        >处置
+        </el-button
         >
         <el-button
           icon="el-icon-location-outline"
           :size="size"
           :type="type"
           @click.stop="handleMap(row)"
-          >定位</el-button
+        >定位
+        </el-button
         >
       </template>
     </avue-crud>
@@ -216,7 +224,8 @@
           <el-col span="12">
             <el-form-item label="历史视频">
               <el-button type="primary" @click.stop="queryOldVideo(form)"
-                >查看视频</el-button
+              >查看视频
+              </el-button
               >
             </el-form-item>
           </el-col>
@@ -255,14 +264,17 @@
                 :class="{ active: isActive }"
                 type="success"
                 @click.stop="aKeyToCall($event, form)"
-                >一键呼叫</el-button
+              >一键呼叫
+              </el-button
               >
               <el-button type="success">视频对讲</el-button>
               <el-button type="primary" @click.stop="generate(form)"
-                >生成警单</el-button
+              >生成警单
+              </el-button
               >
               <el-button type="warning" @click.stop="revoke(form)"
-                >警情撤销</el-button
+              >警情撤销
+              </el-button
               >
               <el-button type="danger">推送110</el-button>
             </el-form-item>
@@ -289,846 +301,858 @@
 </template>
 
 <script>
-import { getList, remove, update, add, getclient } from "@/api/real/real";
-import { mapGetters } from "vuex";
+  import {getList, remove, update, add, getclient} from "@/api/real/real";
+  import {mapGetters} from "vuex";
 
-import Hls from "hls.js";
+  import Hls from "hls.js";
 
-import axios from "axios";
+  import axios from "axios";
 
-import Recorder from "js-audio-recorder";
+  import Recorder from "js-audio-recorder";
 
-export default {
-  data() {
-    return {
-      showMap: false,
-      hls: "",
-      videoSource: "",
-      dialogTableVisible: false,
-      innerVisibleVideo: false,
-      form: {},
-      query: {},
-      dateTime: [],
-      loading: true,
-      page: {
-        pageSize: 10,
-        currentPage: 1,
-        total: 0
-      },
-      selectionList: [],
-      option: {
-        height: "auto",
-        indexLabel: "序号",
-        calcHeight: 30,
-        labelWidth: "100",
-        size:"mini",
-        menuWidth: 240,
-        dialogWidth: 950,
-        tip: false,
-        searchShow: true,
-        searchMenuSpan: 3,
-        border: true,
-        index: true,
-        viewBtn: true,
-        selection: false,
-        dialogClickModal: false,
-        column: [
-          {
-            label: "警情类型",
-            prop: "waringType",
-            search: true,
-            searchSpan: 3
-          },
-          {
-            label: "报警时间",
-            type: "datetime",
-            width: 130,
-            format: "yyyy-MM-dd HH:mm:ss",
-            valueFormat: "yyyy-MM-dd HH:mm:ss",
-            prop: "alarmTime"
-          },
-          {
-            label: "报警时间",
-            prop: "releaseTimeRange",
-            type: "datetime",
-            format: "yyyy-MM-dd HH:mm:ss",
-            valueFormat: "yyyy-MM-dd HH:mm:ss",
-            searchRange: true,
-            searchSpan: 5,
-            hide: true,
-            addDisplay: false,
-            editDisplay: false,
-            viewDisplay: false,
-            search: true,
-            rules: [
-              {
-                required: true,
-                message: "请输入时间",
-                trigger: "blur"
-              }
-            ]
-          },
-          {
-            label: "报警内容",
-            prop: "rname"
-          },
-          {
-            label: "报警人",
-            prop: "alarmPeople"
-          },
-          {
-            label: "联系电话",
-            prop: "phoneNumber",
-            width: 130
-          },
-          {
-            label: "接警人",
-            prop: "galarmPeople"
-          },
-          {
-            label: "接警时间",
-            type: "datetime",
-            format: "yyyy-MM-dd HH:mm:ss",
-            valueFormat: "yyyy-MM-dd HH:mm:ss",
-            width: 130,
-            prop: "jjTime"
-          },
-          {
-            label: "事发地址",
-            width: 200,
-            prop: "place"
-          },
-          {
-            label: "设备编号",
-            search: true,
-            searchSpan: 3,
-            width: 130,
-            prop: "deviceNumber"
-          },
-          {
-            label: "生成警单",
-            search: true,
-            searchSpan: 3,
-            slot: true,
-            searchPlaceholder: "",
-            prop: "jtype",
-            type: "select",
-            dicData: [
-              {
-                label: "否",
-                value: "0"
+  export default {
+    data() {
+      return {
+        showMap: false,
+        hls: "",
+        videoSource: "",
+        dialogTableVisible: false,
+        innerVisibleVideo: false,
+        activeClass: -1,
+        form: {},
+        query: {},
+        dateTime: [],
+        loading: true,
+        page: {
+          pageSize: 10,
+          currentPage: 1,
+          total: 0
+        },
+        selectionList: [],
+        option: {
+          height: "auto",
+          indexLabel: "序号",
+          calcHeight: 30,
+          labelWidth: "100",
+          size: "mini",
+          menuWidth: 240,
+          dialogWidth: 950,
+          tip: false,
+          searchShow: true,
+          searchMenuSpan: 3,
+          border: true,
+          index: true,
+          viewBtn: true,
+          selection: false,
+          dialogClickModal: false,
+          column: [
+            {
+              label: "警情类型",
+              prop: "waringType",
+              search: true,
+              searchSpan: 3
+            },
+            {
+              label: "报警时间",
+              type: "datetime",
+              width: 130,
+              format: "yyyy-MM-dd HH:mm:ss",
+              valueFormat: "yyyy-MM-dd HH:mm:ss",
+              prop: "alarmTime"
+            },
+            {
+              label: "报警时间",
+              prop: "releaseTimeRange",
+              type: "datetime",
+              format: "yyyy-MM-dd HH:mm:ss",
+              valueFormat: "yyyy-MM-dd HH:mm:ss",
+              searchRange: true,
+              searchSpan: 5,
+              hide: true,
+              addDisplay: false,
+              editDisplay: false,
+              viewDisplay: false,
+              search: true,
+              rules: [
+                {
+                  required: true,
+                  message: "请输入时间",
+                  trigger: "blur"
+                }
+              ]
+            },
+            {
+              label: "报警内容",
+              prop: "rname"
+            },
+            {
+              label: "报警人",
+              prop: "alarmPeople"
+            },
+            {
+              label: "联系电话",
+              prop: "phoneNumber",
+              width: 130
+            },
+            {
+              label: "接警人",
+              prop: "galarmPeople"
+            },
+            {
+              label: "接警时间",
+              type: "datetime",
+              format: "yyyy-MM-dd HH:mm:ss",
+              valueFormat: "yyyy-MM-dd HH:mm:ss",
+              width: 130,
+              prop: "jjTime"
+            },
+            {
+              label: "事发地址",
+              width: 200,
+              prop: "place"
+            },
+            {
+              label: "设备编号",
+              search: true,
+              searchSpan: 3,
+              width: 130,
+              prop: "deviceNumber"
+            },
+            {
+              label: "生成警单",
+              search: true,
+              searchSpan: 3,
+              slot: true,
+              searchPlaceholder: "",
+              prop: "jtype",
+              type: "select",
+              dicData: [
+                {
+                  label: "否",
+                  value: "0"
+                },
+                {
+                  label: "是",
+                  value: "1"
+                }
+              ]
+            },
+            {
+              label: "省份",
+              prop: "province",
+              search: true,
+              searchSpan: 3,
+              searchLabelWidth: 60,
+              placeholder: "省份",
+              type: "select",
+              props: {
+                label: "name",
+                value: "code"
               },
-              {
-                label: "是",
-                value: "1"
-              }
-            ]
-          },
-          {
-            label: "省份",
-            prop: "province",
-            search: true,
-            searchSpan: 3,
-            searchLabelWidth: 60,
-            placeholder: "省份",
-            type: "select",
-            props: {
-              label: "name",
-              value: "code"
+              cascaderItem: ["city", "district"],
+              dicUrl: "/api/blade-system/region/select",
+              span: 6,
+              className: "cityClass1"
             },
-            cascaderItem: ["city", "district"],
-            dicUrl: "/api/blade-system/region/select",
-            span: 6,
-            className: "cityClass1"
-          },
-          {
-            label: "地市",
-            prop: "city",
-            type: "select",
-            searchPlaceholder: "地市",
-            placeholder: "地市",
-            searchLabelWidth: 1,
-            searchSpan: 2,
-            search: true,
-            props: {
-              label: "name",
-              value: "code"
+            {
+              label: "地市",
+              prop: "city",
+              type: "select",
+              searchPlaceholder: "地市",
+              placeholder: "地市",
+              searchLabelWidth: 1,
+              searchSpan: 2,
+              search: true,
+              props: {
+                label: "name",
+                value: "code"
+              },
+              dicUrl: "/api/blade-system/region/select?code={{key}}",
+              span: 3,
+              labelWidth: "0",
+              className: "cityClass2"
             },
-            dicUrl: "/api/blade-system/region/select?code={{key}}",
-            span: 3,
-            labelWidth: "0",
-            className: "cityClass2"
-          },
-          {
-            label: "区县",
-            searchSpan: 2,
-            searchLabelWidth: 1,
-            searchPlaceholder: "区县",
-            placeholder: "区县",
-            search: true,
-            prop: "district",
-            type: "select",
-            props: {
-              label: "name",
-              value: "code"
-            },
-            dicUrl: "/api/blade-system/region/select?code={{key}}",
-            span: 3,
-            labelWidth: "0",
-            className: "cityClass3"
-          }
-        ]
+            {
+              label: "区县",
+              searchSpan: 2,
+              searchLabelWidth: 1,
+              searchPlaceholder: "区县",
+              placeholder: "区县",
+              search: true,
+              prop: "district",
+              type: "select",
+              props: {
+                label: "name",
+                value: "code"
+              },
+              dicUrl: "/api/blade-system/region/select?code={{key}}",
+              span: 3,
+              labelWidth: "0",
+              className: "cityClass3"
+            }
+          ]
+        },
+        data: [],
+        isActive: false,
+        recorder: null
+      };
+    },
+    computed: {
+      ...mapGetters(["permission", "flowRoutes"]),
+      permissionList() {
+        return {
+          addBtn: this.vaildData(this.permission.real_add, false),
+          viewBtn: this.vaildData(null, false),
+          delBtn: this.vaildData(this.permission.real_delete, false),
+          editBtn: this.vaildData(this.permission.real_edit, false)
+        };
       },
-      data: [],
-      isActive: false,
-      recorder: null
-    };
-  },
-  computed: {
-    ...mapGetters(["permission", "flowRoutes"]),
-    permissionList() {
-      return {
-        addBtn: this.vaildData(this.permission.real_add, false),
-        viewBtn: this.vaildData(null, false),
-        delBtn: this.vaildData(this.permission.real_delete, false),
-        editBtn: this.vaildData(this.permission.real_edit, false)
-      };
-    },
-    ids() {
-      let ids = [];
-      this.selectionList.forEach(ele => {
-        ids.push(ele.id);
-      });
-      return ids.join(",");
-    }
-  },
-  created() {
-    this.dateTime = this.getDate();
-
-    this.recorder = new Recorder({
-      sampleBits: 16, // 采样位数,支持 8 或 16,默认是16
-      sampleRate: 16000, // 采样率,支持 11025、16000、22050、24000、44100、48000,根据浏览器默认值,我的chrome是48000
-      numChannels: 1 // 声道,支持 1 或 2, 默认是1
-      // compiling: false,(0.x版本中生效,1.x增加中)  // 是否边录边转换,默认是false
-    });
-  },
-  methods: {
-    rowSave(row, done, loading) {
-      add(row).then(
-        () => {
-          this.onLoad(this.page);
-          this.$message({
-            type: "success",
-            message: "操作成功!"
-          });
-          done();
-        },
-        error => {
-          window.console.log(error);
-          loading();
-        }
-      );
-    },
-    rowUpdate(row, index, done, loading) {
-      row.coordinate = "";
-      update(row).then(
-        () => {
-          this.onLoad(this.page);
-          this.$message({
-            type: "success",
-            message: "操作成功!"
-          });
-          done();
-        },
-        error => {
-          window.console.log(error);
-          loading();
-        }
-      );
-    },
-    rowDel(row) {
-      this.$confirm("确定将选择数据删除?", {
-        confirmButtonText: "确定",
-        cancelButtonText: "取消",
-        type: "warning"
-      })
-        .then(() => {
-          return remove(row.id);
-        })
-        .then(() => {
-          this.onLoad(this.page);
-          this.$message({
-            type: "success",
-            message: "操作成功!"
-          });
+      ids() {
+        let ids = [];
+        this.selectionList.forEach(ele => {
+          ids.push(ele.id);
         });
-    },
-    searchReset() {
-      this.query = {};
-      this.onLoad(this.page);
-    },
-    searchChange(params, done) {
-      this.query = params;
-      this.page.currentPage = 1;
-      this.onLoad(this.page, params);
-      done();
-    },
-    selectionChange(list) {
-      this.selectionList = list;
-    },
-    selectionClear() {
-      this.selectionList = [];
-      this.$refs.crud.toggleSelection();
-    },
-    handleDelete() {
-      if (this.selectionList.length === 0) {
-        this.$message.warning("请选择至少一条数据");
-        return;
+        return ids.join(",");
       }
-      this.$confirm("确定将选择数据删除?", {
-        confirmButtonText: "确定",
-        cancelButtonText: "取消",
-        type: "warning"
-      })
-        .then(() => {
-          return remove(this.ids);
-        })
-        .then(() => {
-          this.onLoad(this.page);
-          this.$message({
-            type: "success",
-            message: "操作成功!"
-          });
-          this.$refs.crud.toggleSelection();
-        });
     },
-    beforeOpen(done, type) {
-      if (["edit", "view"].includes(type)) {
-        getclient(this.form.id).then(res => {
-          this.form = res.data.data;
-        });
-      }
-      done();
-    },
-    currentChange(currentPage) {
-      this.page.currentPage = currentPage;
-    },
-    sizeChange(pageSize) {
-      this.page.pageSize = pageSize;
-    },
-    refreshChange() {
-      this.onLoad(this.page, this.query);
-    },
-    onLoad(page, params = {}) {
-      const { releaseTimeRange } = this.query;
-      let values = {
-        ...params
-      };
-      if (releaseTimeRange) {
-        values = {
-          ...params,
-          beginTime: releaseTimeRange[0],
-          endTime: releaseTimeRange[1],
-          ...this.query
-        };
-        values.releaseTimeRange = null;
-      }else{
-        values = {
-          ...params,
-          ...this.query
-        };
-      }
-      this.loading = true;
-      getList(page.currentPage, page.pageSize, values).then(res => {
-        const data = res.data.data;
-        this.page.total = data.total;
+    created() {
+      this.dateTime = this.getDate();
 
-        data.records.sort((a,b)=>{
-          return a.jtype - b.jtype;
-        });
-
-        this.data = data.records;
-        this.loading = false;
-        this.selectionClear();
+      this.recorder = new Recorder({
+        sampleBits: 16, // 采样位数,支持 8 或 16,默认是16
+        sampleRate: 16000, // 采样率,支持 11025、16000、22050、24000、44100、48000,根据浏览器默认值,我的chrome是48000
+        numChannels: 1 // 声道,支持 1 或 2, 默认是1
+        // compiling: false,(0.x版本中生效,1.x增加中)  // 是否边录边转换,默认是false
       });
     },
-    getDate() {
-      // 当前时间
-      var timestamp = Date.parse(new Date());
-      var serverDate = new Date(timestamp);
-
-      // 本周周一的时间
-      var mondayTime =
-        timestamp - (serverDate.getDay() - 1) * 24 * 60 * 60 * 1000;
-      var mondayData = new Date(mondayTime);
-      //年
-      var mondayY = mondayData.getFullYear();
-      //月
-      var mondayM =
-        mondayData.getMonth() + 1 < 10
-          ? "0" + (mondayData.getMonth() + 1)
-          : mondayData.getMonth() + 1;
-      //日
-      var mondayD =
-        mondayData.getDate() < 10
-          ? "0" + mondayData.getDate()
-          : mondayData.getDate();
-      // 当前时间
-      var currentData = new Date(timestamp);
-      //年
-      var currentY = currentData.getFullYear();
-      //月
-      var currentM =
-        currentData.getMonth() + 1 < 10
-          ? "0" + (currentData.getMonth() + 1)
-          : currentData.getMonth() + 1;
-      //日
-      var currentD =
-        currentData.getDate() < 10
-          ? "0" + currentData.getDate()
-          : currentData.getDate();
-      //时
-      var currenH =
-        currentData.getHours() < 10
-          ? "0" + currentData.getHours()
-          : currentData.getHours();
-      //分
-      var currenM =
-        currentData.getMinutes() < 10
-          ? "0" + currentData.getMinutes()
-          : currentData.getMinutes();
-
-      return {
-        week: {
-          beginTime: mondayY + "-" + mondayM + "-" + mondayD + " 00:00:00",
-          endTime:
-            currentY +
-            "-" +
-            currentM +
-            "-" +
-            currentD +
-            " " +
-            currenH +
-            ":" +
-            currenM +
-            ":00"
-        },
-        month: {
-          beginTime: mondayY + "-" + mondayM + "-01 00:00:00",
-          endTime:
-            currentY +
-            "-" +
-            currentM +
-            "-" +
-            currentD +
-            " " +
-            currenH +
-            ":" +
-            currenM +
-            ":00"
-        }
-      };
-    },
-    getBZdata() {
-      var params = {
-        beginTime: this.dateTime.week.beginTime,
-        endTime: this.dateTime.week.endTime
-      };
-      this.query = params;
-      this.page.currentPage = 1;
-      this.onLoad(this.page, params);
-    },
-    getBYdata() {
-      var params = {
-        beginTime: this.dateTime.month.beginTime,
-        endTime: this.dateTime.month.endTime
-      };
-      this.query = params;
-      this.page.currentPage = 1;
-      this.onLoad(this.page, params);
-    },
-    getQBdata() {
-      var params = {};
-      this.query = params;
-      this.page.currentPage = 1;
-      this.onLoad(this.page, params);
-    },
-    rowStyle({ row, column, rowIndex }) {
-      if (row.jtype == "1") {
-        return {
-          color: "#15a2fe"
-        };
-      } else {
-        return {
-          color: "#ff2727"
-        };
-      }
-    },
-    handleStart(row) {
-      debugger
-      this.$router.push({
-        path: `/real/video/${row.channelNumber}/${row.serialNumber}`
-      });
-    },
-    handleHistory(row) {
-      this.$router.push({ path: `/real/history/${row.deviceNumber}` });
-    },
-    handleMap(row) {
-      this.showMap = true;
-      this.$nextTick(() => {
-        this.$refs.mapDiv.onload = () => {
-          window.frames[0].locationObj = {x:row.jd,y:row.wd};
-        };
-      })
-    },
-    handleManage(row) {
-      this.form = row;
-      this.dialogTableVisible = true;
-    },
-    generate(row) {
-      var that = this;
-      if (row.czTime == "" || row.czTime == null) {
-        this.$message({
-          message: "请选择处置时间",
+    methods: {
+      rowSave(row, done, loading) {
+        add(row).then(
+          () => {
+            this.onLoad(this.page);
+            this.$message({
+              type: "success",
+              message: "操作成功!"
+            });
+            done();
+          },
+          error => {
+            window.console.log(error);
+            loading();
+          }
+        );
+      },
+      rowUpdate(row, index, done, loading) {
+        row.coordinate = "";
+        update(row).then(
+          () => {
+            this.onLoad(this.page);
+            this.$message({
+              type: "success",
+              message: "操作成功!"
+            });
+            done();
+          },
+          error => {
+            window.console.log(error);
+            loading();
+          }
+        );
+      },
+      rowDel(row) {
+        this.$confirm("确定将选择数据删除?", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
           type: "warning"
+        })
+          .then(() => {
+            return remove(row.id);
+          })
+          .then(() => {
+            this.onLoad(this.page);
+            this.$message({
+              type: "success",
+              message: "操作成功!"
+            });
+          });
+      },
+      searchReset() {
+        this.query = {};
+        this.onLoad(this.page);
+      },
+      searchChange(params, done) {
+        this.query = params;
+        this.page.currentPage = 1;
+        this.onLoad(this.page, params);
+        done();
+      },
+      selectionChange(list) {
+        this.selectionList = list;
+      },
+      selectionClear() {
+        this.selectionList = [];
+        this.$refs.crud.toggleSelection();
+      },
+      handleDelete() {
+        if (this.selectionList.length === 0) {
+          this.$message.warning("请选择至少一条数据");
+          return;
+        }
+        this.$confirm("确定将选择数据删除?", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        })
+          .then(() => {
+            return remove(this.ids);
+          })
+          .then(() => {
+            this.onLoad(this.page);
+            this.$message({
+              type: "success",
+              message: "操作成功!"
+            });
+            this.$refs.crud.toggleSelection();
+          });
+      },
+      beforeOpen(done, type) {
+        if (["edit", "view"].includes(type)) {
+          getclient(this.form.id).then(res => {
+            this.form = res.data.data;
+          });
+        }
+        done();
+      },
+      currentChange(currentPage) {
+        this.page.currentPage = currentPage;
+      },
+      sizeChange(pageSize) {
+        this.page.pageSize = pageSize;
+      },
+      refreshChange() {
+        this.onLoad(this.page, this.query);
+      },
+      onLoad(page, params = {}) {
+        const {releaseTimeRange} = this.query;
+        let values = {
+          ...params
+        };
+        if (releaseTimeRange) {
+          values = {
+            ...params,
+            beginTime: releaseTimeRange[0],
+            endTime: releaseTimeRange[1],
+            ...this.query
+          };
+          values.releaseTimeRange = null;
+        } else {
+          values = {
+            ...params,
+            ...this.query
+          };
+        }
+        this.loading = true;
+        getList(page.currentPage, page.pageSize, values).then(res => {
+          const data = res.data.data;
+          this.page.total = data.total;
+
+          data.records.sort((a, b) => {
+            return a.jtype - b.jtype;
+          });
+
+          this.data = data.records;
+          this.loading = false;
+          this.selectionClear();
         });
-      } else {
+      },
+      getDate() {
+        // 当前时间
+        var timestamp = Date.parse(new Date());
+        var serverDate = new Date(timestamp);
+
+        // 本周周一的时间
+        var mondayTime =
+          timestamp - (serverDate.getDay() - 1) * 24 * 60 * 60 * 1000;
+        var mondayData = new Date(mondayTime);
+        //年
+        var mondayY = mondayData.getFullYear();
+        //月
+        var mondayM =
+          mondayData.getMonth() + 1 < 10
+            ? "0" + (mondayData.getMonth() + 1)
+            : mondayData.getMonth() + 1;
+        //日
+        var mondayD =
+          mondayData.getDate() < 10
+            ? "0" + mondayData.getDate()
+            : mondayData.getDate();
+        // 当前时间
+        var currentData = new Date(timestamp);
+        //年
+        var currentY = currentData.getFullYear();
+        //月
+        var currentM =
+          currentData.getMonth() + 1 < 10
+            ? "0" + (currentData.getMonth() + 1)
+            : currentData.getMonth() + 1;
+        //日
+        var currentD =
+          currentData.getDate() < 10
+            ? "0" + currentData.getDate()
+            : currentData.getDate();
+        //时
+        var currenH =
+          currentData.getHours() < 10
+            ? "0" + currentData.getHours()
+            : currentData.getHours();
+        //分
+        var currenM =
+          currentData.getMinutes() < 10
+            ? "0" + currentData.getMinutes()
+            : currentData.getMinutes();
+
+        return {
+          week: {
+            beginTime: mondayY + "-" + mondayM + "-" + mondayD + " 00:00:00",
+            endTime:
+              currentY +
+              "-" +
+              currentM +
+              "-" +
+              currentD +
+              " " +
+              currenH +
+              ":" +
+              currenM +
+              ":00"
+          },
+          month: {
+            beginTime: mondayY + "-" + mondayM + "-01 00:00:00",
+            endTime:
+              currentY +
+              "-" +
+              currentM +
+              "-" +
+              currentD +
+              " " +
+              currenH +
+              ":" +
+              currenM +
+              ":00"
+          }
+        };
+      },
+      getBZdata(e) {
+        this.activeClass = e;
+        var params = {
+          beginTime: this.dateTime.week.beginTime,
+          endTime: this.dateTime.week.endTime
+        };
+        this.query = params;
+        this.page.currentPage = 1;
+        this.onLoad(this.page, params);
+      },
+      getBYdata(e) {
+        this.activeClass = e;
+        var params = {
+          beginTime: this.dateTime.month.beginTime,
+          endTime: this.dateTime.month.endTime
+        };
+        this.query = params;
+        this.page.currentPage = 1;
+        this.onLoad(this.page, params);
+      },
+      getQBdata(e) {
+        this.activeClass = e;
+        var params = {};
+        this.query = params;
+        this.page.currentPage = 1;
+        this.onLoad(this.page, params);
+      },
+      rowStyle({row, column, rowIndex}) {
+        if (row.jtype == "1") {
+          return {
+            color: "#15a2fe"
+          };
+        } else {
+          return {
+            color: "#ff2727"
+          };
+        }
+      },
+      handleStart(row) {
+        debugger
+        this.$router.push({
+          path: `/real/video/${row.channelNumber}/${row.serialNumber}`
+        });
+      },
+      handleHistory(row) {
+        this.$router.push({path: `/real/history/${row.deviceNumber}`});
+      },
+      handleMap(row) {
+        this.showMap = true;
+        this.$nextTick(() => {
+          this.$refs.mapDiv.onload = () => {
+            window.frames[0].locationObj = {x: row.jd, y: row.wd};
+          };
+        })
+      },
+      handleManage(row) {
+        this.form = row;
+        this.dialogTableVisible = true;
+      },
+      generate(row) {
+        var that = this;
+        if (row.czTime == "" || row.czTime == null) {
+          this.$message({
+            message: "请选择处置时间",
+            type: "warning"
+          });
+        } else {
+          axios({
+            url:
+              "/api/blade-jfpts/jingdan/jingdan/submit",
+            method: "post",
+            data: {
+              rName: row.rname,
+              galarmPeople: row.galarmPeople,
+              phoneNumber: row.phoneNumber,
+              place: row.place,
+              content: row.content,
+              galarmTime: row.alarmTime,
+              waringType: row.waringType,
+              deviceNumber: row.deviceNumber,
+              type: "0",
+              handleP: null,
+              handleTime: null,
+              handName: null,
+              level: row.level,
+              coordinate: null,
+              jd: row.jd,
+              wd: row.wd,
+              addvcd: row.district,
+              czTime: row.czTime,
+              jjTime: row.jjTime,
+              bz: row.bz
+            }
+          })
+            .then(function (response) {
+              that.$message({
+                message: "生成警单成功",
+                type: "success"
+              });
+              that.updateJtyep(row);
+              that.dialogTableVisible = false;
+            })
+            .catch(function (error) {
+              that.dialogTableVisible = false;
+            });
+        }
+      },
+      revoke(row) {
+        var that = this;
         axios({
           url:
-            "/api/blade-jfpts/jingdan/jingdan/submit",
-          method: "post",
-          data: {
-            rName: row.rname,
-            galarmPeople: row.galarmPeople,
-            phoneNumber: row.phoneNumber,
-            place: row.place,
-            content: row.content,
-            galarmTime: row.alarmTime,
-            waringType: row.waringType,
-            deviceNumber: row.deviceNumber,
-            type: "0",
-            handleP: null,
-            handleTime: null,
-            handName: null,
-            level: row.level,
-            coordinate: null,
-            jd: row.jd,
-            wd: row.wd,
-            addvcd: row.district,
-            czTime: row.czTime,
-            jjTime: row.jjTime,
-            bz: row.bz
-          }
-        })
-          .then(function(response) {
-            that.$message({
-              message: "生成警单成功",
-              type: "success"
-            });
-            that.updateJtyep(row);
-            that.dialogTableVisible = false;
-          })
-          .catch(function(error) {
-            that.dialogTableVisible = false;
-          });
-      }
-    },
-    revoke(row) {
-      var that = this;
-      axios({
-        url:
-          "/api/blade-jfpts/alarm/alarm/deletejj?id=" +
-          row.id,
-        method: "post"
-      }).then(function() {
-        that.dialogTableVisible = false;
-        that.onLoad(that.page, that.query);
-      });
-    },
-    updateJtyep(row) {
-      var that = this;
-      axios({
-        url:
-          "/api/blade-jfpts/alarm/alarm/updateJtype?id=" +
-          row.id +
-          "&czTime=" +
-          row.czTime +
-          "&bz=" +
-          row.bz,
-        method: "post"
-      }).then(function() {
-        that.onLoad(that.page, that.query);
-      });
-    },
-
-    beginTimeOrEndTime(time) {
-      var beginTime = new Date(time);
-
-      var endTime = new Date(new Date(time).valueOf() - 1000 * 60 * 60 * 3);
-
-      var beginY = beginTime.getFullYear();
-
-      var beginM =
-        beginTime.getMonth() + 1 < 10
-          ? "0" + (beginTime.getMonth() + 1)
-          : beginTime.getMonth() + 1;
-
-      var beginD =
-        beginTime.getDate() < 10
-          ? "0" + beginTime.getDate()
-          : beginTime.getDate();
-
-      var beginH =
-        beginTime.getHours() < 10
-          ? "0" + beginTime.getHours()
-          : beginTime.getHours();
-
-      var beginm =
-        beginTime.getMinutes() < 10
-          ? "0" + beginTime.getMinutes()
-          : beginTime.getMinutes();
-
-      var begins =
-        beginTime.getSeconds() < 10
-          ? "0" + beginTime.getSeconds()
-          : beginTime.getSeconds();
-
-      var endY = endTime.getFullYear();
-
-      var endM =
-        endTime.getMonth() + 1 < 10
-          ? "0" + (endTime.getMonth() + 1)
-          : endTime.getMonth() + 1;
-
-      var endD =
-        endTime.getDate() < 10 ? "0" + endTime.getDate() : endTime.getDate();
-
-      var endH =
-        endTime.getHours() < 10 ? "0" + endTime.getHours() : endTime.getHours();
-
-      var endm =
-        endTime.getMinutes() < 10
-          ? "0" + endTime.getMinutes()
-          : endTime.getMinutes();
-
-      var ends =
-        endTime.getSeconds() < 10
-          ? "0" + endTime.getSeconds()
-          : endTime.getSeconds();
-      return {
-        begin: beginY + beginM + beginD + beginH + beginm + begins,
-        end: endY + endM + endD + endH + endm + ends
-      };
-    },
-    queryOldVideo(data) {
-      var newAxios = axios.create({
-        baseURL: "http://36.134.81.48:18000",
-        withCredentials: false,
-        headers: {
-          "Content-type": "application/x-www-form-urlencoded"
-        }
-      });
-
-      var time = this.beginTimeOrEndTime(data.alarmTime);
-
-      newAxios
-        .post(
-          "/api_control",
-          {},
-          {
-            params: {
-              param: JSON.stringify({ PktType: "GetAccessToken" })
-            }
-          }
-        )
-        .then(res => {
-          newAxios
-            .get(
-              `/GetPlayUrl?deviceCode=${data.channelNumber}&chl=${data.serialNumber}`
-            )
-            .then(result => {
-              this.innerVisibleVideo = true;
-
-              this.videoSource = result.data.data.m3u8;
-            });
-
-          //   newAxios
-          //     .post(
-          //       "/api_control",
-          //       {},
-          //       {
-          //         params: {
-          //           param: JSON.stringify({
-          //             PktType: "RemotePlayback",
-          //             accessToken: res.data.data.accessToken,
-          //             deviceCode: "001231409472",
-          //             startTime: "20210130150000",
-          //             endTime: "20210130160000",
-          //             chl: data.serialNumber
-          //           })
-          //         }
-          //       }
-          //     )
-          //     .then(result => {
-
-          //       this.innerVisibleVideo = true;
-
-          //       this.videoSource = result.data.data.m3u8;
-
-          //     });
+            "/api/blade-jfpts/alarm/alarm/deletejj?id=" +
+            row.id,
+          method: "post"
+        }).then(function () {
+          that.dialogTableVisible = false;
+          that.onLoad(that.page, that.query);
         });
-    },
-    openOldVideoBox() {
-      if (Hls.isSupported()) {
-        var dom = document.getElementById("old_video");
-
-        // if (dom.volume) dom.volume = 1.0;
-
-        this.hls = new Hls();
-
-        var m3u8Url = decodeURIComponent(this.videoSource);
-
-        this.hls.loadSource(m3u8Url);
-
-        this.hls.attachMedia(dom);
-
-        this.hls.on(Hls.Events.MANIFEST_PARSED, function() {
-          dom.play();
+      },
+      updateJtyep(row) {
+        var that = this;
+        axios({
+          url:
+            "/api/blade-jfpts/alarm/alarm/updateJtype?id=" +
+            row.id +
+            "&czTime=" +
+            row.czTime +
+            "&bz=" +
+            row.bz,
+          method: "post"
+        }).then(function () {
+          that.onLoad(that.page, that.query);
         });
-      }
-    },
-    closeOldVideoBox() {
-      var dom = document.getElementById("old_video");
+      },
 
-      if (dom.getAttribute("src") != "") {
-        dom.pause();
+      beginTimeOrEndTime(time) {
+        var beginTime = new Date(time);
 
-        dom.setAttribute("src", "");
+        var endTime = new Date(new Date(time).valueOf() - 1000 * 60 * 60 * 3);
 
-        this.hls.destroy();
-      }
-    },
-    aKeyToCall(e, form) {
-      var newCallAxios = axios.create({
-        baseURL: "http://36.134.81.48:18000",
-        withCredentials: false,
-        headers: {
-          "Content-Type": "application/json;"
-        }
-      });
+        var beginY = beginTime.getFullYear();
 
-      // 一键呼叫相关函数
-      if (this.isActive == true) {
-        this.isActive = false;
+        var beginM =
+          beginTime.getMonth() + 1 < 10
+            ? "0" + (beginTime.getMonth() + 1)
+            : beginTime.getMonth() + 1;
 
-        newCallAxios
+        var beginD =
+          beginTime.getDate() < 10
+            ? "0" + beginTime.getDate()
+            : beginTime.getDate();
+
+        var beginH =
+          beginTime.getHours() < 10
+            ? "0" + beginTime.getHours()
+            : beginTime.getHours();
+
+        var beginm =
+          beginTime.getMinutes() < 10
+            ? "0" + beginTime.getMinutes()
+            : beginTime.getMinutes();
+
+        var begins =
+          beginTime.getSeconds() < 10
+            ? "0" + beginTime.getSeconds()
+            : beginTime.getSeconds();
+
+        var endY = endTime.getFullYear();
+
+        var endM =
+          endTime.getMonth() + 1 < 10
+            ? "0" + (endTime.getMonth() + 1)
+            : endTime.getMonth() + 1;
+
+        var endD =
+          endTime.getDate() < 10 ? "0" + endTime.getDate() : endTime.getDate();
+
+        var endH =
+          endTime.getHours() < 10 ? "0" + endTime.getHours() : endTime.getHours();
+
+        var endm =
+          endTime.getMinutes() < 10
+            ? "0" + endTime.getMinutes()
+            : endTime.getMinutes();
+
+        var ends =
+          endTime.getSeconds() < 10
+            ? "0" + endTime.getSeconds()
+            : endTime.getSeconds();
+        return {
+          begin: beginY + beginM + beginD + beginH + beginm + begins,
+          end: endY + endM + endD + endH + endm + ends
+        };
+      },
+      queryOldVideo(data) {
+        var newAxios = axios.create({
+          baseURL: "http://36.134.81.48:18000",
+          withCredentials: false,
+          headers: {
+            "Content-type": "application/x-www-form-urlencoded"
+          }
+        });
+
+        var time = this.beginTimeOrEndTime(data.alarmTime);
+
+        newAxios
           .post(
-            `/api_control`,
+            "/api_control",
             {},
             {
               params: {
-                param: { PktType: "GetAccessToken" }
+                param: JSON.stringify({PktType: "GetAccessToken"})
               }
             }
           )
-          .then(result => {
-            var formData = new FormData();
-            var blob = this.recorder.getPCMBlob(); //获取pcm格式音频数据
-            //此处获取到blob对象后需要设置fileName满足当前项目上传需求,其它项目可直接传把blob作为file塞入formData
-            var newbolb = new Blob([blob], { type: "audio/pcm" });
-            var fileOfBlob = new File([newbolb], new Date().getTime() + ".pcm");
-            formData.append("file", fileOfBlob);
+          .then(res => {
+            newAxios
+              .get(
+                `/GetPlayUrl?deviceCode=${data.channelNumber}&chl=${data.serialNumber}`
+              )
+              .then(result => {
+                this.innerVisibleVideo = true;
 
-            document
-              .getElementById("real_audio")
-              .setAttribute("src", URL.createObjectURL(blob));
+                this.videoSource = result.data.data.m3u8;
+              });
 
-            console.log(
-              blob,
-              newbolb,
-              fileOfBlob,
-              window.URL.createObjectURL(blob),
-              99999
-            );
+            //   newAxios
+            //     .post(
+            //       "/api_control",
+            //       {},
+            //       {
+            //         params: {
+            //           param: JSON.stringify({
+            //             PktType: "RemotePlayback",
+            //             accessToken: res.data.data.accessToken,
+            //             deviceCode: "001231409472",
+            //             startTime: "20210130150000",
+            //             endTime: "20210130160000",
+            //             chl: data.serialNumber
+            //           })
+            //         }
+            //       }
+            //     )
+            //     .then(result => {
 
-            this.recorder.play();
+            //       this.innerVisibleVideo = true;
 
-            newCallAxios
-              .post(`/api_control`, blob, {
-                params: {
-                  param: {
-                    PktType: "Talk",
-                    accessToken: result.data.data.accessToken,
-                    deviceCode: form.channelNumber
-                  }
-                }
-              })
-              .then(result => {});
+            //       this.videoSource = result.data.data.m3u8;
+
+            //     });
           });
-      } else {
-        this.isActive = true;
+      },
+      openOldVideoBox() {
+        if (Hls.isSupported()) {
+          var dom = document.getElementById("old_video");
 
-        Recorder.getPermission().then(() => {
-          this.recorder.start().then(() => {
-            // 开始录音
+          // if (dom.volume) dom.volume = 1.0;
+
+          this.hls = new Hls();
+
+          var m3u8Url = decodeURIComponent(this.videoSource);
+
+          this.hls.loadSource(m3u8Url);
+
+          this.hls.attachMedia(dom);
+
+          this.hls.on(Hls.Events.MANIFEST_PARSED, function () {
+            dom.play();
           });
+        }
+      },
+      closeOldVideoBox() {
+        var dom = document.getElementById("old_video");
+
+        if (dom.getAttribute("src") != "") {
+          dom.pause();
+
+          dom.setAttribute("src", "");
+
+          this.hls.destroy();
+        }
+      },
+      aKeyToCall(e, form) {
+        var newCallAxios = axios.create({
+          baseURL: "http://36.134.81.48:18000",
+          withCredentials: false,
+          headers: {
+            "Content-Type": "application/json;"
+          }
         });
+
+        // 一键呼叫相关函数
+        if (this.isActive == true) {
+          this.isActive = false;
+
+          newCallAxios
+            .post(
+              `/api_control`,
+              {},
+              {
+                params: {
+                  param: {PktType: "GetAccessToken"}
+                }
+              }
+            )
+            .then(result => {
+              var formData = new FormData();
+              var blob = this.recorder.getPCMBlob(); //获取pcm格式音频数据
+              //此处获取到blob对象后需要设置fileName满足当前项目上传需求,其它项目可直接传把blob作为file塞入formData
+              var newbolb = new Blob([blob], {type: "audio/pcm"});
+              var fileOfBlob = new File([newbolb], new Date().getTime() + ".pcm");
+              formData.append("file", fileOfBlob);
+
+              document
+                .getElementById("real_audio")
+                .setAttribute("src", URL.createObjectURL(blob));
+
+              console.log(
+                blob,
+                newbolb,
+                fileOfBlob,
+                window.URL.createObjectURL(blob),
+                99999
+              );
+
+              this.recorder.play();
+
+              newCallAxios
+                .post(`/api_control`, blob, {
+                  params: {
+                    param: {
+                      PktType: "Talk",
+                      accessToken: result.data.data.accessToken,
+                      deviceCode: form.channelNumber
+                    }
+                  }
+                })
+                .then(result => {
+                });
+            });
+        } else {
+          this.isActive = true;
+
+          Recorder.getPermission().then(() => {
+            this.recorder.start().then(() => {
+              // 开始录音
+            });
+          });
+        }
       }
     }
-  }
-};
+  };
 </script>
 
 <style>
-.cityClass1 {
-  padding-right: 5px !important;
-}
+  .cityClass1 {
+    padding-right: 5px !important;
+  }
 
-.cityClass2 {
-  padding-left: 0px !important;
-  padding-right: 0px !important;
-}
+  .cityClass2 {
+    padding-left: 0px !important;
+    padding-right: 0px !important;
+  }
 
-.cityClass2 div label {
-  display: none;
-}
+  .cityClass2 div label {
+    display: none;
+  }
 
-.cityClass3 div label {
-  display: none;
-}
+  .cityClass3 div label {
+    display: none;
+  }
 
-.cityClass3 {
-  padding-left: 5px !important;
-}
+  .cityClass3 {
+    padding-left: 5px !important;
+  }
 
-.old-video-dialog {
-  position: absolute !important;
-  top: 0 !important;
-  left: auto !important;
-  right: 0px !important;
-  bottom: 0 !important;
-  margin: auto !important;
-  height: 100% !important;
-  width: 476px !important;
-}
+  .old-video-dialog {
+    position: absolute !important;
+    top: 0 !important;
+    left: auto !important;
+    right: 0px !important;
+    bottom: 0 !important;
+    margin: auto !important;
+    height: 100% !important;
+    width: 476px !important;
+  }
 
-.old-video-dialog .el-dialog {
-  position: absolute !important;
-  top: 0 !important;
-  left: 0 !important;
-  right: 0 !important;
-  bottom: 0 !important;
-  margin: auto !important;
-  margin-top: 15vh !important;
-  height: 538px;
-}
+  .old-video-dialog .el-dialog {
+    position: absolute !important;
+    top: 0 !important;
+    left: 0 !important;
+    right: 0 !important;
+    bottom: 0 !important;
+    margin: auto !important;
+    margin-top: 15vh !important;
+    height: 538px;
+  }
 
-.old-video-dialog .el-dialog .el-dialog__body {
-  height: calc(100% - 54px);
-  box-sizing: border-box;
-}
+  .old-video-dialog .el-dialog .el-dialog__body {
+    height: calc(100% - 54px);
+    box-sizing: border-box;
+  }
 
-.el-button.active {
-  background: red;
-}
+  .el-button.active {
+    background: #ff0000;
+  }
+
+  .el-button.btn-color {
+    background: #146ef6;
+    border-color: #007aff;
+    color: #FFF;
+  }
+
 </style>

--
Gitblit v1.9.3