| | |
| | | @click.stop="disposition(row)" |
| | | >处置</el-button |
| | | > |
| | | |
| | | |
| | | <el-button |
| | | icon="el-icon-location-outline" |
| | | :size="size" |
| | |
| | | } |
| | | 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; |
| | |
| | | } |
| | | }, |
| | | 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 }); |
| | | } |
| | | } |
| | | }; |