Browse Source

change auth

pull/107/head
zhangtao 1 year ago
parent
commit
15da955c13
7 changed files with 9 additions and 16 deletions
  1. +0
    -2
      .env.development
  2. +2
    -4
      .env.localhost
  3. +1
    -3
      .env.production
  4. +1
    -3
      .env.test
  5. +1
    -1
      package.json
  6. +1
    -1
      src/router/guard/permission-guard.js
  7. +3
    -2
      src/views/system-manage/role-manage/components/AuthModal.vue

+ 0
- 2
.env.development View File

@@ -11,5 +11,3 @@ VITE_PROXY = [["","http://192.168.11.11:7011"]]
VITE_APP_GLOB_BASE_API = ''

VITE_AUTHORITY = 'http://192.168.11.11:8090'
VITE_CLIENT_ID = 'tuoheng-pilot-admin'
VITE_CLIENT_SECRET = 'WB0CZ1c6bZLiYP6jLtDFsA=='

+ 2
- 4
.env.localhost View File

@@ -13,7 +13,5 @@ VITE_APP_GLOB_BASE_API = '/api-local'
# mock base api
VITE_APP_GLOB_BASE_API_MOCK = '/api-mock'

VITE_AUTHORITY = 'http://192.168.11.11:8090'
VITE_CLIENT_ID = 'tuoheng-pilot-admin'
VITE_CLIENT_SECRET = 'WB0CZ1c6bZLiYP6jLtDFsA=='
VITE_REDIRECT_URI = 'http://192.168.12.6:3050/login'
# VITE_AUTHORITY = 'http://192.168.11.11:8090'
VITE_AUTHORITY = 'https://login-test.t-aaron.com'

+ 1
- 3
.env.production View File

@@ -10,6 +10,4 @@ VITE_PROXY = [["","http://127.0.0.1:8002/api"]]
# base api
VITE_APP_GLOB_BASE_API = ''

VITE_AUTHORITY = 'https://oidc.t-aaron.com'
VITE_CLIENT_ID = 'tuoheng-pilot-admin'
VITE_CLIENT_SECRET = 'WB0CZ1c6bZLiYP6jLtDFsA=='
VITE_AUTHORITY = 'https://oidc.t-aaron.com'

+ 1
- 3
.env.test View File

@@ -10,6 +10,4 @@ VITE_PROXY = [["","http://106.15.120.154:9089"]]
# base api
VITE_APP_GLOB_BASE_API = ''

VITE_AUTHORITY = 'https://login-test.t-aaron.com'
VITE_CLIENT_ID = 'tuoheng-pilot-admin'
VITE_CLIENT_SECRET = 'WB0CZ1c6bZLiYP6jLtDFsA=='
VITE_AUTHORITY = 'https://login-test.t-aaron.com'

+ 1
- 1
package.json View File

@@ -40,7 +40,7 @@
"eslint-plugin-vue": "^8.5.0",
"esno": "^0.13.0",
"fs-extra": "^10.0.1",
"naive-ui": "^2.27.0",
"naive-ui": "^2.34.3",
"sass": "^1.49.11",
"unocss": "^0.16.4",
"unplugin-vue-components": "^0.18.5",

+ 1
- 1
src/router/guard/permission-guard.js View File

@@ -5,11 +5,11 @@ import { getUserInfo, signinRedirect, signoutRedirect } from '@/utils/oidc/index

export function createPermissionGuard(router) {
const userStore = useUserStore()
userStore.getUserInfos()
const permissionStore = usePermissionStore()
router.beforeEach(async(to, from, next) => {
const oidcUser = await getUserInfo()
if (oidcUser) {
userStore.getUserInfos()
const hasRoutes = !!permissionStore.permissionRoutes.length
if (hasRoutes) {
next()

+ 3
- 2
src/views/system-manage/role-manage/components/AuthModal.vue View File

@@ -9,7 +9,7 @@
<n-tabs type="line" animated>
<n-tab-pane display-directive="show" name="pc" tab="管理端菜单">
<n-tree
v-show="tabsTreeVisible"
v-if="tabsTreeVisible"
ref="adminTreeRef"
block-line
cascade
@@ -24,7 +24,7 @@
</n-tab-pane>
<n-tab-pane display-directive="show" name="mp" tab="小程序菜单">
<n-tree
v-show="tabsTreeVisible"
v-if="tabsTreeVisible"
ref="miniTreeRef"
block-line
cascade
@@ -92,6 +92,7 @@ export default defineComponent({
})

function handleConfirm() {
console.log(adminTreeRef.value, miniTreeRef.value)
const adminCheckedData = adminTreeRef.value.getCheckedData()
const adminIndeterminateData = adminTreeRef.value.getIndeterminateData()
const miniCheckedData = miniTreeRef.value.getCheckedData()

Loading…
Cancel
Save