|
@@ -130,7 +130,7 @@ const getTimeRangeList = async () => {
|
|
|
const openDialog = async (_row: any) => {
|
|
|
await getTimeRangeList();
|
|
|
visible.value = true;
|
|
|
- state.queryForm.appId = _row.id;
|
|
|
+ state.queryForm.appId = _row.appId;
|
|
|
getDataList();
|
|
|
};
|
|
|
|
|
@@ -186,7 +186,9 @@ const loadChildData = async (parentRow) => {
|
|
|
const res = await getStatSecondPage({
|
|
|
ip: parentRow.ip,
|
|
|
current: parentRow.childPagination.page,
|
|
|
- size: parentRow.childPagination.size
|
|
|
+ size: parentRow.childPagination.size,
|
|
|
+ appId: state.queryForm.appId,
|
|
|
+ timeRange: state.queryForm.timeRange
|
|
|
});
|
|
|
const data = res.data;
|
|
|
parentRow.childTableData = data.records;
|