/** * patrolpoint.js * 点位管理界面 * emial: yaoqiang@chinausky.com * create: 2018-12-08 */ Ext.Loader.setConfig({ enabled: true }); Ext.Loader.setPath('Ext.ux', '../../res/extjs/examples/ux'); Ext.require([ 'Ext.grid.*', 'Ext.data.*', 'Ext.ux.RowExpander', 'Ext.selection.CheckboxModel' ]); var sm = Ext.create('Ext.selection.CheckboxModel'); Ext.define('PatrolPoint',{ extend: 'Ext.data.Model', fields: [ {name:'id', type:'string'}, {name:'label', type:'string'}, {name:'label1', type:'string'}, {name:'address', type:'string'}, {name:'equipment_id', type:'string'}, {name:'xj_name', type:'string'}, ] }); Ext.onReady(function(){ var baseUrl = document.getElementById('basePath').value; var theme = document.getElementById('theme').value; var chkIcon = '' var unchkIcon = '' var countPerPage = 20; var maxHeight = 10000; var chkBoolean = function(flag) { if(flag) return chkIcon; return unchkIcon; } var getManufacturerId = Ext.create("Ext.data.Store", { fields: ["id", "analysis_content"], autoLoad: true, proxy: { type: "ajax", actionMethods: { read: "POST" }, url: baseUrl+'iot/qrcodeanalysis/getList1', reader: { type: "json", root: "RESULT" } } }); var clear_append_form = function (){ Ext.getCmp('fa_label').setValue(""); Ext.getCmp('fa_address').setValue(""); Ext.getCmp('fa_equipment_id').setValue(""); Ext.getCmp('fa_xj_name').setValue(""); Ext.getCmp('PatrolPointListPanel').getStore().reload(); } var myStore = Ext.create('Ext.data.Store', { model: 'PatrolPoint', pageSize: countPerPage, proxy: { type: 'ajax', url: baseUrl+'iot/patrolpoint/getList1', reader: { type: 'json', root: 'RESULT', totalProperty: 'totalCount' } }, remoteSort: true }); var AppendForm = Ext.create('Ext.form.Panel', { id: 'PatrolPointAppendForm', labelWidth: 55, url: baseUrl+'iot/patrolpoint/append1', defaultType: 'textfield', bodyPadding: 15, items: [{ fieldLabel:'巡检点名称', id: 'fa_xj_name', name:'xj_name', maxLength:20, maxLengthText:'长度不得超出{0}', anchor:'75%' } // ,{ // fieldLabel:'巡检点标签', // id: 'fa_label', // name: 'label', // maxLength: 250, // maxLengthText:'长度不得超出{0}', // anchor:'95%' // } ,{ fieldLabel:'请选择巡检点标签', id:'fa_label', name:'label', xtype:'combo', store:getManufacturerId, displayField : 'analysis_content', valueField : 'id', value : document.getElementById('id1').value, editable : false },{ fieldLabel:'巡检点对应的设备', id: 'fa_equipment_id', name:'equipment_id', maxLength: 30, maxLengthText:'长度不得超出{0}', anchor:'95%' },{ fieldLabel:'巡检点地址', id: 'fa_address', name: 'address', maxLength: 250, maxLengthText:'长度不得超出{0}', anchor:'95%' },{ id:'fa_queryJson', name:'queryJson', hidden:true }], buttons: [{ text: '提交', iconCls:'ok_btn', handler: function() { var form = this.up('form').getForm(); if (form.isValid()) { var query = new Object(); query.label = Ext.getCmp('fa_label').getValue(); query.address = Ext.getCmp('fa_address').getValue(); query.equipment_id = Ext.getCmp('fa_equipment_id').getValue(); query.xj_name = Ext.getCmp('fa_xj_name').getValue(); var jsonstr = Ext.JSON.encode(query); Ext.getCmp('fa_queryJson').setValue(jsonstr); form.submit({ method:'post', success: function(form, action) { Ext.Msg.alert('操作成功', '新增点位地址已保存', function(btn,txt){ clear_append_form(); }); }, failure: function(form, action) { Ext.Msg.alert('操作失败', action.Msg , function(btn,txt){ clear_append_form(); }); } }); } } },{ text: '关闭', iconCls: 'cancel_btn', handler: function() { this.up('window').hide(); } }] }); var appendwin = function(){ Ext.create('Ext.window.Window', { title: '新增', height: 350, width: 400, layout: 'fit', items: AppendForm, closeAction: 'hide' }).show(); } //筛选 var clear_filter_form = function(){ Ext.getCmp('ff_xj_name').setValue(""); Ext.getCmp('ff_equipment_id').setValue(""); Ext.getCmp('ff_label').setValue(""); Ext.getCmp('ff_address').setValue(""); } var FilterWin = Ext.create('Ext.form.Panel', { id: 'PatrolPointFilterForm', labelWidth: 55, defaultType: 'textfield', bodyPadding: 15, items: [{ fieldLabel:'巡检点名称', id: 'ff_xj_name', name:'xj_name', maxLength:20, maxLengthText:'长度不得超出{0}', value : document.getElementById('xj_name').value, anchor:'75%' },{ fieldLabel:'巡检点标签', id:'ff_label', name:'label', maxLength: 250, maxLengthText:'长度不得超出{0}', value : document.getElementById('label').value, editable : false },{ fieldLabel:'巡检点对应的设备', id: 'ff_equipment_id', name: 'equipment_id', maxLength: 250, maxLengthText:'长度不得超出{0}', value : document.getElementById('equipment_id').value, anchor:'95%' },{ fieldLabel:'巡检点地址', id: 'ff_address', name: 'address', maxLength: 250, maxLengthText:'长度不得超出{0}', value : document.getElementById('address').value, anchor:'95%' },{ id:'ff_queryJson', name:'queryJson', hidden:true }], buttons: [{ text: '提交', iconCls:'ok_btn', handler: function() { var form = this.up('form').getForm(); if (form.isValid()) { var query = new Object(); if(Ext.getCmp('ff_label').getValue().length>0) query.label = Ext.getCmp('ff_label').getValue(); if(Ext.getCmp('ff_address').getValue().length>0) query.address = Ext.getCmp('ff_address').getValue(); if(Ext.getCmp('ff_equipment_id').getValue().length>0) query.equipment_id = Ext.getCmp('ff_equipment_id').getValue(); if(Ext.getCmp('ff_xj_name').getValue().length>0) query.xj_name = Ext.getCmp('ff_xj_name').getValue(); var jsonstr = Ext.JSON.encode(query); myStore.getProxy().extraParams = { queryJson : jsonstr }; Ext.getCmp('PatrolPointListPageToolbar').moveFirst(); Ext.getCmp('label').setValue(query.label); Ext.getCmp('address').setValue(query.address); Ext.getCmp('equipment_id').setValue(query.equipment_id); Ext.getCmp('xj_name').setValue(query.xj_name); // myStore.reload(); clear_filter_form(); this.up('window').hide(); } } },{ text: '关闭', iconCls: 'cancel_btn', handler: function() { this.up('window').hide(); } }] }); var filterwin = function() { Ext.create('Ext.window.Window',{ title: '筛选', height: 300, width: 350, layout: 'fit', items: FilterWin, closeAction: 'hide' }).show(); } var getManufacturerId2 = Ext.create("Ext.data.Store", { fields: ["analysis_content", "analysis_content"], autoLoad: true, proxy: { type: "ajax", actionMethods: { read: "POST" }, url: baseUrl+'iot/qrcodeanalysis/getList', reader: { type: "json", root: "RESULT" } } }); var clear_modify_form = function (){ Ext.getCmp('fm_id').setValue(""); Ext.getCmp('fm_label').setValue(""); Ext.getCmp('fm_address').setValue(""); Ext.getCmp('fm_equipment_id').setValue(""); Ext.getCmp('fm_xj_name').setValue(""); Ext.getCmp('PatrolPointListPanel').getStore().reload(); } var ModifyForm = Ext.create('Ext.form.Panel', { id: 'PatrolPointEditForm', labelWidth: 55, url: baseUrl+'iot/patrolpoint/update1', defaultType: 'textfield', bodyPadding: 15, items: [{ fieldLabel:'巡检点名称', id: 'fm_xj_name', name:'xj_name', maxLength:20, maxLengthText:'长度不得超出{0}', anchor:'75%' } // ,{ // fieldLabel:'巡检点标签', // id: 'fm_label', // name: 'label', // maxLength: 250, // maxLengthText:'长度不得超出{0}', // anchor:'95%' // } ,{ fieldLabel:'请选择巡检点标签', id:'fm_label', name:'label', xtype:'combo', store:getManufacturerId2, displayField : 'analysis_content', valueField : 'analysis_content', editable : false, },{ fieldLabel:'巡检点对应名称', id: 'fm_equipment_id', name: 'equipment_id', maxLength: 250, maxLengthText:'长度不得超出{0}', anchor:'95%' },{ fieldLabel:'巡检点地址', id: 'fm_address', name:'address', maxLength: 30, // value:"0000-0000-0000", maxLengthText:'长度不得超出{0}', anchor:'95%' },{ id: 'fm_id', name:'id', hidden:true },{ id:'fm_queryJson', name:'queryJson', hidden:true }], buttons: [{ text: '修改', iconCls:'ok_btn', handler: function() { var form = this.up('form').getForm(); if (form.isValid()) { var query = new Object(); query.id = Ext.getCmp('fm_id').getValue(); query.label = Ext.getCmp('fm_label').getValue(); query.address = Ext.getCmp('fm_address').getValue(); query.equipment_id = Ext.getCmp('fm_equipment_id').getValue(); query.xj_name = Ext.getCmp('fm_xj_name').getValue(); var jsonstr = Ext.JSON.encode(query); Ext.getCmp('fm_queryJson').setValue(jsonstr); form.submit({ method:'post', success: function(form, action) { Ext.Msg.alert('操作成功', '已修改', function(btn,txt){ clear_modify_form(); }); }, failure: function(form, action) { Ext.Msg.alert('操作失败', action.Msg , function(btn,txt){ clear_modify_form(); }); } }); this.up('window').hide(); } } },{ text: '关闭', iconCls: 'cancel_btn', handler: function() { this.up('window').hide(); } }] }); var modifywin = function(){ Ext.create('Ext.window.Window', { title: '修改', height: 350, width: 400, layout: 'fit', items: ModifyForm, closeAction: 'hide' }).show(); } var chk_sm = function() { if(sm.getCount()==1){ modifywin(); var selected = sm.getSelection( ); Ext.getCmp('fm_id').setValue(selected[0].raw.id); Ext.getCmp('fm_label').setValue(selected[0].raw.label); Ext.getCmp('fm_address').setValue(selected[0].raw.address); Ext.getCmp('fm_equipment_id').setValue(selected[0].raw.equipment_id); Ext.getCmp('fm_xj_name').setValue(selected[0].raw.xj_name); }else{ Ext.Msg.alert('请先选择','请先选择一条记录,再点击修改'); } } // // var deletewin = function() { // window.alert("无此功能"); // // } Ext.create('Ext.grid.Panel', { title: '巡检点管理', id: 'PatrolPointListPanel', store: myStore, selModel: sm, columns: [ { header: '默认标签id', dataIndex: 'label1',hidden:true, menuDisabled:true }, { header: 'ID', dataIndex: 'id', width:40, menuDisabled:true }, { header: '巡检点名称', dataIndex: 'xj_name', width:120,align:'center', menuDisabled:true }, { header: '巡检点标签', dataIndex: 'label', width:160,align:'center', menuDisabled:true }, { header: '巡检点对应设备', dataIndex: 'equipment_id', width:120,align:'center', menuDisabled:true }, { header: '巡检点地址', dataIndex: 'address',width:160, align:'center', menuDisabled:true }, // { header: '记录版本', dataIndex: 'I_VERSION', width:120, align:'center', menuDisabled:true }, // { // xtype : 'actioncolumn', // width:20, // sortable:false, // // // //这里 // align:'center', // menuDisabled:true, // items:[{ // icon: '../../res/img/common/forum.gif', // tooltip: '版本记录', // handler: function(grid, rowIndex, colIndex) { // var rec = grid.getStore().getAt(rowIndex); // window.location = 'version.jsp?theme='+theme+'&pointId='+rec.get('UQ_POINT_ID'); // } // }] // } ], columnLines: true, tbar: [ { xtype: 'button', iconCls:'filter_btn', text: '筛选', listeners: { click: filterwin } },'-', {xtype: 'tbfill'},'-', { xtype: 'button', iconCls:'append_btn', text: '新增', listeners: { click: appendwin } }, { xtype: 'button', iconCls:'modify_btn', text: '修改', listeners: { click: chk_sm } }, // { // xtype: 'button', // iconCls:'delete_btn', // text: '注销', // listeners: { // click: deletewin // } // } // ,{ // xtype: 'button', // iconCls:'delete_btn', // text: '导出', // listeners: { // click: export_sj // } // } ], height: maxHeight, width: '100%', bbar: new Ext.PagingToolbar({ store: myStore, id:'PatrolPointListPageToolbar', displayInfo: true, pageSize: countPerPage, prependButtons: true, displayMsg : '显示第 {0}条到 {1}条记录,总共 {2}条', emptyMsg : "没有记录", firstText: '第一页', prevText: '前一页', nextText: '后一页', lastText: '最后一页', refreshText: '刷新', // doRefresh:function(start){ // alert(start); // relushDataFunction(start); // 调用函数刷新数据 // this.cursor = start; // 更新页签 // } }), frame: true, border:false, iconCls: 'icon-grid', renderTo: Ext.getBody() }); myStore.reload(); maxHeight = document.documentElement.clientHeight; Ext.getCmp('PatrolPointListPanel').setHeight(maxHeight); });