|
@@ -73,9 +73,9 @@
|
|
|
<el-table-column
|
|
|
label="单位"
|
|
|
align="center"
|
|
|
- prop="deptId"
|
|
|
- width="180"
|
|
|
- :formatter="deptIdformatter"
|
|
|
+ prop="deptName"
|
|
|
+ show-overflow-tooltip
|
|
|
+ width="150"
|
|
|
/>
|
|
|
<el-table-column label="姓名" align="center" prop="name" />
|
|
|
<el-table-column label="性别" align="center" prop="sex">
|
|
@@ -92,12 +92,14 @@
|
|
|
align="center"
|
|
|
prop="idcard"
|
|
|
width="170"
|
|
|
+ show-overflow-tooltip
|
|
|
/>
|
|
|
<el-table-column
|
|
|
label="部职别"
|
|
|
align="center"
|
|
|
- width="300"
|
|
|
+ width="200"
|
|
|
prop="duty"
|
|
|
+ show-overflow-tooltip
|
|
|
/>
|
|
|
<el-table-column label="职务" align="center" width="120" prop="postId">
|
|
|
<template slot-scope="scope">
|
|
@@ -142,6 +144,7 @@
|
|
|
align="center"
|
|
|
class-name="small-padding fixed-width"
|
|
|
width="200"
|
|
|
+ fixed="right"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<el-button size="btk" type="text" @click="handleChakan(scope.row)"
|
|
@@ -330,16 +333,6 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
methods: {
|
|
|
- //单位翻译
|
|
|
- deptIdformatter(row, column) {
|
|
|
- var deptName = "";
|
|
|
- this.unitId.map((item) => {
|
|
|
- if (item.deptId == row.deptId) {
|
|
|
- deptName = item.deptName;
|
|
|
- }
|
|
|
- });
|
|
|
- return deptName;
|
|
|
- },
|
|
|
chaKan(row) {
|
|
|
this.queryParams.unitId = row;
|
|
|
this.unitId = row;
|
|
@@ -808,7 +801,7 @@ li {
|
|
|
}
|
|
|
|
|
|
::v-deep .el-input--medium .el-input__inner {
|
|
|
- height: 38px;
|
|
|
+ height: 28px;
|
|
|
line-height: 37px;
|
|
|
}
|
|
|
#chakan ::v-deep .el-dialog {
|
|
@@ -817,7 +810,7 @@ li {
|
|
|
}
|
|
|
|
|
|
#chakan /deep/ .el-dialog__body {
|
|
|
- padding: 30px 30px 30px 153px;
|
|
|
+ padding: 30px 30px 30px 30px;
|
|
|
}
|
|
|
.divbox {
|
|
|
width: 1016px !important;
|