From c48424facd0ecfb470766da232cc209d666fdd3e Mon Sep 17 00:00:00 2001
From: yuxc <653031404@qq.com>
Date: 星期四, 21 九月 2023 11:36:32 +0800
Subject: [PATCH] 1、修改分类授权查询树的接口。 2、修改分类授权保存接口。
---
Source/UBCS-WEB/src/page/login/sso.vue | 63 ++++++++-----------------------
1 files changed, 16 insertions(+), 47 deletions(-)
diff --git a/Source/UBCS-WEB/src/page/login/sso.vue b/Source/UBCS-WEB/src/page/login/sso.vue
index 5521ac4..3565fc3 100644
--- a/Source/UBCS-WEB/src/page/login/sso.vue
+++ b/Source/UBCS-WEB/src/page/login/sso.vue
@@ -1,5 +1,5 @@
<template>
- <p>娴嬭瘯</p>
+
</template>
<script>
@@ -10,56 +10,25 @@
export default {
name: "sso",
data() {
- return {
- loginForm:{
- //绉熸埛ID
- tenantId: "",
- //閮ㄩ棬ID
- deptId: "",
- //瑙掕壊ID
- roleId: "",
- //鐢ㄦ埛鍚�
- username: "",
- //瀵嗙爜
- password: "",
- selectInput: '',
- //涓嬫媺input鏁版嵁
- value: '绠$悊缁�',
- //涓嬫媺鑿滃崟
- region: [],
- //璐﹀彿绫诲瀷
- type: "account",
- //楠岃瘉鐮佺殑绱㈠紩
- key: "",
- //棰勫姞杞界櫧鑹茶儗鏅�
- image: "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",
-
- },
- }
+ return {}
},
- computed: {
- ...mapGetters(["tagWel", "userInfo"])
- },
+ computed: {},
created() {
-
+ this.onLoad()
},
methods: {
- // Onload() {
- // let name = 'pwdfree'
- // oaSsos(name).then(res=>{
- // console.log(res)
- // if(res.status === 200){
- // // this.loginForm.tenantId=res.data.tenant_id;
- // // this.loginForm.username=res.data.user_name;
- // this.$store.dispatch("LoginBySso").then((res) => {
- // console.log('res',res)
- // this.$router.push({path: this.tagWel.value});
- // })
- // // console.log(this.tagWel)
- // // this.$router.push({path: this.tagWel.value});
- // }
- // })
- // }
+ onLoad() {
+ const loading = this.$loading({
+ lock: true,
+ text: 'Loading',
+ spinner: 'el-icon-loading',
+ background: 'rgba(0, 0, 0, 0.7)'
+ });
+ setTimeout(() => {
+ loading.close();
+ }, 2000);
+
+ }
}
}
</script>
--
Gitblit v1.10.0