更新信息

This commit is contained in:
24kycj
2024-11-11 12:36:34 +08:00
parent f83d29dca4
commit ef2607a5fd
2 changed files with 56 additions and 8 deletions
+4 -4
View File
@@ -159,7 +159,7 @@
<div class="flex_box work_top">
<div class="work_top_text">作业列表</div>
</div>
<el-table max-height="250" class="work_table" :data="taskList" empty-text="暂无作业列表">
<el-table max-height="250" class="work_table" :data="task_list" empty-text="暂无作业列表">
<el-table-column type="expand">
<template slot-scope="scope">
<el-table max-height="250" :data="scope.row.ass_task">
@@ -305,7 +305,7 @@ export default {
// },
],
// 作业列表
taskList: [],
task_list: [],
typeList: ['', 'CD', 'DVD', 'DVD_DL', 'BD', 'BD_DL', 'BD_TL', 'BD_QL'],
statusList: {
'0': '新建',
@@ -320,7 +320,7 @@ export default {
}
},
watch: {
'$store.state.chat.taskList': {
'$store.state.chat.task_list': {
handler(val) {
if (val && val.length) {
let list = []
@@ -332,7 +332,7 @@ export default {
item.task_size = task_size
list.push(item)
})
this.taskList = list
this.task_list = list
}
},
deep: true,