|
|
@@ -58,22 +58,22 @@
|
|
|
</el-row>
|
|
|
|
|
|
<el-table v-loading="loading" :data="dataList" @row-click="handdle">
|
|
|
- <el-table-column label="入职人" prop="entryName" min-width="120" />
|
|
|
- <el-table-column label="部门" prop="deptName" min-width="150" />
|
|
|
- <el-table-column label="职位" prop="position" min-width="150" />
|
|
|
- <el-table-column label="员工类型" prop="employeeType" min-width="100">
|
|
|
+ <el-table-column label="入职人" align="center" prop="entryName" min-width="120" />
|
|
|
+ <el-table-column label="部门" align="center" prop="deptName" min-width="150" />
|
|
|
+ <el-table-column label="职位" align="center" prop="position" min-width="150" />
|
|
|
+ <el-table-column label="员工类型" align="center" prop="employeeType" min-width="100">
|
|
|
<template v-slot="scope">
|
|
|
<dict-tag :type="DICT_TYPE.SYSTEM_USER_TYPE" :value="scope.row.employeeType"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="性别" prop="gender" min-width="100">
|
|
|
+ <el-table-column label="性别" align="center" prop="gender" min-width="100">
|
|
|
<template v-slot="scope">
|
|
|
<dict-tag :type="DICT_TYPE.SYSTEM_USER_SEX" :value="scope.row.gender"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="联系电话" prop="contactNumber" min-width="150" />
|
|
|
- <el-table-column label="入职日期" prop="entryDate" min-width="150" />
|
|
|
- <el-table-column label="审批状态" prop="auditStatus" min-width="100">
|
|
|
+ <el-table-column label="联系电话" align="center" prop="contactNumber" min-width="150" />
|
|
|
+ <el-table-column label="入职日期" align="center" prop="entryDate" min-width="150" />
|
|
|
+ <el-table-column label="审批状态" align="center" prop="auditStatus" min-width="100">
|
|
|
<template v-slot="scope">
|
|
|
<dict-tag :type="DICT_TYPE.BPM_TASK_AUDIT_STATUS" :value="scope.row.auditStatus"/>
|
|
|
</template>
|