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
@@ -77,9 +77,7 @@ export default {
closeAll: pageStore.closeAll,
openedSort: pageStore.openedSort
};
console.log("opened", pageStore.getOpened);
const computeOpened = computed(() => {
console.log("opened", pageStore.getOpened);
return pageStore.getOpened;
});
@@ -23,7 +23,6 @@ defineOptions({
name: "FsUserInfo"
});
const userStore = useUserStore();
console.log("user", userStore);
const { t } = useI18n();
const router = useRouter();
@@ -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) {