diff --git a/pages/employed_by/index.vue b/pages/employed_by/index.vue
index a78bbb0..765b54c 100644
--- a/pages/employed_by/index.vue
+++ b/pages/employed_by/index.vue
@@ -18,7 +18,7 @@
已审核
-
+
单位在职申请审核状态:
已打回
待审核
diff --git a/pages/employed_by/resignation_application.vue b/pages/employed_by/resignation_application.vue
index d6840d1..f8a23cb 100644
--- a/pages/employed_by/resignation_application.vue
+++ b/pages/employed_by/resignation_application.vue
@@ -57,7 +57,8 @@ export default {
leaveReason: this.form.LEAVE_REASON,
operatorId: this.userInfo.USER_ID,
userId: this.userInfo.USER_ID,
- id: this.userInfo.USER_ID
+ id: this.userInfo.USER_ID,
+ postMethod: 'application/json'
})
uni.$u.toast('离职成功')
setTimeout(() => {
diff --git a/pages/mine/index/index.vue b/pages/mine/index/index.vue
index 59a713f..e74582e 100644
--- a/pages/mine/index/index.vue
+++ b/pages/mine/index/index.vue
@@ -120,6 +120,7 @@ export default {
})
},
clickItem(name, index) {
+ console.log('点击了')
if (name === '版本更新') this.fnUpdateVersion()
else {
uni.$u.route({
diff --git a/pages/mine/information/update.vue b/pages/mine/information/update.vue
index 84adbed..97f37a2 100644
--- a/pages/mine/information/update.vue
+++ b/pages/mine/information/update.vue
@@ -1056,6 +1056,7 @@ export default {
this.form.userDetails.socialNumber = this.form.socialNumber;
this.form.userDetails.postId = this.form.postId;
this.form.userDetails.postName = this.form.postId;
+ this.form.postMethod = 'application/json';
// 保存人员信息
await setUserInitV1(this.form)
// 更新token
diff --git a/pages/related_party_units/view.vue b/pages/related_party_units/view.vue
index f83f10f..7e0f6b5 100644
--- a/pages/related_party_units/view.vue
+++ b/pages/related_party_units/view.vue
@@ -4,7 +4,6 @@
基础信息
-
@@ -59,7 +58,7 @@
-
+
@@ -67,16 +66,12 @@
企业就职信息
-
-
- 已离职
+ 已离职
-
-
-
-
-
+
+
+
@@ -85,10 +80,10 @@
-
-
+
+
-
+
@@ -97,9 +92,9 @@
-
-
-
+
+
+
@@ -108,8 +103,8 @@
-
-
+
+
@@ -146,9 +141,6 @@ export default {
onLoad(query) {
this.EMPLOYMENT_APPLY_MANAGEMENT_ID = query.EMPLOYMENT_APPLY_MANAGEMENT_ID
this.CORPINFO_ID = query.CORPINFO_ID
- // if (query.DEPART_STATE != '0') {
- // this.DEPART_STATE = query.DEPART_STATE
- // }
this.fnGetData()
},
computed: {
@@ -162,16 +154,6 @@ export default {
url: '/pages/mine/information/update'
})
},
- // goEdit() {
- // uni.$u.route({
- // url: '/pages/related_party_units/edit',
- // params: {
- // EMPLOYMENT_APPLY_MANAGEMENT_ID: this.EMPLOYMENT_APPLY_MANAGEMENT_ID,
- // CORPINFO_ID: this.CORPINFO_ID,
- // DEPART_STATE: this.DEPART_STATE
- // }
- // })
- // },
reloadx() {
this.contractFile = []
this.insuranceFile = []
@@ -182,7 +164,6 @@ export default {
},
async fnGetData() {
let resData = await getUserInfo({
- // CORPINFO_ID:this.userInfo.CORPINFO_ID,
dataType: this.DEPART_STATE,
CORPINFO_ID: this.CORPINFO_ID,
EMPLOYMENT_APPLY_MANAGEMENT_ID: this.EMPLOYMENT_APPLY_MANAGEMENT_ID
@@ -215,7 +196,6 @@ export default {
}
if (resData.userPhotoFile && resData.userPhotoFile.length > 0) {
this.$set(this.info, 'userPhoto', this.$filePath + resData.userPhotoFile[0].FILEPATH)
- console.log(this.info.userPhoto)
}
},