南昌市物联网技防平台-前端
shuishen
2021-02-04 a9e6be96ece88f47f6ab33ea4c02c27ebea0dcba
警情处置相关修改
2 files modified
15 ■■■■ changed files
src/views/distribution/index.vue 2 ●●●●● patch | view | raw | blame | history
src/views/policeInformationDistribution/index.vue 13 ●●●●● patch | view | raw | blame | history
src/views/distribution/index.vue
@@ -159,6 +159,8 @@
    };
  },
  created() {
    this.form = this.$route.query;
    this.form.handletype = 1;
    if (this.form.type == 0) {
src/views/policeInformationDistribution/index.vue
@@ -375,7 +375,6 @@
      }
      this.loading = true;
      getList(page.currentPage, page.pageSize, values).then(res => {
        const data = res.data.data;
        this.page.total = data.total;
        this.data = data.records;
@@ -476,9 +475,15 @@
      }
    },
    disposition(data) {
      this.$router.push(
      {path: '/distribution/index',query: data}
      );
      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: "/distribution/index", query: data });
    }
  }
};