|  |  |  | 
|---|
|  |  |  | @selection-change="handleSelectionChange" | 
|---|
|  |  |  | > | 
|---|
|  |  |  | <el-table-column type="selection" width="55"></el-table-column> | 
|---|
|  |  |  | <el-table-column prop="name" label="组织名称" min-width="300px"></el-table-column> | 
|---|
|  |  |  | <el-table-column prop="name" label="组织名称" fixed min-width="300px"></el-table-column> | 
|---|
|  |  |  | <el-table-column prop="code" label="组织编码" min-width="120px"></el-table-column> | 
|---|
|  |  |  | <el-table-column prop="type" label="一级类型" min-width="100px"> | 
|---|
|  |  |  | <template scope="{row}"> | 
|---|
|  |  |  | <span v-if="row.type == 1">HR</span> | 
|---|
|  |  |  | 
|---|
|  |  |  | <template scope="{row}"> | 
|---|
|  |  |  | <span v-if="row.status == 0" style="color: red">停用</span> | 
|---|
|  |  |  | <span v-if="row.status == 1" style="color: green">正常</span> | 
|---|
|  |  |  | <span v-if="row.status == 2" style="color: grey">已删除</span> | 
|---|
|  |  |  | <span v-if="row.status == -1" style="color: grey">已删除</span> | 
|---|
|  |  |  | </template> | 
|---|
|  |  |  | </el-table-column> | 
|---|
|  |  |  | <!-- | 
|---|
|  |  |  |  | 
|---|
|  |  |  | <el-table-column prop="namePath" label="组织路径" min-width="200px"></el-table-column> | 
|---|
|  |  |  | --> | 
|---|
|  |  |  |  | 
|---|
|  |  |  | <!-- | 
|---|
|  |  |  | <el-table-column prop="syncDate" label="最后同步时间" min-width="120px"></el-table-column> | 
|---|
|  |  |  | --> | 
|---|