|  |  |  | 
|---|
|  |  |  | <el-table | 
|---|
|  |  |  | v-loading="isWorking.search" | 
|---|
|  |  |  | :data="tableData.list" | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | stripe | 
|---|
|  |  |  | border | 
|---|
|  |  |  | @selection-change="handleSelectionChange" | 
|---|
|  |  |  | 
|---|
|  |  |  | <el-table-column prop="name" label="权限名称" fixed="left" align="center" min-width="120px"></el-table-column> | 
|---|
|  |  |  | <el-table-column prop="remark" label="权限备注" align="center" min-width="120px"></el-table-column> | 
|---|
|  |  |  | <el-table-column prop="createUser" label="创建人" align="center" min-width="100px"> | 
|---|
|  |  |  | <template slot-scope="{row}">{{row.createUserInfo == null ? '' : row.createUserInfo.username}}</template> | 
|---|
|  |  |  | <template slot-scope="{row}">{{row.createUserInfo == null ? '' : row.createUserInfo.realname}}</template> | 
|---|
|  |  |  | </el-table-column> | 
|---|
|  |  |  | <el-table-column prop="createTime" label="创建时间" align="center" min-width="140px" sortable="custom" sort-by="perm.CREATE_TIME"></el-table-column> | 
|---|
|  |  |  | <el-table-column prop="updateUser" label="更新人" align="center" min-width="100px"> | 
|---|
|  |  |  | <template slot-scope="{row}">{{row.updateUserInfo == null ? '' : row.updateUserInfo.username}}</template> | 
|---|
|  |  |  | <template slot-scope="{row}">{{row.updateUserInfo == null ? '' : row.updateUserInfo.realname}}</template> | 
|---|
|  |  |  | </el-table-column> | 
|---|
|  |  |  | <el-table-column prop="updateTime" label="更新时间" align="center" min-width="140px"></el-table-column> | 
|---|
|  |  |  | <el-table-column | 
|---|