去掉流程类型,改为在路由中表示流程

This commit is contained in:
X1627315083
2025-11-20 16:59:39 +08:00
parent 0f5eb95cef
commit 1adf4f18c2
3 changed files with 11 additions and 23 deletions

View File

@@ -5,15 +5,6 @@ export const useOverallStore = defineStore({
state: () => {
return {
loading:false,
/**
* 流程类型
* main: 主流程
* reinventing: 魔改
* stylist: 查看设计师
* clientId: 切换客户
*
*/
flowType:'',
}
},
getters: {
@@ -24,8 +15,5 @@ export const useOverallStore = defineStore({
setLoading(data:boolean){
this.loading = data
},
setFlowType(data:string){
this.flowType = data
}
}
})