| | |
| | | <el-table-column type="index" show-overflow-tooltip width="64" label="序号" /> |
| | | <el-table-column prop="deptName" show-overflow-tooltip label="部门名称" /> |
| | | <el-table-column prop="fullName" show-overflow-tooltip label="部门全称" /> |
| | | <el-table-column prop="deptCategory" show-overflow-tooltip width="120" label="部门类型"> |
| | | <el-table-column prop="deptCategory" show-overflow-tooltip label="部门类型"> |
| | | <template v-slot="{ row }"> |
| | | {{ getDictLabel(row.deptCategory, dictObj.org_category) }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="deptNature" show-overflow-tooltip width="120" label="部门性质"> |
| | | <el-table-column prop="deptNature" show-overflow-tooltip label="部门性质"> |
| | | <template v-slot="{ row }"> |
| | | {{ getDictLabel(row.deptNature, dictObj.org_nature) }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="sort" show-overflow-tooltip width="80" label="排序" /> |
| | | <el-table-column prop="bingId" show-overflow-tooltip width="100" label="组织id" /> |
| | | <el-table-column prop="areaName" show-overflow-tooltip width="180" label="行政区划" /> |
| | | <el-table-column prop="bingId" show-overflow-tooltip width="80" label="组织id" /> |
| | | <el-table-column prop="areaName" show-overflow-tooltip label="行政区划" /> |
| | | |
| | | <el-table-column label="操作" class-name="operation-btns" width="220"> |
| | | <el-table-column label="操作" class-name="operation-btns"> |
| | | <template v-slot="{ row }"> |
| | | <el-link @click="handleView(row)">查看</el-link> |
| | | <el-link @click="handleEdit(row)">编辑</el-link> |