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 5cc6e3d7a..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,11 +5,11 @@ 您的成绩为: - 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/detail.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/TalentDemand/detail.vue new file mode 100644 index 000000000..b5164d88a --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/TalentDemand/detail.vue @@ -0,0 +1,64 @@ + + + + + \ No newline at end of file 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/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/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 @@