123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610 |
- /**
- * route.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 company_code;
- var myStore=null;
- var V_LOGINNAME='',V_PASSWORD='';
- var sm = Ext.create('Ext.selection.CheckboxModel');
- Ext.define('Route',{
- extend: 'Ext.data.Model',
- fields: [
- {name:'id', type:'string'},
- {name:'route', type:'string'},
- {name:'route_name', type:'string'},
- // {name:'xjzq', type:'string'},
- {name:'company_code1', type:'string'},
- ]
- });
- function exportbtn_click(){
- baseUrl = document.getElementById('basePath').value;
- V_LOGINNAME = $("#V_LOGINNAME").val();
- V_PASSWORD = $("#V_PASSWORD").val();
- route_name = document.getElementById('route_name').value;
- route = document.getElementById('route').value;
- var fields = '';
- var array = ['id','route','route_name'];
- var name = ['编号','路线','路线名称'];
- for(var i=0;i<3;i++){
- if(i>0)
- fields += ',';
- fields += '{id:"'+array[i]+'",title:"'+name[i]+'",shown:"'+true+'"}';
- }
- var query = new Object();
- // query.V_LOGINNAME = V_LOGINNAME;
- // query.V_PASSWORD = V_PASSWORD;
- query.route_name = route_name;
- query.route = route;
- query.EXPORT_FILE = '巡检路线列表';
- query.fields = '['+fields+']';
- $.ajax({
- type:'POST',
- url: baseUrl+"iot/excel/view/routeExcel",
- data: {
- queryJson : Ext.JSON.encode(query)
- },
- success: function(result){
-
- var json = eval('(' + result + ')');
- if(json.action=='dormExport'){
- ConfirmStore = json.RESULT;
-
- var elemIF = document.createElement("iframe");
- elemIF.src = baseUrl+json.filename;
- elemIF.style.display = "none";
- document.body.appendChild(elemIF);
- }
-
- }
- });
-
- }
- Ext.onReady(function(){
- var baseUrl = document.getElementById('basePath').value;
- var theme = document.getElementById('theme').value;
- var chkIcon = '<img src="'+baseUrl+'res/img/common/check.gif"/>'
- var unchkIcon = '<img src="'+baseUrl+'res/img/common/uncheck.gif"/>'
- // company_code = document.getElementById('company_code').value;
- $("#V_LOGINNAME").val(sessionStorage.getItem('V_LOGINNAME'));
- $("#V_PASSWORD").val(sessionStorage.getItem('V_PASSWORD'));
- V_LOGINNAME = $("#V_LOGINNAME").val();
- V_PASSWORD = $("#V_PASSWORD").val();
- var countPerPage = 20;
- var maxHeight = 10000;
-
- var chkBoolean = function(flag) {
- if(flag)
- return chkIcon;
- return unchkIcon;
- }
- var queryJson = new Object();
- // queryJson.V_LOGINNAME = V_LOGINNAME;
- // queryJson.V_PASSWORD = V_PASSWORD;
- // queryJson.COMMSTATUS = 'NO';
- if((company_code!=null)&&(company_code!='null')&&(company_code.length>0))
- queryJson.company_code = company_code;
-
- var clear_append_form = function (){
- Ext.getCmp('fa_route').setValue("");
- Ext.getCmp('fa_route_name').setValue("");
- // Ext.getCmp('fa_xjzq').setValue("");
- // Ext.getCmp('fa_company_code').setValue("");
- Ext.getCmp('RouteListPanel').getStore().reload();
- }
-
-
- myStore = Ext.create('Ext.data.Store', {
- model: 'Route',
- pageSize: countPerPage,
- proxy: {
- type: 'ajax',
- actionMethods: {
- create : 'POST',
- read : 'POST', // by default GET
- update : 'POST',
- destroy: 'POST'
- },
- url: baseUrl+'iot/route/getList',
- reader: {
- type: 'json',
- root: 'RESULT',
- totalProperty: 'totalCount'
- },
- extraParams:{
- queryJson:Ext.JSON.encode(queryJson)
- }
- },
- // sorters:[{
- // property:'data_time',
- // direction:'DESC'
- // }],
- remoteSort: true
- });
- Ext.define('PatrolPoint',{
- extend: 'Ext.data.Model',
- fields: [
- {name:'id', type:'string'},
- {name:'xj_name', type:'string'},
- ]
- });
-
- myStore1 = Ext.create('Ext.data.Store', {
- model: 'PatrolPoint',
- pageSize: countPerPage,
- proxy: {
- type: 'ajax',
- actionMethods: {
- create : 'POST',
- read : 'POST', // by default GET
- update : 'POST',
- destroy: 'POST'
- },
- url: baseUrl+'iot/patrolpoint/getList',
- reader: {
- type: 'json',
- root: 'RESULT',
- totalProperty: 'totalCount'
- },
- extraParams:{
- queryJson:Ext.JSON.encode(queryJson)
- }
- },
- // sorters:[{
- // property:'data_time',
- // direction:'DESC'
- // }],
- remoteSort: true
- });
-
- // var myStore = Ext.create('Ext.data.Store', {
- // model: 'Route',
- // pageSize: countPerPage,
- // proxy: {
- // type: 'ajax',
- // url: baseUrl+'iot/route/getList',
- // reader: {
- // type: 'json',
- // root: 'RESULT',
- // totalProperty: 'totalCount'
- // }
- // },
- // remoteSort: true
- // });
-
-
- var AppendForm = Ext.create('Ext.form.Panel', {
- id: 'RouteAppendForm',
- labelWidth: 55,
- url: baseUrl+'iot/route/append',
- defaultType: 'textfield',
- bodyPadding: 15,
- items: [{
- fieldLabel:'路线名称',
- id: 'fa_route_name',
- name:'route_name',
- maxLength:20,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%'
- }
- // ,{
- // fieldLabel:'路线',
- // id: 'fa_route',
- // name: 'route',
- // maxLength: 250,
- // maxLengthText:'长度不得超出{0}',
- // anchor:'95%'
- // }
- ,{
- fieldLabel:'路线',
- id:'fa_route',
- name:'route',
- xtype:'combo',
- multiSelect: true,
- store:myStore1,
- displayField : 'xj_name',
- valueField : 'id',
- // value : document.getElementById('id1').value,
- editable : false
- }
- // ,{
- // id: 'fm_company_code',
- // name:'company_code',
- // hidden:true
- // }
- ,{
- 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.V_LOGINNAME = V_LOGINNAME;
- query.route_name = Ext.getCmp('fa_route_name').getValue();
- // var a,b,c;
- a = Ext.getCmp('fa_route').getValue();
- c = a.join(',');
- // query.route = Ext.getCmp('fa_route').getValue();
- query.route = c;
- // query.xjzq = Ext.getCmp('fa_xjzq').getValue();
- // query.company_code = Ext.getCmp('fa_company_code').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_route_name').setValue("");
- Ext.getCmp('ff_route').setValue("");
- // Ext.getCmp('ff_xjzq').setValue("");
- Ext.getCmp('ff_company_code').setValue("");
- }
-
- var FilterWin = Ext.create('Ext.form.Panel', {
- id: 'RouteFilterForm',
- labelWidth: 55,
- defaultType: 'textfield',
- bodyPadding: 15,
- items: [{
- fieldLabel:'路线名称',
- id: 'ff_route_name',
- name:'route_name',
- maxLength:20,
- maxLengthText:'长度不得超出{0}',
- value : document.getElementById('route_name').value,
- anchor:'75%'
- },{
- fieldLabel:'路线',
- id:'ff_route',
- name:'route',
- maxLength: 250,
- maxLengthText:'长度不得超出{0}',
- value : document.getElementById('route_name').value,
- editable : false
- },{
- 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('company_code').getValue().length>0){
- // query.company_code = company_code;
- // company_code = query.company_code;
- // }else{
- // company_code = null;
- // }
- // query.V_LOGINNAME = V_LOGINNAME;
- // query.V_PASSWORD = V_PASSWORD;
- if(Ext.getCmp('ff_route_name').getValue().length>0)
- query.route_name = Ext.getCmp('ff_route_name').getValue();
- $("#route_name").val(query.route_name);
- if(Ext.getCmp('ff_route').getValue().length>0)
- query.route = Ext.getCmp('ff_route').getValue();
- $("#route").val(query.route);
- // if(Ext.getCmp('ff_xjzq').getValue().length>0)
- // query.xjzq = Ext.getCmp('ff_xjzq').getValue();
-
- var jsonstr = Ext.JSON.encode(query);
- myStore.getProxy().extraParams = {
- queryJson : jsonstr
- };
- Ext.getCmp('RouteListPageToolbar').moveFirst();
- Ext.getCmp('route_name').setValue(query.route_name);
- Ext.getCmp('route').setValue(query.route);
- // Ext.getCmp('xjzq').setValue(query.xjzq);
- // Ext.getCmp('company_code').setValue(query.company_code);
- // 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 clear_modify_form = function (){
- Ext.getCmp('fm_id').setValue("");
- Ext.getCmp('fm_route_name').setValue("");
- Ext.getCmp('fm_route').setValue("");
- Ext.getCmp('fm_company_code').setValue("");
- // Ext.getCmp('fm_xjzq').setValue("");
- Ext.getCmp('RouteListPanel').getStore().reload();
- }
-
-
-
- var ModifyForm = Ext.create('Ext.form.Panel', {
- id: 'RouteEditForm',
- labelWidth: 55,
- url: baseUrl+'iot/route/update',
- defaultType: 'textfield',
- bodyPadding: 15,
- items: [{
- fieldLabel:'路线名称',
- id: 'fm_route_name',
- name:'route_name',
- maxLength:20,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%'
- },{
- fieldLabel:'路线',
- id: 'fm_route',
- name: 'route',
- maxLength: 250,
- maxLengthText:'长度不得超出{0}',
- anchor:'95%'
- },
- {
- id: 'fm_id',
- name:'id',
- hidden:true
- },
- {
- id: 'fm_company_code',
- name:'company_code1',
- 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.route_name = Ext.getCmp('fm_route_name').getValue();
- query.route = Ext.getCmp('fm_route').getValue();
- query.company_code = Ext.getCmp('fm_company_code').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_route_name').setValue(selected[0].raw.route_name);
- Ext.getCmp('fm_route').setValue(selected[0].raw.route);
- Ext.getCmp('fm_company_code').setValue(selected[0].raw.company_code1);
- // Ext.getCmp('fm_xjzq').setValue(selected[0].raw.xjzq);
- }else{
- Ext.Msg.alert('请先选择','请先选择一条记录,再点击修改');
- }
- }
-
- //
- // var deletewin = function() {
- // window.alert("无此功能");
- //
- // }
-
- Ext.create('Ext.grid.Panel', {
- title: '路线管理',
- id: 'RouteListPanel',
- store: myStore,
- selModel: sm,
- columns: [
- //{ header: 'ID', dataIndex: 'UQ_POINT_ID',hidden:true, menuDisabled:true },
- { header: '序号', dataIndex: 'id', width:37, menuDisabled:true },
- { header: '路线名称', dataIndex: 'route_name', width:700,align:'center', menuDisabled:true },
- { header: '路线', dataIndex: 'route', width:700,align:'center', menuDisabled:true },
- // { header: '巡检周期', dataIndex: 'xjzq', width:120,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:'export_btn',
- text: '导出',
- listeners: {
- click: exportbtn_click
- }
- }
-
- ],
- height: maxHeight,
- width: '100%',
- bbar: new Ext.PagingToolbar({
- store: myStore,
- id:'RouteListPageToolbar',
- 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('RouteListPanel').setHeight(maxHeight);
-
- });
|