123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860 |
- /**
- * Building.js
- * 建筑物界面
- * emial: hanzhengyi@chinausky.com
- * create: 2018-12-27
- */
- 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('Building',{
- extend: 'Ext.data.Model',
- fields: [
- { name:'I_ORDER_IDX', type:'int' },
- { name:'UQ_BUILDING_ID', type:'string' },
- { name:'V_BUILDING_NAME', type:'string' },
- { name:'UQ_POINT_ID', type:'string' },
- { name:'UQ_COMPANY_ID', type:'string' },
- { name:'V_AREA_ID', type:'string' },
- { name:'V_ADDR_0', type:'string' },
- { name:'V_ADDR_1', type:'string' },
- { name:'V_ADDR_2', type:'string' },
- { name:'I_MIN_FLOOR', type:'int' },
- { name:'I_MAX_FLOOR', type:'int' },
- { name:'F_FLOOR_SPACE', type:'string' },
- { name:'F_TOTAL_SPACE', type:'string' },
- { name:'F_BUILDING_HEIGHT', type:'string' },
- { name:'I_VERSION', type:'int' },
- { name:'D_STORETIME', type:'string' }
- ]
- });
- 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"/>'
- var countPerPage = 20;
- var maxHeight = 10000;
-
- var chkBoolean = function(flag) {
- if(flag)
- return chkIcon;
- return unchkIcon;
- }
- var clear_append_form = function (){
- Ext.getCmp('fa_V_BUILDING_NAME').setValue("");
- Ext.getCmp('fa_UQ_POINT_ID').setValue("");
- Ext.getCmp('fa_UQ_COMPANY_ID').setValue("");
- Ext.getCmp('fa_V_AREA_ID').setValue("");
- Ext.getCmp('fa_V_ADDR_0').setValue("");
- Ext.getCmp('fa_I_MIN_FLOOR').setValue("");
- //Ext.getCmp('fa_I_MAX_FLOOR').setValue("");
- Ext.getCmp('fa_I_MAX_FLOOR').setValue("");
- Ext.getCmp('fa_V_COMMENT').setValue("新增建筑物");
- Ext.getCmp('BuildingListPanel').getStore().reload();
- }
- var states2 = Ext.create('Ext.data.Store', {
- fields: ['status', 'name'],
- data : [
- {"status": "国家", "name":"国家"},
- {"status": "省、直辖市、自治区、特别行政区", "name":"省、直辖市、自治区、特别行政区"},
- {"status": "地区、市、自治州、盟", "name":"地区、市、自治州、盟"},
- {"status": "县、市辖区、县级市、旗", "name":"县、市辖区、县级市、旗"},
-
- ]
- });
- var myStore = Ext.create('Ext.data.Store', {
- model: 'Building',
- pageSize: countPerPage,
- proxy: {
- type: 'ajax',
- url: baseUrl+'iot/building/getList',
- reader: {
- type: 'json',
- root: 'RESULT',
- totalProperty: 'totalCount'
- }
- },
- remoteSort: true
- });
- // var combocitystoreA = new Ext.data.Store({
- // //设定读取的地址
- // proxy: new Ext.data.HttpProxy({ url: baseUrl+'iot/area/getProvince' }),
- // //设定读取的格式
- // reader: new Ext.data.JsonReader({
- // root: 'RESULT',
- // fields :[ 'V_AREA_ID', 'V_AREA_NAME' ]
- // })
- // });
- Ext.define('Province',{
- extend:'Ext.data.Model',
- fields: [
- {name:'V_AREA_NAME', type:'string'},
- {name:'V_AREA_ID',type:'string'}
- ]
- });
- Ext.define('City',{
- extend:'Ext.data.Model',
- fields: [
- {name:'V_AREA_NAME', type:'string'},
- {name:'V_AREA_ID',type:'string'}
- ]
- });
- Ext.define('Qu',{
- extend:'Ext.data.Model',
- fields: [
- {name:'V_AREA_NAME', type:'string'},
- {name:'V_AREA_ID',type:'string'}
- ]
- });
- var queryJson = new Object();
- var combocitystoreA = Ext.create('Ext.data.Store',{
- model: 'Province',
- proxy: {
- type: 'ajax',
- actionMethods: {
- create : 'POST',
- read : 'POST', // by default GET
- update : 'POST',
- destroy: 'POST'
- },
- url: baseUrl+'iot/area/getProvince',
- reader: {
- type: 'json',
- root: 'RESULT',
- totalProperty: 'totalCount'
- }
- // extraParams:{
- // queryJson:Ext.JSON.encode(queryJson)
- // }
- }
- });
- // combocitystoreA.reload();
- var CityStore = Ext.create('Ext.data.Store',{
- model: 'City',
- proxy: {
- type: 'ajax',
- actionMethods: {
- create : 'POST',
- read : 'POST', // by default GET
- update : 'POST',
- destroy: 'POST'
- },
- url: baseUrl+'iot/area/getCity',
- reader: {
- type: 'json',
- root: 'RESULT',
- totalProperty: 'totalCount'
- }
- }
- });
-
- var QuStore = Ext.create('Ext.data.Store',{
- model: 'Qu',
- proxy: {
- type: 'ajax',
- actionMethods: {
- create : 'POST',
- read : 'POST', // by default GET
- update : 'POST',
- destroy: 'POST'
- },
- url: baseUrl+'iot/area/getQu',
- reader: {
- type: 'json',
- root: 'RESULT',
- totalProperty: 'totalCount'
- }
- }
- });
-
- Ext.define('State', {
- extend: 'Ext.data.Model',
- fields: [
- {name:'V_AREA_NAME', type:'string'},
- {name:'V_AREA_ID',type:'string'}
- ]
- });
-
- //加载省数据源
- var store = Ext.create('Ext.data.Store', {
- model: 'State',
- proxy: {
- type: 'ajax',
- url: baseUrl+'iot/area/getProvince'
- },
- // autoLoad: true,
- remoteSort:true,
- reader: {
- type: 'json',
- root: 'RESULT',
- totalProperty: 'totalCount'
- }
- });
- //加载市数据源
- var store1 = Ext.create('Ext.data.Store', {
- model: 'State',
- proxy: {
- type: 'ajax',
- url: 'city.asp?act=shi&n='+new Date().getTime()+''
- },
- autoLoad: false,
- remoteSort:true
- });
- //加载区数据源
- var store2 = Ext.create('Ext.data.Store', {
- model: 'State',
- proxy: {
- type: 'ajax',
- url: 'city.asp?act=qu&n='+new Date().getTime()+''
- },
- autoLoad: false,
- remoteSort:true
- });
- var AppendForm = Ext.create('Ext.form.Panel', {
- id: 'BuildingAppendForm',
- labelWidth: 55,
- url: baseUrl+'iot/building/append',
- defaultType: 'textfield',
- bodyPadding: 15,
- items: [{
- fieldLabel:'建筑物名称',
- id: 'fa_V_BUILDING_NAME',
- name:'V_BUILDING_NAME',
- maxLength:20,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%'
- },{
- fieldLabel:'坐标点位ID',
- id: 'fa_UQ_POINT_ID',
- name: 'UQ_POINT_ID',
- maxLength: 7,
- maxLengthText:'长度不得超出{0}',
- anchor:'50%'
- },{
- fieldLabel:'物业管理公司ID',
- id: 'fa_UQ_COMPANY_ID',
- name:'UQ_COMPANY_ID',
- maxLength: 12,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%'
- },
- {
- xtype:"combo",
- name:'sheng',
- id : 'sheng',
- fieldLabel:'选择省',
- displayField:'V_AREA_NAME',
- valueField:'V_AREA_ID',
- store:combocitystoreA,
- triggerAction:'all',
- queryMode: 'remote',
- selectOnFocus:true,
- forceSelection: true,
- allowBlank:false,
- editable: false,
- emptyText:'请选择省',
- blankText : '请选择省',
- listeners:{
- select:function(combo, record,index){
- try{
- //userAdd = record.data.name;
- var parent=Ext.getCmp('shi');
- var parent1 = Ext.getCmp("fa_V_AREA_ID");
- parent.clearValue();
- parent1.clearValue();
- parent.store.load({params:{queryJson:this.value}});
- }
- catch(ex){
- Ext.MessageBox.alert("错误","数据加载失败。");
- }
- }
- }
- },{
- xtype:"combo",
- name:'shi',
- id : 'shi',
- fieldLabel:'选择市',
- displayField:'V_AREA_NAME',
- valueField:'V_AREA_ID',
- store:CityStore,
- triggerAction:'all',
- queryMode: 'local',
- selectOnFocus:true,
- forceSelection: true,
- allowBlank:false,
- editable: false,
- emptyText:'请选择市',
- blankText : '请选择市',
- listeners:{
- select:function(combo, record,index){
- try{
- //userAdd = record.data.name;
- var parent = Ext.getCmp("fa_V_AREA_ID");
- parent.clearValue();
- parent.store.load({params:{queryJson:this.value}});
- }
- catch(ex){
- Ext.MessageBox.alert("错误","数据加载失败。");
- }
- }
- }
- },
- {
- xtype:"combo",
- name:'V_AREA_ID',
- id : 'fa_V_AREA_ID',
- fieldLabel:'选择区',
- displayField:'V_AREA_NAME',
- valueField:'V_AREA_ID',
- store:QuStore,
- triggerAction:'all',
- queryMode: 'local',
- selectOnFocus:true,
- forceSelection: true,
- allowBlank:false,
- editable: false,
- emptyText:'请选择区',
- blankText : '请选择区',
- },
- {
- fieldLabel:'详细地址1',
- id: 'fa_V_ADDR_0',
- name:'V_ADDR_0',
- maxLength: 30,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%'
- },{
- fieldLabel:'最低楼层',
- id: 'fa_I_MIN_FLOOR',
- name:'I_MIN_FLOOR',
- maxLength: 30,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%'
- },{
- fieldLabel:'最高楼层',
- id: 'fa_I_MAX_FLOOR',
- name:'I_MAX_FLOOR',
- maxLength: 30,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%'
- },{
- fieldLabel:'新增建筑物说明',
- id: 'fa_V_COMMENT',
- name:'V_COMMENT',
- xtype: 'textareafield',
- maxLength: 250,
- maxLengthText:'长度不得超出{0}',
- anchor:'100%',
- value:'新增建筑物'
- },{
- 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_BUILDING_NAME = Ext.getCmp('fa_V_BUILDING_NAME').getValue();
- query.UQ_POINT_ID = Ext.getCmp('fa_UQ_POINT_ID').getValue();
- query.UQ_COMPANY_ID = Ext.getCmp('fa_UQ_COMPANY_ID').getValue();
- query.V_AREA_ID = Ext.getCmp('fa_V_AREA_ID').getValue();
- query.V_ADDR_0 = Ext.getCmp('fa_V_ADDR_0').getValue();
- query.I_MIN_FLOOR = Ext.getCmp('fa_I_MIN_FLOOR').getValue();
- query.I_MAX_FLOOR = Ext.getCmp('fa_I_MAX_FLOOR').getValue();
- // if(Ext.getCmp('fa_I_MAX_FLOOR').getValue()=='国家'){
- // query.I_MAX_FLOOR=0;
- // }
- // if(Ext.getCmp('fa_I_MAX_FLOOR').getValue()=='省、直辖市、自治区、特别行政区'){
- // query.I_MAX_FLOOR=1;
- // }
- // if(Ext.getCmp('fa_I_MAX_FLOOR').getValue()=='地区、市、自治州、盟'){
- // query.I_MAX_FLOOR=2;
- // }
- // if(Ext.getCmp('fa_I_MAX_FLOOR').getValue()=='县、市辖区、县级市、旗'){
- // query.I_MAX_FLOOR=3;
- // }
- query.V_COMMENT = Ext.getCmp('fa_V_COMMENT').getValue();
- query.UQ_ADMIN_ID = '00000000-000000-000000-000000';
- 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: 400,
- width: 400,
- layout: 'fit',
- items: AppendForm,
- closeAction: 'hide'
- }).show();
- // combocitystoreA.reload();
- }
-
- var clear_filter_form = function(){
- Ext.getCmp('ff_V_BUILDING_NAME').setValue("");
- Ext.getCmp('ff_UQ_COMPANY_ID').setValue("");
- Ext.getCmp('ff_V_AREA_ID').setValue("");
- Ext.getCmp('ff_V_ADDR_0').setValue("");
- // Ext.getCmp('ff_I_MAX_FLOOR').setValue(0);
- }
-
-
- var FilterForm = Ext.create('Ext.form.Panel', {
- id: 'BuildingFilterForm',
- labelWidth: 55,
- defaultType: 'textfield',
- bodyPadding: 15,
- items: [{
- fieldLabel:'建筑物名称',
- id: 'ff_V_BUILDING_NAME',
- name:'V_BUILDING_NAME',
- maxLength:20,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%',
- value:document.getElementById('myAct').value
- },{
- fieldLabel:'物业管理公司ID',
- id: 'ff_UQ_COMPANY_ID',
- name: 'UQ_COMPANY_ID',
- maxLength: 7,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%',
- value:document.getElementById('loginName').value
- },{
- fieldLabel:'行政区域ID',
- id: 'ff_V_AREA_ID',
- name: 'V_AREA_ID',
- maxLength: 30,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%',
- value:document.getElementById('zipCode').value
- },{
- fieldLabel:'详细地址',
- id: 'ff_V_ADDR_0',
- name: 'V_ADDR_0',
- maxLength: 30,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%',
- value:document.getElementById('mergerName').value
- },{
- 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_V_BUILDING_NAME').getValue().length>0)
- query.V_BUILDING_NAME = Ext.getCmp('ff_V_BUILDING_NAME').getValue();
- if(Ext.getCmp('ff_UQ_COMPANY_ID').getValue().length>0)
- query.UQ_COMPANY_ID = Ext.getCmp('ff_UQ_COMPANY_ID').getValue();
- if(Ext.getCmp('ff_V_AREA_ID').getValue().length>0)
- query.V_AREA_ID = Ext.getCmp('ff_V_AREA_ID').getValue();
- if(Ext.getCmp('ff_V_ADDR_0').getValue().length>0)
- query.V_ADDR_0 = Ext.getCmp('ff_V_ADDR_0').getValue();
- // if(Ext.getCmp('ff_I_MAX_FLOOR').getValue().length>0)
- // if(Ext.getCmp('ff_I_MAX_FLOOR').getValue()=='国家'){
- // query.I_MAX_FLOOR=0;
- // }
- // if(Ext.getCmp('ff_I_MAX_FLOOR').getValue()=='省、直辖市、自治区、特别行政区'){
- // query.I_MAX_FLOOR=1;
- // }
- // if(Ext.getCmp('ff_I_MAX_FLOOR').getValue()=='地区、市、自治州、盟'){
- // query.I_MAX_FLOOR=2;
- // }
- // if(Ext.getCmp('ff_I_MAX_FLOOR').getValue()=='县、市辖区、县级市、旗'){
- // query.I_MAX_FLOOR=3;
- // }
- var jsonstr = Ext.JSON.encode(query);
- myStore.getProxy().extraParams = {
- queryJson : jsonstr
- };
- Ext.getCmp('BuildingListPageToolbar').moveFirst();
- Ext.getCmp('myAct').setValue(query.V_BUILDING_NAME);
- Ext.getCmp('loginName').setValue(query.UQ_COMPANY_ID);
- Ext.getCmp('zipCode').setValue(query.V_AREA_ID);
- Ext.getCmp('mergerName').setValue(query.V_ADDR_0);
- // Ext.getCmp('level').setValue(query.I_MAX_FLOOR);
- 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',{
- id: 'BuildingFilterWin',
- title: '建筑物筛选',
- height: 300,
- width: 400,
- layout: 'fit',
- items: FilterForm,
- closeAction: 'hide'
- }).show();
- }
-
- var clear_modify_form = function (){
- Ext.getCmp('fm_V_BUILDING_NAME').setValue("");
- Ext.getCmp('fm_UQ_COMPANY_ID').setValue("");
- Ext.getCmp('fm_V_AREA_ID').setValue("");
- Ext.getCmp('fm_V_ADDR_0').setValue("");
- Ext.getCmp('fm_I_MIN_FLOOR').setValue("");
- Ext.getCmp('fm_I_MAX_FLOOR').setValue(0);
- Ext.getCmp('fm_V_COMMENT').setValue("修改建筑物");
- Ext.getCmp('BuildingListPanel').getStore().reload();
- }
- var ModifyForm = Ext.create('Ext.form.Panel', {
- id: 'BuildingEditForm',
- labelWidth: 55,
- url: baseUrl+'iot/building/update',
- defaultType: 'textfield',
- bodyPadding: 15,
- items: [{
- fieldLabel:'建筑物名称',
- id: 'fm_V_BUILDING_NAME',
- name:'V_BUILDING_NAME',
- maxLength:20,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%'
- },{
- fieldLabel:'物业管理公司ID',
- id: 'fm_UQ_COMPANY_ID',
- name:'UQ_COMPANY_ID',
- maxLength: 12,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%'
- },{
- fieldLabel:'行政区域ID',
- id: 'fm_V_AREA_ID',
- name:'V_AREA_ID',
- maxLength: 30,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%'
- },{
- fieldLabel:'详细地址',
- id: 'fm_V_ADDR_0',
- name:'V_ADDR_0',
- maxLength: 30,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%'
- },{
- fieldLabel:'最低楼层',
- id: 'fm_I_MIN_FLOOR',
- name:'I_MIN_FLOOR',
- maxLength: 30,
- maxLengthText:'长度不得超出{0}',
- anchor:'75%'
- },{
- fieldLabel:'最高楼层',
- id: 'fm_I_MAX_FLOOR',
- name: 'I_MAX_FLOOR',
- maxLength: 7,
- maxLengthText:'长度不得超出{0}',
- anchor:'50%'
- },{
- fieldLabel:'修改建筑物说明',
- id: 'fm_V_COMMENT',
- name:'V_COMMENT',
- xtype: 'textareafield',
- maxLength: 250,
- maxLengthText:'长度不得超出{0}',
- anchor:'100%',
- value:'修改建筑物'
- },{
- id: 'fm_UQ_BUILDING_ID',
- name:'UQ_BUILDING_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.UQ_BUILDING_ID = Ext.getCmp('fm_UQ_BUILDING_ID').getValue();
- query.V_BUILDING_NAME = Ext.getCmp('fm_V_BUILDING_NAME').getValue();
- query.I_MAX_FLOOR = Ext.getCmp('fm_I_MAX_FLOOR').getValue();
- query.UQ_COMPANY_ID = Ext.getCmp('fm_UQ_COMPANY_ID').getValue();
- query.V_AREA_ID = Ext.getCmp('fm_V_AREA_ID').getValue();
- query.V_ADDR_0 = Ext.getCmp('fm_V_ADDR_0').getValue();
- query.I_MIN_FLOOR = Ext.getCmp('fm_I_MIN_FLOOR').getValue();
- // if(Ext.getCmp('fm_I_MAX_FLOOR').getValue()=='国家'){
- // query.I_MAX_FLOOR=0;
- // }
- // if(Ext.getCmp('fm_I_MAX_FLOOR').getValue()=='省、直辖市、自治区、特别行政区'){
- // query.I_MAX_FLOOR=1;
- // }
- // if(Ext.getCmp('fm_I_MAX_FLOOR').getValue()=='地区、市、自治州、盟'){
- // query.I_MAX_FLOOR=2;
- // }
- // if(Ext.getCmp('fm_I_MAX_FLOOR').getValue()=='县、市辖区、县级市、旗'){
- // query.I_MAX_FLOOR=3;
- // }
- query.V_COMMENT = Ext.getCmp('fm_V_COMMENT').getValue();
- query.UQ_ADMIN_ID = '00000000-000000-000000-000000';
- 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: 400,
- width: 400,
- layout: 'fit',
- items: ModifyForm,
- closeAction: 'hide'
- }).show();
- }
-
- // var del_sm = function() {
- // if(sm.getCount()==1){
- // var selected = sm.getSelection( );
- // var query = new Object();
- // var list = new Array();
- // var o = new Object();
- // o.UQ_BUILDING_ID = selected[0].raw.UQ_BUILDING_ID;
- // list.push(o);
- // query.Building_LIST = list;
- // var jsonstr= Ext.JSON.encode(query);
- // Ext.MessageBox.confirm('注销建筑物','是否注销 '+selected[0].raw.V_BUILDING_NAME+' 建筑物?',function(btn){
- // if(btn=='yes'){
- //
- // Ext.Ajax.request( {
- // timeout : 3000000,
- // url: baseUrl+'iot/building/delete',
- // params : 'queryJson='+ jsonstr,
- // success: function(resp,opts){
- // myStore.reload();
- // }
- // });
- //
- // }
- // },this);
- // }else{
- // if(sm.getCount()>1){
- // var query = new Object();
- // var list = new Array();
- // for(var i=0;i<sm.getCount();i++){
- // var selected = sm.getSelection( );
- // var o = new Object();
- // o.UQ_BUILDING_ID = selected[i].raw.UQ_BUILDING_ID;
- // list.push(o);
- // }
- // query.Building_LIST = list;
- //
- // var jsonstr= Ext.JSON.encode(query);
- // Ext.MessageBox.confirm('注销建筑物','是否注销选中的'+sm.getCount()+' 个建筑物?',function(btn){
- // if(btn=='yes'){
- //
- // Ext.Ajax.request( {
- // timeout : 3000000,
- // url: baseUrl+'iot/building/delete',
- // params : 'queryJson='+ jsonstr,
- // success: function(resp,opts){
- // myStore.reload();
- // }
- // });
- //
- // }
- // },this);
- // }else{
- // Ext.Msg.alert('请先选择','至少选择一条记录,再点击注销');
- // }
- // }
- // }
-
- var chk_sm = function() {
- if(sm.getCount()==1){
- modifywin();
- var selected = sm.getSelection( );
- Ext.getCmp('fm_UQ_BUILDING_ID').setValue(selected[0].raw.UQ_BUILDING_ID);
- Ext.getCmp('fm_V_BUILDING_NAME').setValue(selected[0].raw.V_BUILDING_NAME);
- // Ext.getCmp('fm_UQ_POINT_ID').setValue(selected[0].raw.UQ_POINT_ID);
- Ext.getCmp('fm_UQ_COMPANY_ID').setValue(selected[0].raw.UQ_COMPANY_ID);
- Ext.getCmp('fm_V_AREA_ID').setValue(selected[0].raw.V_AREA_ID);
- Ext.getCmp('fm_V_ADDR_0').setValue(selected[0].raw.V_ADDR_0);
- Ext.getCmp('fm_I_MIN_FLOOR').setValue(selected[0].raw.I_MIN_FLOOR);
- Ext.getCmp('fm_I_MAX_FLOOR').setValue(selected[0].raw.I_MAX_FLOOR);
- }else{
- Ext.Msg.alert('请先选择','请先选择一条记录,再点击修改');
- }
- }
- Ext.create('Ext.grid.Panel', {
- title: '建筑物信息',
- id: 'BuildingListPanel',
- store: myStore,
- selModel: sm,
- columns: [
- { header: 'ID', dataIndex: 'UQ_BUILDING_ID',hidden:true, menuDisabled:true },
- { header: '序号', dataIndex: 'I_ORDER_IDX', width:40, menuDisabled:true },
- { header: '建筑物名称', dataIndex: 'V_BUILDING_NAME', width:100,align:'center', menuDisabled:true },
- { header: '物业管理公司ID', dataIndex: 'UQ_COMPANY_ID', width:100, align:'center', menuDisabled:true },
- { header: '行政区域ID', dataIndex: 'V_AREA_ID', width:100,align:'center', menuDisabled:true },
- { header: '最低楼层', dataIndex: 'I_MIN_FLOOR', width:100,align:'center', menuDisabled:true },
- { header: '最高楼层', dataIndex: 'I_MAX_FLOOR', width:100, align:'center', menuDisabled:true },
- { header: '详细地址', dataIndex: 'V_ADDR_0', width:100,align:'center', menuDisabled:true },
- { header: '保存时间', dataIndex: 'D_STORETIME',width:150, align:'center', menuDisabled:true },
- { header: '记录版本', dataIndex: 'I_VERSION', width:80, 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+'&buildingId='+rec.get('UQ_BUILDING_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
- }
- }
- ],
- height: maxHeight,
- width: '100%',
- bbar: new Ext.PagingToolbar({
- store: myStore,
- id:'BuildingListPageToolbar',
- 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('BuildingListPanel').setHeight(maxHeight);
-
- });
|