修复综合看板
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user