From 1e4e67cf052f4c3cdfa2e756b342c1a38f4805b5 Mon Sep 17 00:00:00 2001 From: luobisheng <727299681@qq.com> Date: 星期四, 01 十二月 2022 09:42:10 +0800 Subject: [PATCH] 图片上传更新 --- src/views/systemSetting/device/point/index.vue | 18 +++++++----------- 1 files changed, 7 insertions(+), 11 deletions(-) diff --git a/src/views/systemSetting/device/point/index.vue b/src/views/systemSetting/device/point/index.vue index 09180d7..d97ee68 100644 --- a/src/views/systemSetting/device/point/index.vue +++ b/src/views/systemSetting/device/point/index.vue @@ -171,7 +171,7 @@ ::v-deep .el-tree-node__label { line-height: 30px; font-size: 14px; - color: rgb(75, 155, 183); + // color: rgb(75, 155, 183); } </style> <script> @@ -189,7 +189,7 @@ totalNum: 10, pageSize: 10, videoData: [], - value: "", + searchData: null, }; }, methods: { @@ -214,18 +214,14 @@ }, selectedDepartment(data) { this.currentPage = 1; - if (!data.children) { - this.getVideoPointList(data); - } else { - data.parentId = data.id; - data.id = null; - this.getVideoPointList(data); - } + data.parentId = data.id; + data.id = null; + this.searchData = data; + this.getVideoPointList(data); }, current_change(e) { this.currentPage = e; - - this.getVideoPointList(); + this.getVideoPointList(this.searchData); }, }, }; -- Gitblit v1.8.0