This commit is contained in:
X1627315083
2024-08-23 22:23:27 +08:00
parent d840d3de35
commit 0ae93da5a6
2 changed files with 16 additions and 17 deletions

View File

@@ -10,8 +10,8 @@ const routes: Array<RouteRecordRaw> = [
{ {
path: "/", path: "/",
// redirect重定向 // redirect重定向
redirect: "/Square" // redirect: "/Square"
// redirect: "/upgrade" redirect: "/upgrade"
}, },
{ {
@@ -232,20 +232,20 @@ if (vuex_setSystemUser == 0 || vuex_setSystemUser == 1) {
} }
router.beforeEach((to, from, next) => { router.beforeEach((to, from, next) => {
let upgradeList = ['/feedbackSurvey','/feedbackSurveyCN']//指定页面系统维护也可以访问
// 系统维护 // 系统维护
// let upgradeList = ['/feedbackSurvey','/feedbackSurveyCN']//指定页面系统维护也可以访问 const toName = to.name === 'upgrade';
// const toName = to.name === 'upgrade'; if(upgradeList.indexOf(to.path) > -1){
// if(upgradeList.indexOf(to.path) > -1){ next();
// next(); }else{
// }else{ if (toName) {
// if (toName) { next();
// next(); } else {
// } else { next({ name: 'upgrade' });
// next({ name: 'upgrade' }); }
// } }
// } return
// return
// 检查路由是否存在 // 检查路由是否存在
// 机房用户 // 机房用户
let userInfo = JSON.parse(getCookie("userInfo") as any); let userInfo = JSON.parse(getCookie("userInfo") as any);
@@ -256,7 +256,6 @@ router.beforeEach((to, from, next) => {
let routeList = ['/testClickData','/trialApproval']//指定页面需要指定id才能进入 let routeList = ['/testClickData','/trialApproval']//指定页面需要指定id才能进入
let userIdList = [88,6,46,31,73,83,87,4] let userIdList = [88,6,46,31,73,83,87,4]
let isSystemUserRouteList = ['/login','/Square']//游客用户只能进入这两个页面 let isSystemUserRouteList = ['/login','/Square']//游客用户只能进入这两个页面
let upgradeList = ['/feedbackSurvey','/feedbackSurveyCN']//指定页面系统维护也可以访问
let systemUser = state.UserHabit.systemUser let systemUser = state.UserHabit.systemUser

View File

@@ -8,10 +8,10 @@
<div class="upgrade-content-text">System upgrading</div> <div class="upgrade-content-text">System upgrading</div>
<!-- <div class="upgrade-content-text">System maintenance</div> --> <!-- <div class="upgrade-content-text">System maintenance</div> -->
<!-- 没有截至时间 --> <!-- 没有截至时间 -->
<div class="upgrade-content-textab">Due to system server upgrades, We will be upgrading from 9:30 am Hong Kong time on Tuesday, July 9 until further notice. During this period, access to the AiDA system will be temporarily unavailable.<br> We apologize for any inconvenience this may cause and appreciate your understanding.</div> <!-- <div class="upgrade-content-textab">Due to system server upgrades, We will be upgrading from 9:30 am Hong Kong time on Tuesday, July 9 until further notice. During this period, access to the AiDA system will be temporarily unavailable.<br> We apologize for any inconvenience this may cause and appreciate your understanding.</div> -->
<!-- 有截至时间 --> <!-- 有截至时间 -->
<!-- <div class="upgrade-content-textab">Due to system server upgrades, We will be upgrading from 9:30 am Hong Kong time on Tuesday, July 9 until 17:00 PM on Tuesday, July 9. During this period, access to the AiDA system will be temporarily unavailable.<br> We apologize for any inconvenience this may cause and appreciate your understanding.</div> --> <!-- <div class="upgrade-content-textab">Due to system server upgrades, We will be upgrading from 9:30 am Hong Kong time on Tuesday, July 9 until 17:00 PM on Tuesday, July 9. During this period, access to the AiDA system will be temporarily unavailable.<br> We apologize for any inconvenience this may cause and appreciate your understanding.</div> -->
<!-- <div class="upgrade-content-textab">The AiDA system cannot be accessed temporarily due to system server maintenance. We apologize for any inconvenience this may cause and thank you for your understanding.</div> --> <div class="upgrade-content-textab">The AiDA system cannot be accessed temporarily due to system server maintenance. We apologize for any inconvenience this may cause and thank you for your understanding.</div>
</div> </div>
</div> </div>
</template> </template>