3265b8fcbb4cbf12381e25549b8a4b00de63d390.svn-base 875 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ResultShow = function() {
  2. /** 定义变量* */
  3. var _this = this;
  4. _this.listGrid = null;// 数据列表
  5. return {
  6. init : function() {
  7. _this.listGrid = $("#dataGrid").quiGrid({
  8. columns: [
  9. {
  10. display : '得分',
  11. name : 'NAME_374',
  12. showTitle:true,
  13. width : "35%",
  14. id:'FD_OBJECTID374'
  15. },{
  16. display : '保供电A',
  17. name : 'LEVEL_374_SHOW',
  18. showTitle:true,
  19. width : "20%"
  20. }, {
  21. display : '保供电B',
  22. name : 'WEIGHT_VALUE_374',
  23. showTitle:true,
  24. width : "20%"
  25. }, {
  26. display : '保供电C',
  27. name : 'WRITE_TIME_374',
  28. showTitle:true,
  29. width : "25%"
  30. }
  31. ],
  32. width:"100%",
  33. height:'200',
  34. type:'post',
  35. usePager: false
  36. });
  37. }
  38. };
  39. }();
  40. $(function() {
  41. ResultShow.init();
  42. });