喻忠伟 5 months ago
commit 0aaac8b79a
  1. 34
      jeecgboot-vue3-master/src/store/modules/permission.ts

@ -206,7 +206,7 @@ export const usePermissionStore = defineStore({
// 后台菜单构建 // 后台菜单构建
case PermissionModeEnum.BACK: case PermissionModeEnum.BACK:
const { createMessage, createWarningModal } = useMessage(); // const { createMessage, createWarningModal } = useMessage();
// 菜单加载提示 // 菜单加载提示
// createMessage.loading({ // createMessage.loading({
// content: t('sys.app.menuLoading'), // content: t('sys.app.menuLoading'),
@ -237,22 +237,22 @@ export const usePermissionStore = defineStore({
} }
} }
// 两个条件都不满足,就弹出提示框 // 两个条件都不满足,就弹出提示框
if (!hasIcon && !hasIndex) { // if (!hasIcon && !hasIndex) {
// 延迟1.5秒之后再出现提示,否则提示框出不来 // // 延迟1.5秒之后再出现提示,否则提示框出不来
setTimeout( // setTimeout(
() => // () =>
createWarningModal({ // createWarningModal({
title: '检测提示', // title: '检测提示',
content: // content:
'当前菜单表是 <b>Vue2版本</b>,导致菜单加载异常!<br>点击确认,切换到Vue3版菜单!', // '当前菜单表是 <b>Vue2版本</b>,导致菜单加载异常!<br>点击确认,切换到Vue3版菜单!',
onOk:function () { // onOk:function () {
switchVue3Menu(); // switchVue3Menu();
location.reload(); // location.reload();
} // }
}), // }),
100 // 100
); // );
} // }
// update-end----author:sunjianlei---date:20220315------for: 判断是否是 vue3 版本的菜单 --- // update-end----author:sunjianlei---date:20220315------for: 判断是否是 vue3 版本的菜单 ---
} catch (error) { } catch (error) {
console.error(error); console.error(error);

Loading…
Cancel
Save