From 790c8124a913595818247279f50cfd2cfd892799 Mon Sep 17 00:00:00 2001 From: heyujie <516346543@qq.com> Date: 星期三, 30 六月 2021 14:25:36 +0800 Subject: [PATCH] gettasklist修改 --- src/pages/shuohuangMonitorAnalyze/components/taskManage.vue | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/pages/shuohuangMonitorAnalyze/components/taskManage.vue b/src/pages/shuohuangMonitorAnalyze/components/taskManage.vue index e0130a2..415a061 100644 --- a/src/pages/shuohuangMonitorAnalyze/components/taskManage.vue +++ b/src/pages/shuohuangMonitorAnalyze/components/taskManage.vue @@ -190,7 +190,7 @@ <el-table-column prop="Title" label="鏈鸿溅鍙�"></el-table-column> <el-table-column label="瑙嗛鏁伴噺"> <template slot-scope="scope"> - <div>{{ scope.row.LKGList.length }}</div> + <div>{{ scope.row.VideoList.length }}</div> </template> </el-table-column> <el-table-column @@ -226,7 +226,7 @@ <template slot-scope="scope"> <div class="video-item" - v-for="video in scope.row.LKGList" + v-for="video in scope.row.VideoList" :key="video.ID" > {{ video.VideoName }} @@ -329,7 +329,7 @@ checkedCount > 0 && checkedCount < this.personList.length; }, cancelDistribute(row) { - let arr = row.LKGList.map(x => x.ID); + let arr = row.VideoList.map(x => x.ID); cancelMission({ LkgIDs: arr }).then((res) => { if (res.success) { this.$notify({ @@ -358,7 +358,7 @@ this.renderTaskTable(); }, taskTableSelection(val) { - let arr = val.map((item) => item.LKGList.map((x) => x.ID)); + let arr = val.map((item) => item.VideoList.map((x) => x.ID)); this.taskVideoChecked = arr; }, renderTaskTable() { @@ -530,6 +530,8 @@ .video-list { margin-top: 14px; text-align: left; + height: 420px; + overflow: auto; .el-checkbox-group { margin-bottom: 20px; .el-checkbox__label { -- Gitblit v1.8.0