From c6fbd0327644559baf534467ae1cc8a853212e7d Mon Sep 17 00:00:00 2001 From: jiang <893224616@qq.com> Date: 星期一, 18 七月 2022 17:09:35 +0800 Subject: [PATCH] 增加用户管理功能。管理员可以添加删除用户、修改用户密码、重置pushkey --- web_src/src/components/DeviceList.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/web_src/src/components/DeviceList.vue b/web_src/src/components/DeviceList.vue index c974274..97fa4f2 100644 --- a/web_src/src/components/DeviceList.vue +++ b/web_src/src/components/DeviceList.vue @@ -56,11 +56,11 @@ @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> @@ -192,7 +192,7 @@ }, 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}`); -- Gitblit v1.8.0