From 10b039bfa105cc276b24060050c4e7efa5231c5a Mon Sep 17 00:00:00 2001 From: suyanyan <1321717064@qq.com> Date: Wed, 8 Jan 2025 15:54:19 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/InternshipResults/list.vue | 2 +- .../LearunApp-2.2.0/pages/clockIn/list.vue | 2 +- .../LearunApp-2.2.0/pages/home.vue | 2 +- .../LearunApp-2.2.0/pages/login.vue | 15 +++++++-------- 4 files changed, 10 insertions(+), 11 deletions(-) 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') From cf1483cd85491401649b76363f752219a632dd1b Mon Sep 17 00:00:00 2001 From: suyanyan <1321717064@qq.com> Date: Thu, 9 Jan 2025 11:16:54 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E5=AF=B9=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LearunApp-2.2.0/pages.json | 6 ++ .../pages/InternshipResults/list.vue | 15 +++- .../pages/TalentDemand/list.vue | 58 ++++++++++++-- .../pages/internshipReport/list.vue | 21 +++-- .../LearunApp-2.2.0/pages/meeting/detail.vue | 80 ++++++++----------- .../LearunApp-2.2.0/pages/meeting/list.vue | 38 ++++++--- 6 files changed, 139 insertions(+), 79 deletions(-) diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json index 655873079..16e0b31ae 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json @@ -113,6 +113,12 @@ }, { "path": "pages/TalentDemand/list", + "style": { + "navigationBarTitleText": "人才需求" + } + }, + { + "path": "pages/TalentDemand/detail", "style": { "navigationBarTitleText": "人才需求查看" } 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 43fb3702d..76a9f8e7f 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 @@ -5,7 +5,7 @@ 您的成绩为: - 86分 + {{scope}}分 @@ -18,11 +18,18 @@ export default { data() { return { - + scope: '' } }, + async mounted() { + await this.init() + }, methods: { - + async init() { + this.scope = await this.HTTP_GET( + '/api/ht/cj/show' + ) + } } } @@ -52,7 +59,7 @@ } .footer { - width: 80%; + // width: 80%; position: fixed; bottom: 0; left: 0; diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/TalentDemand/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/TalentDemand/list.vue index 8183fd03b..15448273d 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/TalentDemand/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/TalentDemand/list.vue @@ -1,6 +1,19 @@ @@ -8,15 +21,46 @@ export default { data() { return { - + list: [] } }, + async mounted() { + await this.init() + }, methods: { - - } + jump(data) { + uni.navigateTo({ + url: '/pages/TalentDemand/detail?id=' + data + }) + }, + async init() { + this.list = await this.HTTP_GET( + '/api/ht/rc/list' + ) + } + }, } - + span { + display: flex; + } + + } + + &.empitCenter { + display: flex; + align-items: center; + justify-content: center; + width: 100%; + height: calc(100vh - 44px); + padding-bottom: 200rpx !important; + } + } + \ No newline at end of file diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/internshipReport/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/internshipReport/list.vue index a78df95f6..aca59b401 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/internshipReport/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/internshipReport/list.vue @@ -1,16 +1,13 @@