Authored by chenchao

add desc in list page

... ... @@ -89,22 +89,27 @@
columns: [[{
title: "编号",
field: "code",
width: 40
width: 20
}, {
title: "标题",
field: "title",
align: "center",
width: 40
}, {
width: 30
},{
title: "功能描述",
field: "desc",
align: "center",
width: 50,
}, {
title: "创建时间",
field: "createTimeStr",
align: "center",
width: 40,
width: 20,
}, {
title: "操作",
field: "operations",
align: "center",
width: 40,
width: 30,
formatter: function (value, rowData) {
var str = "<a role='detail' dataId='"+ rowData.code + "' style='margin-left:10px;background-color: #5cb85c !important;'>编辑</a>";
if(rowData.code == "super_enter_stage_func"){
... ...