mirror of
https://github.com/certd/certd.git
synced 2026-04-24 12:27:25 +08:00
perf: 新增server酱3通知
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user