perf: 新增server酱3通知

This commit is contained in:
xiaojunnuo
2024-12-03 10:32:47 +08:00
parent 393ea27fa4
commit 6aa487269c
17 changed files with 86 additions and 19 deletions
@@ -10,11 +10,10 @@ export async function GetList(query: any) {
data: query
});
for (const item of list) {
if (item.pipeline) {
if (item.pipeline && typeof item.pipeline === "string") {
item.pipeline = JSON.parse(item.pipeline);
}
}
console.log("history", list);
return list;
}
@@ -321,7 +321,6 @@ export default defineComponent({
currentHistory.value = history;
pipeline.value = history.pipeline;
await loadCurrentHistoryDetail();
console.log("currentHistory:", currentHistory);
};
async function loadHistoryList(reload = false) {