CzRger 4 mesi fa
parent
commit
62c80bdf34

+ 13 - 13
snowy-admin-web/src/views/auth/login/single-window-login.vue

@@ -346,7 +346,7 @@
 	const loginForm = ref()
 	const cardForm = ref()
 	const login = async () => {
-		if (loginAgree.value || config.value.lang === 'en') {
+		// if (loginAgree.value || config.value.lang === 'en') {
 			loginForm.value
 			.validate()
 			.then(async () => {
@@ -368,18 +368,18 @@
 				}
 			})
 			.catch(() => {})
-		} else {
-			Modal.confirm({
-				title: '提示',
-				content: '请阅读并勾选《用户服务协议》和《用户隐私政策》!',
-				centered: true,
-				width: 420,
-				icon: createVNode(ExclamationCircleOutlined),
-				maskClosable: false,
-				onOk() {},
-				onCancel() {}
-			})
-		}
+		// } else {
+		// 	Modal.confirm({
+		// 		title: '提示',
+		// 		content: '请阅读并勾选《用户服务协议》和《用户隐私政策》!',
+		// 		centered: true,
+		// 		width: 420,
+		// 		icon: createVNode(ExclamationCircleOutlined),
+		// 		maskClosable: false,
+		// 		onOk() {},
+		// 		onCancel() {}
+		// 	})
+		// }
 	}
 	const cardLogin = async () => {
 		if (loginAgree.value) {

+ 20 - 20
snowy-admin-web/src/views/auth/login/util.js

@@ -22,26 +22,26 @@ export const afterLogin = async (loginToken) => {
 	// 重置系统默认应用
 	tool.data.set('SNOWY_MENU_MODULE_ID', menu[0].id)
 	message.success('登录成功')
-	// if (tool.data.get('LAST_VIEWS_PATH')) {
-	// 	// 如果有缓存,将其登录跳转到最后访问的路由
-	// 	indexMenu = tool.data.get('LAST_VIEWS_PATH')
-	// }
-	// // 如果存在退出后换新账号登录,进行重新匹配,匹配无果则默认首页
-	// if (menu) {
-	// 	let routerTag = 0
-	// 	menu.forEach((item) => {
-	// 		if (item.children) {
-	// 			if (JSON.stringify(item.children).indexOf(indexMenu) > -1) {
-	// 				routerTag++
-	// 			}
-	// 		}
-	// 	})
-	// 	if (routerTag === 0) {
-	// 		// 取首页
-	// 		indexMenu = routerUtil.getIndexMenu(menu).path
-	// 	}
-	// }
-	indexMenu = '/portal'
+	if (tool.data.get('LAST_VIEWS_PATH')) {
+		// 如果有缓存,将其登录跳转到最后访问的路由
+		indexMenu = tool.data.get('LAST_VIEWS_PATH')
+	}
+	// 如果存在退出后换新账号登录,进行重新匹配,匹配无果则默认首页
+	if (menu) {
+		let routerTag = 0
+		menu.forEach((item) => {
+			if (item.children) {
+				if (JSON.stringify(item.children).indexOf(indexMenu) > -1) {
+					routerTag++
+				}
+			}
+		})
+		if (routerTag === 0) {
+			// 取首页
+			indexMenu = routerUtil.getIndexMenu(menu).path
+		}
+	}
+	// indexMenu = '/portal'
 	dictApi.dictTree().then((data) => {
 		// 设置字典到store中
 		tool.data.set('DICT_TYPE_TREE_DATA', data)

+ 15 - 0
snowy-admin-web/src/views/gsc/basic/index.vue

@@ -0,0 +1,15 @@
+<template>
+	<div>
+		sss
+	</div>
+</template>
+
+<script setup lang="ts">
+import {getCurrentInstance, reactive} from "vue";
+
+const {proxy} = getCurrentInstance()
+const state: any = reactive({})
+</script>
+
+<style lang="scss" scoped>
+</style>