123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- $(function(){
-
-
-
- $("#title").text("公司应急装备统计表("+mydate.getFullYear()+"年"+(mydate.getMonth()+1)+"月)");
- });
- //数据表格
- var g;
- var mydate = allGetServerTime();
- var condition = " IS_DEL='0' ";
- var loadParams = {
- "listId" : '244',
- "condition" : condition,
- direction:'ASC',
- sort: 'LEDSORT'
- };
- function initComplete(){
- g = $("#maingrid").quiGrid({
- columns: [{
- display: '供电局', name: 'COMP_ID_244_SHOW', align: 'center',width:100 , frozen: true
- },{
- display: '临时食宿装备(辆)',
- columns: [{display: '移动餐车', name: 'DINING_CAR_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '住宿房车', name: 'HOUSE_CAR_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '净水车', name: 'WATER_CAR_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '移动厕所车', name: 'TOILET_CAR_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '移动淋浴车', name: 'SHOWER_CAR_244', align: 'center',width:100 ,editor: { type: 'text'}}]
- },{
- display: '照明装备(套)',
- columns: [{display: '移动照明灯塔', name: 'LIGHT_TOWER_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: 'LED升降照明装置', name: 'LED_LIGHT_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '免维护检修灯', name: 'OVERHAUL_LAMP_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '车载照明灯', name: 'CAR_LAMP_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '探照灯', name: 'SEARCHLIGHT_244', align: 'center',width:100 ,editor: { type: 'text'}}]
- },{
- display: '通信装备(台)',
- columns: [{display: '便携集群基站', name: 'CLUSTER_BASE_STATION_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '集群手台', name: 'CLUSTER_PLATFORM_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '便携卫星站', name: 'SATELLITE_STATION_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '卫星电话', name: 'SATELLITE_PHONE_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '便携移动视频', name: 'PORTABLE_VIDEO_244', align: 'center',width:100 ,editor: { type: 'text'}}]
- },{
- display: '交通运输装备(台)',
- columns: [{display: '四驱越野车', name: 'SUV_CAR_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '四驱皮卡车', name: 'PICKUP_CAR_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '应急抢修车', name: 'RMV_CAR_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '冲锋舟', name: 'CHARGE_BOAT_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '橡皮艇', name: 'RUBBER_BOAT_244', align: 'center',width:100 ,editor: { type: 'text'}}]
- },{
- display: '工程装备(辆)',
- columns: [{display: '排涝车', name: 'DRAINAGE_VEHICE_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '钻孔立杆车', name: 'DRILLING_POLE_CAR_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '自吊车', name: 'SELF_CRANE_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '高空作业车', name: 'OVARHEAD_WORKING_TRUCK_244', align: 'center',width:100 ,editor: { type: 'text'}},
- {display: '运输车', name: 'TRUCK_244', align: 'center',width:100 ,editor: { type: 'text'}}]
- },{
- display: '其他装备',
- columns: [{display: '无人机', name: 'UAVS_244', align: 'center',width:100 ,editor: { type: 'text'}}]
- }],
- url :$.pathname() + '/ws/crud/CRUDService/queryQui',
- params : loadParams,
- usePager : false,
- sortName: '',
- rownumbers:true,
- // height: '100%',
- width:"100%",
- multihead:true,
- // enabledEdit: true, //编辑用
- percentWidthMode:true,
- // toolbar:{
- // items:[
- // {text: '批量保存', click: saveAll, iconClass: 'icon_add'},
- // { line : true }
- // ]
- // }
- });
-
- // //重设高度
- // $(parent.document.body).find("iframe").height($(window.document.body).height()+30);
- // $(top.document.body).find("iframe").height($(window.document.body).height()+30);
- }
|