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 @@
-
-
-
+
+
-
+
+
@@ -39,7 +36,6 @@
this.list = await this.HTTP_GET(
'/api/ht/sx/list'
)
- console.log(this.list, "........");
}
}
}
@@ -53,5 +49,14 @@
right: 50rpx;
}
+ &.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/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')
diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/meeting/detail.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/meeting/detail.vue
index 254c327a9..83ce92ed2 100644
--- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/meeting/detail.vue
+++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/meeting/detail.vue
@@ -1,23 +1,21 @@
-
-
-
+
+
+
-
-
+
+
-
-
+
+
-
-
-
+
+
-
-
+
+
@@ -27,46 +25,32 @@
export default {
data() {
return {
- showSex: false,
+ contentId: '',
userInfos: {
- name: 'uView UI',
- sex: '',
- title: '实行报告',
- phone: '15535656589',
- content: ''
- },
-
- actions: [{
- name: '男',
- },
- {
- name: '女',
- },
- {
- name: '保密',
- },
- ],
- rules: {
- 'name': {
- type: 'string',
- required: true,
- message: '请填写姓名',
- trigger: ['blur', 'change']
- },
- 'sex': {
- type: 'string',
- max: 1,
- required: true,
- message: '请选择男或女',
- trigger: ['blur', 'change']
- },
+ Title: '',
+ SDate: '',
+ UnitName: '',
+ SField: '',
+ Participants: ''
},
- radio: '',
- switchVal: false
+ }
+ },
+ onLoad(options) {
+ this.contentId = options.id
+ if (this.contentId) {
+ this.getDetail()
}
},
methods: {
-
+ async getDetail() {
+ let res = await this.HTTP_GET(
+ '/api/ht/gx/list',
+ this.contentId
+ )
+ if (res && res.length > 0) {
+ this.userInfos = JSON.parse(JSON.stringify(res[0]))
+ }
+ },
}
}
diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/meeting/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/meeting/list.vue
index 81462e499..845473efb 100644
--- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/meeting/list.vue
+++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/meeting/list.vue
@@ -1,13 +1,13 @@
-
-
-
-
+
+
+
+
+
@@ -18,16 +18,30 @@
list: []
}
},
+ async mounted() {
+ await this.init()
+ },
methods: {
- jump() {
+ jump(data) {
uni.navigateTo({
- url: '/pages/meeting/detail'
+ url: '/pages/meeting/detail?id=' + data
})
+ },
+ async init() {
+ this.list = await this.HTTP_GET(
+ '/api/ht/gx/list'
+ )
}
- }
+ },
}
-
-
\ No newline at end of file
diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/static/image/data.jpg b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/static/image/data.jpg
new file mode 100644
index 000000000..8b287516e
Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/static/image/data.jpg differ