南昌市物联网技防平台-前端
liuyg
2021-05-07 be2983cb91e06554ff939c53b37284af1e1c170a
src/views/policeTracking/policeTracking.vue
@@ -461,7 +461,7 @@
          <el-card>
            <video
              :src="feedbackVideo"
              style="width: 100%; height: 100%; object-fit: fill"
              style="width: 200px; height: 200px; object-fit: fill"
              controls
              v-show="feedbackVideo != ''"
            ></video>
@@ -762,9 +762,10 @@
    getList() {
      var that = this;
      var deptid = that.form.deptId.slice(0,19);//报错deptId格式不对liu.2021.5.7
      axios
        .get(
          `/api/blade-user/pages?current=1&size=9999&work_status=&deptId=${that.form.deptId}`
          `/api/blade-user/pages?current=1&size=9999&work_status=&deptId=${deptid}`
        )
        .then(function (res) {
          that.tableData = [];
@@ -936,7 +937,7 @@
        },
      }).then(function (res) {
        that.form = res.data.data.records[0];
        that.getList();
        that.getList();//报错deptId格式不对liu.2021.5.7
      });
    },
  },