diff --git a/js/demandPlan/plan_check_list.js b/js/demandPlan/plan_check_list.js index a0f25e3..1bf191b 100644 --- a/js/demandPlan/plan_check_list.js +++ b/js/demandPlan/plan_check_list.js @@ -144,6 +144,17 @@ function initTable() { title: "备注", unresize: true, align: "center", + templet: function (d) { + if (d.remark) { + if (d.remark.length > 100) { + return '' + d.remark.substring(0, 60) + '...' + } else { + return '' + d.remark + '' + } + } else { + return ''; + } + } }, { title: "操作",