标准/译文申请 待办标记更新/回显

This commit is contained in:
baoyu
2024-03-29 14:34:22 +08:00
parent 49c9c8e4e0
commit 65cc58992a
6 changed files with 25 additions and 20 deletions
+3
View File
@@ -182,5 +182,8 @@ export default {
},
refreshFlag: state => {
return state.refreshFlag
},
getStandardTranslationTodo: state => {
return state.standardTranslationTodo
}
}
+3
View File
@@ -302,5 +302,8 @@ export default {
try {
localStorage.setItem('refreshFlag', flag)
} catch (e) {}
},
SET_STANDARD_TRANSLATION_TODO (state, value) {
state.standardTranslationTodo = value
}
}
+3 -1
View File
@@ -34,6 +34,7 @@ let rukuBaseInfo = '' // 入库流程基础表单信息(后几步展示用)
let accessStandRegRows = '' // 标准法规清单编辑
let accessStandRegTabName = '' // 标准法规清单页面当前页签
let refreshFlag = '' // 监听其他页面刷新
let standardTranslationTodo = 0 // 标准/译文获取申请管理待办标记
try {
if (localStorage.theme) { defaultTheme = localStorage.theme }
if (localStorage.token) { defaultToken = localStorage.token }
@@ -102,5 +103,6 @@ export default {
rukuBaseInfo,
accessStandRegRows,
accessStandRegTabName,
refreshFlag
refreshFlag,
standardTranslationTodo
}