| | |
| | | @mouseover="getTooltipContent(scope.row.deviceId)">刷新 |
| | | </el-button> |
| | | <el-divider direction="vertical"></el-divider> |
| | | <el-button type="text" size="medium" icon="el-icon-video-camera-solid" v-bind:disabled="scope.row.online==0" |
| | | <el-button type="text" size="medium" icon="el-icon-video-camera" |
| | | @click="showChannelList(scope.row)">通道 |
| | | </el-button> |
| | | <el-divider direction="vertical"></el-divider> |
| | | <el-button size="medium" icon="el-icon-location" v-bind:disabled="scope.row.online==0" type="text" |
| | | <el-button size="medium" icon="el-icon-location" type="text" |
| | | @click="showDevicePosition(scope.row)">定位 |
| | | </el-button> |
| | | <el-divider direction="vertical"></el-divider> |
| | |
| | | this.getDeviceList(); |
| | | }, |
| | | getDeviceList: function () { |
| | | let that = this; |
| | | this.getDeviceListLoading = true; |
| | | this.$axios({ |
| | | method: 'get', |
| | | url: `/api/device/query/devices`, |
| | | params: { |
| | | page: that.currentPage, |
| | | count: that.count |
| | | page: this.currentPage, |
| | | count: this.count |
| | | } |
| | | }).then(function (res) { |
| | | that.total = res.data.total; |
| | | that.deviceList = res.data.list; |
| | | that.getDeviceListLoading = false; |
| | | }).catch(function (error) { |
| | | }).then( (res)=> { |
| | | if (res.data.code === 0) { |
| | | this.total = res.data.data.total; |
| | | this.deviceList = res.data.data.list; |
| | | } |
| | | this.getDeviceListLoading = false; |
| | | }).catch( (error)=> { |
| | | console.error(error); |
| | | that.getDeviceListLoading = false; |
| | | this.getDeviceListLoading = false; |
| | | }); |
| | | |
| | | }, |
| | |
| | | |
| | | }, |
| | | showChannelList: function (row) { |
| | | this.$router.push(`/channelList/${row.deviceId}/0/15/1`); |
| | | this.$router.push(`/channelList/${row.deviceId}/0`); |
| | | }, |
| | | showDevicePosition: function (row) { |
| | | this.$router.push(`/map?deviceId=${row.deviceId}`); |