文章列表新增展示阅读权限字段
This commit is contained in:
parent
d261408cff
commit
9888ab73ef
@ -87,11 +87,23 @@
|
|||||||
align: 'center',
|
align: 'center',
|
||||||
width: 66
|
width: 66
|
||||||
}, {
|
}, {
|
||||||
field: 'is_home',
|
field: 'is_share',
|
||||||
title: '是否共享',
|
title: '阅读权限范围',
|
||||||
toolbar: '#is_share',
|
|
||||||
align: 'center',
|
align: 'center',
|
||||||
width: 80
|
width: 100,
|
||||||
|
templet: function(d){
|
||||||
|
let html='<span class="green">私有</span>';
|
||||||
|
if(d.is_share==1){
|
||||||
|
html='<span class="blue">所有人</span>';
|
||||||
|
}
|
||||||
|
else if(d.is_share==2){
|
||||||
|
html='<span class="yellow">部门</span>';
|
||||||
|
}
|
||||||
|
else if(d.is_share==3){
|
||||||
|
html='<span class="red">部分人员</span>';
|
||||||
|
}
|
||||||
|
return html;
|
||||||
|
}
|
||||||
}, {
|
}, {
|
||||||
field: 'right',
|
field: 'right',
|
||||||
title: '操作',
|
title: '操作',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user