diff --git a/apps/web-antd/src/views/property/attendanceManagement/workforceManagement/data.ts b/apps/web-antd/src/views/property/attendanceManagement/workforceManagement/data.ts
index 28b47585..aa86e380 100644
--- a/apps/web-antd/src/views/property/attendanceManagement/workforceManagement/data.ts
+++ b/apps/web-antd/src/views/property/attendanceManagement/workforceManagement/data.ts
@@ -174,17 +174,17 @@ export const unitColumns: VxeGridProps['columns'] = [
},
{
title: '姓名',
- field: 'scheduleName',
+ field: 'userName',
minWidth:120
},
{
title: '所属单位',
- field: 'scheduleName',
+ field: 'unitName',
width:'auto',
},
{
title: '电话',
- field: 'groupId',
+ field: 'phone',
minWidth:120
}
];
diff --git a/apps/web-antd/src/views/property/attendanceManagement/workforceManagement/type.d.ts b/apps/web-antd/src/views/property/attendanceManagement/workforceManagement/type.d.ts
new file mode 100644
index 00000000..0a100e0b
--- /dev/null
+++ b/apps/web-antd/src/views/property/attendanceManagement/workforceManagement/type.d.ts
@@ -0,0 +1,68 @@
+//列表数据,用于展示人员列表
+export interface PersonVO {
+ /**
+ * 主键id
+ */
+ id: string | number;
+
+ /**
+ * 用户id
+ */
+ userId: string | number;
+
+ /**
+ * 用户名称
+ */
+ userName: string;
+
+ /**
+ * 联系电话
+ */
+ phone: string;
+
+ /**
+ * 性别
+ */
+ gender: number;
+
+ /**
+ * 人脸图片
+ */
+ img: string;
+
+ /**
+ * 所属单位id
+ */
+ unitId: string | number;
+
+ /**
+ * 所属单位名称
+ */
+ unitName: string;
+
+ /**
+ * 入驻位置
+ */
+ locathon: string;
+
+ /**
+ * 入驻时间
+ */
+ time: string;
+
+ /**
+ * 车牌号码
+ */
+ carNumber: string;
+
+ /**
+ * 状态
+ */
+ state: number|string;
+
+ /**
+ * 备注
+ */
+ remark: string;
+
+ }
\ No newline at end of file
diff --git a/apps/web-antd/src/views/property/attendanceManagement/workforceManagement/unit-person-modal.vue b/apps/web-antd/src/views/property/attendanceManagement/workforceManagement/unit-person-modal.vue
index a231d01f..1a0c63c4 100644
--- a/apps/web-antd/src/views/property/attendanceManagement/workforceManagement/unit-person-modal.vue
+++ b/apps/web-antd/src/views/property/attendanceManagement/workforceManagement/unit-person-modal.vue
@@ -1,7 +1,7 @@
@@ -263,7 +263,7 @@ onMounted(() => {
style="flex:1;"
>
-
@@ -297,6 +297,9 @@ onMounted(() => {
已选人员:
+
+ {{ user.userName }}
+