2023-11-07 10:24:08 +08:00
|
|
|
|
<template>
|
2024-09-30 09:40:54 +08:00
|
|
|
|
<view class="content">
|
|
|
|
|
<u-list @scrolltolower="scrolltolower" v-if="list.length > 0">
|
|
|
|
|
<u-list-item v-for="(item, index) in list" :key="index">
|
|
|
|
|
<view>
|
|
|
|
|
<view class="flex-between main-title">
|
2025-02-28 16:43:38 +08:00
|
|
|
|
<text>单位名称:{{ item.relevantUnitName }}</text>
|
2024-09-30 09:40:54 +08:00
|
|
|
|
</view>
|
2025-02-28 16:43:38 +08:00
|
|
|
|
<view class="flex-between mt-10 subtitle" v-show="item.startDate">
|
|
|
|
|
<text>就职时间:{{ item.startDate }}-{{ item.endDate || '至今' }}</text>
|
2024-09-30 09:40:54 +08:00
|
|
|
|
</view>
|
2025-02-28 16:43:38 +08:00
|
|
|
|
<view class="flex-between mt-10 subtitle" v-show="item.departState">
|
2023-11-07 10:24:08 +08:00
|
|
|
|
<text>就职状态:
|
2025-02-28 16:43:38 +08:00
|
|
|
|
<template v-if="item.departState === '0'">在职</template>
|
|
|
|
|
<template v-if="item.departState === '1'">离职</template>
|
|
|
|
|
<template v-if="item.departState === '-1'">离职申请中</template>
|
|
|
|
|
<template v-if="item.departState === '2'">待审核</template>
|
|
|
|
|
<template v-if="item.departState === '3'">已审核</template>
|
2023-11-07 10:24:08 +08:00
|
|
|
|
</text>
|
|
|
|
|
</view>
|
2025-03-10 10:03:29 +08:00
|
|
|
|
<view class="flex-between mt-10 subtitle" v-if="item.departState !== '1'">
|
2024-09-30 09:40:54 +08:00
|
|
|
|
<text>单位在职申请审核状态:
|
2025-02-28 16:43:38 +08:00
|
|
|
|
<template v-if="item.auditState === '0'">已打回</template>
|
|
|
|
|
<template v-if="item.auditState === '1'">待审核</template>
|
|
|
|
|
<template v-if="item.auditState === '2'">审核通过</template>
|
2024-09-30 09:40:54 +08:00
|
|
|
|
</text>
|
|
|
|
|
</view>
|
2025-02-28 16:43:38 +08:00
|
|
|
|
<view class="flex-between mt-10 subtitle" v-show="item.departState !== '0' && item.reviewState">
|
2024-09-30 09:40:54 +08:00
|
|
|
|
<text>单位离职申请审核状态:
|
2025-02-28 16:43:38 +08:00
|
|
|
|
<template v-if="item.reviewState === '0'">已打回</template>
|
|
|
|
|
<template v-if="item.reviewState === '1'">待审核</template>
|
|
|
|
|
<template v-if="item.reviewState === '2'">审核通过</template>
|
2024-09-30 09:40:54 +08:00
|
|
|
|
</text>
|
|
|
|
|
</view>
|
2023-11-07 10:24:08 +08:00
|
|
|
|
|
2025-02-28 16:43:38 +08:00
|
|
|
|
<view class="flex-between mt-10 subtitle" v-if="item.auditRemarks">
|
|
|
|
|
<text>审核意见:{{ item.auditRemarks }}
|
2024-09-30 09:40:54 +08:00
|
|
|
|
</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="flex-between mt-10 subtitle">
|
|
|
|
|
<view></view>
|
|
|
|
|
<view class="flex-between">
|
|
|
|
|
<u-button type="primary" text="查看" size="mini"
|
2025-02-28 16:43:38 +08:00
|
|
|
|
@click="fnView(item.employmentApplyManagementId, item.corpinfoId, item.departState)"></u-button>
|
2024-09-30 09:40:54 +08:00
|
|
|
|
<view class="ml-10">
|
2024-12-19 17:11:58 +08:00
|
|
|
|
<u-button type="primary" text="离职" size="mini"
|
2025-02-28 16:43:38 +08:00
|
|
|
|
v-if="item.departState === '0'"
|
|
|
|
|
@click="fnResignationApplication(item.employmentApplyManagementId,item.relevantUnitName)">
|
2024-09-30 09:40:54 +08:00
|
|
|
|
</u-button>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</u-list-item>
|
|
|
|
|
</u-list>
|
|
|
|
|
<empty v-else></empty>
|
|
|
|
|
</view>
|
2023-11-07 10:24:08 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-02-28 16:43:38 +08:00
|
|
|
|
import {getEmpLog} from "../../api/api";
|
2023-11-07 10:24:08 +08:00
|
|
|
|
|
2024-09-30 09:40:54 +08:00
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
currentPage: 1,
|
|
|
|
|
totalPage: 0,
|
|
|
|
|
list: [],
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onShow() {
|
|
|
|
|
this.resetList()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
async getData() {
|
2025-02-28 16:43:38 +08:00
|
|
|
|
let resData = await getEmpLog({
|
|
|
|
|
id: this.$store.getters.getUserInfo.USER_ID,
|
|
|
|
|
limit: this.pageSize,
|
|
|
|
|
curPage: this.currentPage,
|
|
|
|
|
postMethod: 'application/json'
|
2024-09-30 09:40:54 +08:00
|
|
|
|
});
|
2025-02-28 16:43:38 +08:00
|
|
|
|
this.list = [...this.list, ...resData.page.list];
|
2024-09-30 09:40:54 +08:00
|
|
|
|
this.totalPage = resData.page.totalPage;
|
|
|
|
|
},
|
|
|
|
|
resetList() {
|
|
|
|
|
this.pageSize = 10
|
|
|
|
|
this.currentPage = 1
|
|
|
|
|
this.list = []
|
|
|
|
|
this.getData()
|
|
|
|
|
},
|
|
|
|
|
scrolltolower() {
|
|
|
|
|
this.currentPage++;
|
|
|
|
|
if (this.totalPage >= this.currentPage) this.getData();
|
|
|
|
|
},
|
|
|
|
|
fnResignationApplication(EMPLOYMENT_APPLY_MANAGEMENT_ID, RELEVANT_UNIT_NAME) {
|
|
|
|
|
uni.$u.route({
|
|
|
|
|
url: '/pages/employed_by/resignation_application',
|
|
|
|
|
params: {
|
|
|
|
|
EMPLOYMENT_APPLY_MANAGEMENT_ID,
|
|
|
|
|
RELEVANT_UNIT_NAME
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
fnView(EMPLOYMENT_APPLY_MANAGEMENT_ID, CORPINFO_ID, DEPART_STATE) {
|
|
|
|
|
uni.$u.route({
|
|
|
|
|
url: '/pages/related_party_units/view',
|
|
|
|
|
params: {
|
|
|
|
|
EMPLOYMENT_APPLY_MANAGEMENT_ID,
|
|
|
|
|
CORPINFO_ID,
|
|
|
|
|
DEPART_STATE
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-11-07 10:24:08 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|
</style>
|