ResultShow = function() { /** 定义变量* */ var _this = this; _this.listGrid = null;// 数据列表 return { init : function() { _this.listGrid = $("#dataGrid").quiGrid({ columns: [ { display : '得分', name : 'NAME_374', showTitle:true, width : "35%", id:'FD_OBJECTID374' },{ display : '保供电A', name : 'LEVEL_374_SHOW', showTitle:true, width : "20%" }, { display : '保供电B', name : 'WEIGHT_VALUE_374', showTitle:true, width : "20%" }, { display : '保供电C', name : 'WRITE_TIME_374', showTitle:true, width : "25%" } ], width:"100%", height:'200', type:'post', usePager: false }); } }; }(); $(function() { ResultShow.init(); });