提交 08690156 编写于 作者: 智布道's avatar 智布道 👁

👽 后台文章分类管理页面,增加父级分类展示

上级 093b96c3
......@@ -115,11 +115,22 @@
}, {
field: 'name',
title: '名称',
width: '100px',
width: '180px',
formatter: function (code, row, index) {
var id = row.id;
return '<a href="' + appConfig.wwwPath + '/type/' + id + '" target="_blank">' + row.name + '</a>';
}
}, {
field: 'parent.name',
title: '父级分类',
width: '180px',
formatter: function (code, row, index) {
var parent = row.parent;
if(!parent) {
return "-";
}
return '<a href="' + appConfig.wwwPath + '/type/' + parent.id + '" target="_blank">' + parent.name + '</a>';
}
}, {
field: 'description',
title: '描述',
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册