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] =?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 @@