|
|
@@ -104,17 +104,32 @@
|
|
|
align="center"
|
|
|
></el-table-column>
|
|
|
<el-table-column
|
|
|
- prop="depart"
|
|
|
- label="部门"
|
|
|
+ prop="password"
|
|
|
+ label="密码"
|
|
|
min-width="160"
|
|
|
align="center"
|
|
|
></el-table-column>
|
|
|
+
|
|
|
+ <el-table-column
|
|
|
+ prop="deptName"
|
|
|
+ label="部门"
|
|
|
+ min-width="160"
|
|
|
+ align="center"
|
|
|
+ >
|
|
|
+ <template v-slot="scope">
|
|
|
+ {{ scope.row.deptName || "暂无部门" }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
- prop="role"
|
|
|
+ prop="roleName"
|
|
|
label="职位"
|
|
|
min-width="160"
|
|
|
align="center"
|
|
|
- ></el-table-column>
|
|
|
+ >
|
|
|
+ <template v-slot="scope">
|
|
|
+ {{ scope.row.roleName || "暂无职位" }}
|
|
|
+ </template></el-table-column
|
|
|
+ >
|
|
|
</el-table>
|
|
|
<div style="width: 100%; text-align: right; margin-top: 43px">
|
|
|
<el-pagination
|