This commit is contained in:
caozehui
2025-01-03 11:27:36 +08:00
parent 8a5bcca901
commit 938b9054d3
7 changed files with 356 additions and 250 deletions

View File

@@ -11,6 +11,7 @@ export const useCheckStore = defineStore("check", {
planId: String(""),
planCode: String(""),
scriptId: String(""),
errorSysId: String(""),
}),
getters: {},
@@ -34,6 +35,10 @@ export const useCheckStore = defineStore("check", {
setScriptId(scriptId: string) {
this.scriptId = scriptId
},
setErrorSysId(errorSysId: string) {
this.errorSysId = errorSysId
}
}
});