Commit 0eefabd8 authored by zhengke's avatar zhengke

修改

parent 846de24a
......@@ -205,6 +205,16 @@
</el-table-column>
<el-table-column prop="SuperiorName" label="上级" width="150"></el-table-column>
<el-table-column prop="BelongGroupList" label="所在分组" width="200">
<template slot-scope="scope">
<el-tag v-for="(item,index) in scope.row.BelongGroupList" size="small" :key="index">{{item.GroupName}}</el-tag>
</template>
</el-table-column>
<el-table-column prop="LookGroupList" label="可以查看的分组" width="200">
<template slot-scope="scope">
<el-tag v-for="(item,index) in scope.row.LookGroupList" size="small" :key="index">{{item.GroupName}}</el-tag>
</template>
</el-table-column>
<el-table-column prop="Age" label="基础资料" width="120">
<template slot-scope="scope">
<div>年龄:{{scope.row.Age}}</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment