| | |
| | | this.loading = true |
| | | this.queryButton = true |
| | | riskApi.queryRiskValue('', this.form.month, 'month').then((response) => { |
| | | this.loading = false |
| | | this.queryButton = false |
| | | if (response.data.data.length == 0) { |
| | | this.isNoData = true |
| | | return |
| | |
| | | }, |
| | | openDetail(row) { |
| | | const encodedSiteName = encodeURIComponent(row.siteName) |
| | | let titleName = '站点风险数据详情' |
| | | this.$router.push(`/detail/${encodedSiteName}/${this.form.month}/${titleName}`) |
| | | const jumpPage = 1 |
| | | this.$router.push(`/exceptionDetail/${encodedSiteName}/${this.form.month}/1/${jumpPage}`) |
| | | } |
| | | } |
| | | } |