修复综合看板

This commit is contained in:
2026-04-22 18:44:14 +08:00
parent 50527f68e0
commit 602928dc0b
9 changed files with 168 additions and 89 deletions

View File

@@ -499,6 +499,7 @@ export default {
}
},
methods: {
// 转换数据为级联选择器格式
convertToCascader (rows) {
if (!rows || !rows.length) return [];
@@ -614,13 +615,15 @@ export default {
},
/** 查询项目管理列表 */
getList () {
this.loading = true;
const payload = {
...this.queryParams,
taskId:this.$route.query.taskId!=null?this.$route.query.taskId:null,
beginTime: this.queryParams.searchTime[0] ? this.queryParams.searchTime[0] + ' 00:00:00' : undefined,
finishTime: this.queryParams.searchTime[1] ? this.queryParams.searchTime[1] + ' 23:59:59' : undefined
}
console.log(payload, this.queryParams, 'payload');
listTask(payload).then(response => {
this.taskList = response.rows;
this.total = response.total;