diff --git a/js/demandPlan/apply_plan_list.js b/js/demandPlan/apply_plan_list.js
index ebcc6a3..fade224 100644
--- a/js/demandPlan/apply_plan_list.js
+++ b/js/demandPlan/apply_plan_list.js
@@ -134,6 +134,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 '';
+ }
+ }
},
{
diff --git a/js/demandPlan/child/apply_plan_detail.js b/js/demandPlan/child/apply_plan_detail.js
index 42942e4..713df75 100644
--- a/js/demandPlan/child/apply_plan_detail.js
+++ b/js/demandPlan/child/apply_plan_detail.js
@@ -101,14 +101,14 @@ function initTable() {
},
},
{
- field: "typeName",
+ field: "type",
width: '15%',
title: "物机类型",
unresize: true,
align: "center",
},
{
- field: "type",
+ field: "typeName",
width: '15%',
title: "物机名称",
unresize: true,