|
@@ -585,6 +585,7 @@ export default {
|
|
|
// }
|
|
|
console.log(this.tableData)
|
|
|
this.setAnalyticFeedback('feedbackType', feedbackCharge)
|
|
|
+ this.setExpandRowKeys()
|
|
|
}
|
|
|
},
|
|
|
addTableData() {
|
|
@@ -796,6 +797,13 @@ export default {
|
|
|
) {
|
|
|
this.expandRowKeys.push(elm.rowKey)
|
|
|
}
|
|
|
+ if (
|
|
|
+ elm.analyticFeedbackList &&
|
|
|
+ elm.analyticFeedbackList.length &&
|
|
|
+ this.expandRowKeys.indexOf(elm.rowKey) < 0
|
|
|
+ ) {
|
|
|
+ this.expandRowKeys.push(elm.rowKey)
|
|
|
+ }
|
|
|
})
|
|
|
}
|
|
|
},
|