diff --git a/src/api/construction-person/entry-and-exit-manage/person-exit.js b/src/api/construction-person/entry-and-exit-manage/person-exit.js
index 3cabb63..15e3380 100644
--- a/src/api/construction-person/entry-and-exit-manage/person-exit.js
+++ b/src/api/construction-person/entry-and-exit-manage/person-exit.js
@@ -27,6 +27,16 @@ export const getPersonEntryAndExitRecordAPI = (data) => {
params: data,
})
}
+
+// 获取已经出场人员列表
+export const getAlreadyExitPersonListAPI = (data) => {
+ return request({
+ url: '/bmw/workerExit/workerProList',
+ method: 'GET',
+ params: data,
+ })
+}
+
// 已出场且未上传工资单 然后单独上传接口
export const uploadExitFileAPI = (data) => {
return requestFormData({
diff --git a/src/views/construction-person/entry-and-exit-manage/person-exit/exit-person-list.vue b/src/views/construction-person/entry-and-exit-manage/person-exit/exit-person-list.vue
new file mode 100644
index 0000000..b76f938
--- /dev/null
+++ b/src/views/construction-person/entry-and-exit-manage/person-exit/exit-person-list.vue
@@ -0,0 +1,321 @@
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+
+
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 未上传
+ {{
+ row.daysSinceExit * 1 > 0
+ ? '(' + row.daysSinceExit + '天)'
+ : ''
+ }}
+
+
+ 点击上传
+
+
+ 查看
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.originFileName }}
+
+
+
+ 下载
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/construction-person/entry-and-exit-manage/person-exit/index.vue b/src/views/construction-person/entry-and-exit-manage/person-exit/index.vue
index a2b984e..cdee4ac 100644
--- a/src/views/construction-person/entry-and-exit-manage/person-exit/index.vue
+++ b/src/views/construction-person/entry-and-exit-manage/person-exit/index.vue
@@ -35,6 +35,14 @@
出场后一个月未上传《离场工资结算确认单》,人员自动进入失信人员
+
+
+ 出场人员
+
@@ -117,6 +125,11 @@
v-if="dialogConfig.outerTitle === '出入场记录'"
/>
+
+