diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/InternshipResults/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/InternshipResults/list.vue
index 5cc6e3d7a..43fb3702d 100644
--- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/InternshipResults/list.vue
+++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/InternshipResults/list.vue
@@ -9,7 +9,7 @@
diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/clockIn/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/clockIn/list.vue
index 08c8d45b0..9116a3950 100644
--- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/clockIn/list.vue
+++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/clockIn/list.vue
@@ -154,7 +154,7 @@
}
});
} else {
- alert('failed' + this.getStatus());
+ // alert('failed' + this.getStatus());
}
});
},
diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/home.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/home.vue
index 5b66bb977..6303431d7 100644
--- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/home.vue
+++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/home.vue
@@ -96,7 +96,7 @@
-
+
diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/login.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/login.vue
index f5998b4d7..96cbd69a5 100644
--- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/login.vue
+++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/login.vue
@@ -113,21 +113,20 @@
},
methods: {
async getCasLoginInfo() {
- let loginResult=null;
+ let loginResult = null;
const url = new URL(window.location.href);
const params = new URLSearchParams(url.search);
const ticket = params.get('ticket');
+ // const ticket = "1"
if (ticket) {
- console.log("1:",ticket);
let postResult = await this.POST('/api/ht/ticket', {
ticket,
})
- console.log(postResult);
if (postResult[1].data.code == '200') {
loginResult = postResult[1].data.data;
} else {
this.TOAST(postResult[1].data.info);
-
+
}
const {
baseinfo,
@@ -141,13 +140,13 @@
role
}
const token = baseinfo.token
-
-
+
+
this.SET_GLOBAL('token', token)
this.SET_GLOBAL('loginUser', user)
-
+
this.SET_STORAGE('token', token)
-
+
this.HIDE_LOADING()
this.TAB_TO('/pages/home')