$(function(){ var controllerPathMap = "${controllerPathMap}"; var addDialogId = controllerPathMap+"_add"; var editDialogId = controllerPathMap+"_edit"; var gridId = controllerPathMap+"_list"; var gridToolbarId = controllerPathMap+"_toolbar" var gridColumns = [{ field: 'selectedItem', checkbox: true }, <#list fields as tempField> <#if tempField["name"] != "id"> { field: '${tempField["name"]}', title: '${tempField["cnName"]}', sortable: true, }, { field : 'id', title : '操作', width : 10, formatter : function(value, rows, index){ return '修改 | ' + '删除'; }, }, ]; ${controllerPathMap}Page = tabInit(controllerPathMap, addDialogId, editDialogId, gridId, gridToolbarId, gridColumns); });