|
@@ -159,7 +159,7 @@ export default {
|
|
|
if (['其他部门', '其他', '其它'].includes(data[0].department)) {
|
|
|
let item = data[0]
|
|
|
item.showOther = true
|
|
|
- item.children.push({ department: item.department, count: item.count, otherdescription: item.otherdescription })
|
|
|
+ item.children.push({ department: item.department, count: item.count, cnt: item.cnt, otherdescription: item.otherdescription })
|
|
|
}
|
|
|
// 处理其他部门,将在一起的其他部门,合并到一起
|
|
|
for (let index = 1, len = data.length; index < len; index++) {
|
|
@@ -172,10 +172,15 @@ export default {
|
|
|
return item.otherdescription === otherdescription && item.count === count && item.department === item.department
|
|
|
})
|
|
|
) {
|
|
|
- item.children.push({ department: item.department, count: item.count, otherdescription: item.otherdescription })
|
|
|
+ item.children.push({ department: item.department, count: item.count, cnt: item.cnt, otherdescription: item.otherdescription })
|
|
|
}
|
|
|
} else if (data[index - 1].department === item.department && ['其他部门', '其他', '其它'].includes(item.department)) {
|
|
|
- data[index - 1].children.push({ department: item.department, count: item.count, otherdescription: item.otherdescription })
|
|
|
+ data[index - 1].children.push({
|
|
|
+ department: item.department,
|
|
|
+ count: item.count,
|
|
|
+ cnt: item.cnt,
|
|
|
+ otherdescription: item.otherdescription,
|
|
|
+ })
|
|
|
data.splice(index--, 1)
|
|
|
len--
|
|
|
}
|
|
@@ -242,17 +247,19 @@ export default {
|
|
|
goToMattersFetail(data, type) {
|
|
|
// console.log(data)
|
|
|
let { department, otherdescription, cnt } = data
|
|
|
+ console.log(data)
|
|
|
let params = {
|
|
|
type, //部门类型
|
|
|
department, //部门名称
|
|
|
size: cnt, //分页,按照cnt(count)字段
|
|
|
- startDate: this.createdateStartDate,
|
|
|
- endDate: this.createdateEndDate,
|
|
|
+ createdateStartDate: this.createdateStartDate,
|
|
|
+ createdateEndDate: this.createdateEndDate,
|
|
|
}
|
|
|
+
|
|
|
// 全部时,不传时间字段
|
|
|
if (this.active === 3) {
|
|
|
- delete params.startDate
|
|
|
- delete params.endDate
|
|
|
+ delete params.createdateStartDate
|
|
|
+ delete params.createdateEndDate
|
|
|
}
|
|
|
// 其他部门,传递 其他部门说明字段
|
|
|
type == 2 && (params.otherdescription = otherdescription)
|