<template> <div class="app-view-layout ibizorder-test-custom-layout-panel-grid-exp-view" style="height: '100%'; width: '100%';'display': 'flex'; 'flex-direction': 'column';"> <app-standard-container name="page_container" :layoutModelDetails="layoutModelDetails"> <template #container2> <app-standard-container name="container2" :layoutModelDetails="layoutModelDetails"> <template #view_pagecaption> <app-preset-caption name="view_pagecaption" :layoutModelDetails="layoutModelDetails">(测试布局面板)</app-preset-caption> </template> </app-standard-container> </template> <template #container_scroll1> <app-scroll-container name="container_scroll1" :layoutModelDetails="layoutModelDetails"> <template #container_scroll_main1> <app-scroll-container name="container_scroll_main1" :layoutModelDetails="layoutModelDetails"> <template #nav_pos1> <app-nav-pos name="nav_pos1" :layoutModelDetails="layoutModelDetails" :navData="layoutModelDetails['nav_pos1'].navData"></app-nav-pos> </template> </app-scroll-container> </template> <template #container_scroll_left1> <app-scroll-container name="container_scroll_left1" :layoutModelDetails="layoutModelDetails"> <template #gridexpbar> <app-ctrl-pos name="gridexpbar" :layoutModelDetails="layoutModelDetails"> <view_gridexpbar :viewState="viewState" :viewparams="viewparams" :context="context" :showBusyIndicator="true" :viewUID="viewUID" :newdata="newdata" :opendata="opendata" name="gridexpbar" ref='gridexpbar' @selectionchange="gridexpbar_selectionchange($event)" @load="gridexpbar_load($event)" @activated="gridexpbar_activated($event)" @closeview="closeView($event)"> </view_gridexpbar> </app-ctrl-pos> </template> </app-scroll-container> </template> </app-scroll-container> </template> </app-standard-container> </div> </template> <script lang='tsx'> import { Vue, Component, Prop, Provide, Emit, Watch,Inject } from 'vue-property-decorator'; import { UIActionTool,Util } from '@/utils'; import NavDataService from '@/service/app/navdata-service'; import { Subject,Subscription } from 'rxjs'; import IBIZOrderService from '@/service/ibizorder/ibizorder-service'; import IBIZOrderAuthService from '@/authservice/ibizorder/ibizorder-auth-service'; import GridExpViewEngine from '@engine/view/grid-exp-view-engine'; import IBIZOrderUIService from '@/uiservice/ibizorder/ibizorder-ui-service'; import { PanelContainerModel, PanelRawitemModel, PanelFieldModel, PanelControlModel, PanelButtonModel, PanelUserControlModel, PanelTabPanelModel, PanelTabPageModel, PanelCtrlPosModel} from '@/model/panel-detail'; @Component({ components: { }, }) export default class IBIZOrderTestCustomLayoutPanelGridExpViewBase extends Vue { /** * 实体服务对象 * * @type {IBIZOrderService} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public appEntityService: IBIZOrderService = new IBIZOrderService; /** * 实体UI服务对象 * * @type IBIZOrderUIService * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public appUIService: IBIZOrderUIService = new IBIZOrderUIService(); /** * 数据变化 * * @param {*} val * @returns {*} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ @Emit() public viewDatasChange(val: any):any { return val; } /** * 传入视图上下文 * * @type {string} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ @Prop() public viewdata!: string; /** * 传入视图参数 * * @type {string} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ @Prop() public viewparam!: string; /** * 视图默认使用 * * @type {boolean} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ @Prop({ default: true }) public viewDefaultUsage!: boolean; /** * 视图默认使用 * * @type {string} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ @Inject({from:'navModel',default: 'tab'}) public navModel!:string; /** * 视图标识 * * @type {string} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public viewtag: string = '38b0b453d423e0772822db6be4f02505'; /** * 自定义视图导航上下文集合 * * @type {*} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public customViewNavContexts:any ={ }; /** * 自定义视图导航参数集合 * * @type {*} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public customViewParams:any ={ }; /** * 视图模型数据 * * @type {*} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public model: any = { srfCaption: 'entities.ibizorder.views.testcustomlayoutpanelgridexpview.caption', srfTitle: 'entities.ibizorder.views.testcustomlayoutpanelgridexpview.title', srfSubTitle: 'entities.ibizorder.views.testcustomlayoutpanelgridexpview.subtitle', dataInfo: '' } /** * 视图参数变化 * * @param {*} newVal * @param {*} oldVal * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ @Watch('viewparam',{immediate: true, deep: true}) onParamData(newVal: any, oldVal: any) { if(newVal){ this.viewparams = {}; if(typeof newVal == 'string') { Object.assign(this.viewparams, JSON.parse(this.viewparam)); }else{ this.viewparams = Util.deepCopy(this.viewparam); } } } /** * 处理应用上下文变化 * * @param {*} newVal * @param {*} oldVal * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ @Watch('viewdata') onViewData(newVal: any, oldVal: any) { const _this: any = this; if (!Object.is(newVal, oldVal) && _this.engine) { this.$nextTick(()=>{ _this.parseViewParam(); _this.engine.load(); }); } else if(!Object.is(newVal, oldVal) && _this.refresh && _this.refresh instanceof Function) { _this.refresh(); } } /** * 容器模型 * * @type {*} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public containerModel: any = { view_gridexpbar: { name: 'gridexpbar', type: 'GRIDEXPBAR' }, view_searchbar: { name: 'searchbar', type: 'SEARCHBAR' }, wflinks: [], }; /** * 计数器刷新 * * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public counterRefresh(){ const _this:any =this; if(_this.counterServiceArray && _this.counterServiceArray.length >0){ _this.counterServiceArray.forEach((item:any) =>{ if(item.refreshData && item.refreshData instanceof Function){ item.refreshData(); } }) } } /** * 视图状态订阅对象 * * @public * @type {Subject<{action: string, data: any}>} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public viewState: Subject<ViewState> = new Subject(); /** * 视图布局数据 * * @public * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public layoutData:any = { view_pagecaption:null, container2:null, nav_pos1:null, container_scroll_main1:null, gridexpbar:null, container_scroll_left1:null, container_scroll1:null, page_container:null }; /** * 视图布局面板模型对象 * * @public * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public layoutModelDetails:any = { view_pagecaption:new PanelFieldModel({ name: 'view_pagecaption', caption: '页面标题', isShowCaption: false, sysCss: '', itemType: 'FIELD', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'', layoutHeight:0, heightMode:'FULL', layoutWidth:0, widthMode:'FULL', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container2', panel: this , fieldState: '0', }), container2:new PanelContainerModel({ name: 'container2', caption: '容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'TABLE_24COL', layoutPos:'', layoutHeight:0, heightMode:'FULL', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'page_container', panel: this , details:['view_pagecaption'] , dataRegionType: 'INHERIT' }), nav_pos1:new PanelRawitemModel({ name: 'nav_pos1', caption: '导航区占位', isShowCaption: true, sysCss: '', itemType: 'RAWITEM', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'CENTER', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_scroll_main1', panel: this , viewType: 'DEGRIDEXPVIEW', predefinedType: 'NAV_POS', contentType: '', contentStyle: '', rawContent: '', htmlContent: '', }), container_scroll_main1:new PanelContainerModel({ name: 'container_scroll_main1', caption: '面板容器', titleBarCloseMode: 0, isShowCaption: true, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'BORDER', layoutPos:'CENTER', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_scroll1', panel: this , details:['nav_pos1'] , dataRegionType: 'INHERIT' }), gridexpbar:new PanelCtrlPosModel({ name: 'gridexpbar', caption: '表格导航栏', isShowCaption: true, sysCss: '', itemType: 'CTRLPOS', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'', layoutPos:'CENTER', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_scroll_left1', panel: this }), container_scroll_left1:new PanelContainerModel({ name: 'container_scroll_left1', caption: '面板容器', titleBarCloseMode: 0, isShowCaption: true, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'BORDER', layoutPos:'WEST', layoutHeight:0, heightMode:'', layoutWidth:200, widthMode:'PX', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:0, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'container_scroll1', panel: this , details:['gridexpbar'] , dataRegionType: 'INHERIT' }), container_scroll1:new PanelContainerModel({ name: 'container_scroll1', caption: '滚动条容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'BORDER', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'',vAlign:''}, parentName: 'page_container', panel: this , details:['container_scroll_main1','container_scroll_left1'] , dataRegionType: 'INHERIT' }), page_container:new PanelContainerModel({ name: 'page_container', caption: '容器', titleBarCloseMode: 0, isShowCaption: false, sysCss: '', itemType: 'CONTAINER', itemStyle: 'DEFAULT', visible: true, disabled: false, layout:'FLEX', layoutPos:'', layoutHeight:0, heightMode:'', layoutWidth:0, widthMode:'', spacingBottom:'', spacingLeft:'', spacingRight:'', spacingTop:'', hAlignSelf:'', vAlignSelf:'', flexGrow:-1, flexParams:{align:'',dir:'column',vAlign:''}, panel: this , details:['container2','container_scroll1'] , dataRegionType: 'INHERIT' }) }; /** * 处理值改变 * * @public * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public handleValueChange($event: { name: string, value: any }) { if (!$event || !$event.name || Object.is($event.name, '') || !this.layoutData.hasOwnProperty($event.name)) { return; } this.layoutData[$event.name] = $event.value; } /** * 处理按钮点击 * * @public * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public handleButtonClick(name: string, $event?: any) { } /** * 视图引擎 * * @public * @type {Engine} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public engine: GridExpViewEngine = new GridExpViewEngine(); /** * 引擎初始化 * * @public * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public engineInit(): void { this.engine.init({ view: this, gridexpbar: this.$refs.gridexpbar, keyPSDEField: 'ibizorder', majorPSDEField: 'ibizordername', isLoadDefault: true, }); } /** * 应用导航服务 * * @type {*} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public navDataService = NavDataService.getInstance(); /** * 导航服务事件 * * @public * @type {(Subscription | undefined)} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public serviceStateEvent: Subscription | undefined; /** * 门户部件状态对象 * * @type {*} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ @Prop() public portletState?: any; /** * 门户部件状态事件 * * @public * @type {(Subscription | undefined)} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public portletStateEvent: Subscription | undefined; /** * 门户部件状态事件 * * @public * @type {(Subscription | undefined)} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public formDruipartEvent: Subscription | undefined; /** * 应用上下文 * * @type {*} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public context:any = {}; /** * 视图参数 * * @type {*} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public viewparams:any = {}; /** * 视图缓存数据 * * @type {*} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public viewCacheData:any; /** * 计数器服务对象集合 * * @type {Array<*>} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public counterServiceArray:Array<any> = []; /** * 解析视图参数 * * @public * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public parseViewParam(inputvalue:any = null): void { for(let key in this.context){ delete this.context[key]; } if(this.$store.getters.getAppData() && this.$store.getters.getAppData().context){ Object.assign(this.context,this.$store.getters.getAppData().context); } if (!this.viewDefaultUsage && this.viewdata && !Object.is(this.viewdata, '')) { if(typeof this.viewdata == 'string') { Object.assign(this.context, JSON.parse(this.viewdata)); } if(this.context && this.context.srfparentdename){ Object.assign(this.viewparams,{srfparentdename:this.context.srfparentdename}); } if(this.context && this.context.srfparentkey){ Object.assign(this.viewparams,{srfparentkey:this.context.srfparentkey}); } this.handleCustomViewData(); return; } const path = (this.$route.matched[this.$route.matched.length - 1]).path; const keys: Array<any> = []; const curReg = this.$pathToRegExp.pathToRegexp(path, keys); const matchArray = curReg.exec(this.$route.path); let tempValue: Object = {}; keys.forEach((item: any, index: number) => { if(matchArray[index + 1]){ Object.defineProperty(tempValue, item.name, { enumerable: true, value: decodeURIComponent(matchArray[index + 1]) }); } }); this.$viewTool.formatRouteParams(tempValue,this.$route,this.context,this.viewparams); if(inputvalue){ Object.assign(this.context,{'ibizorder':inputvalue}); } //初始化视图唯一标识 Object.assign(this.context,{srfsessionid:this.$util.createUUID()}); this.handleCustomViewData(); //初始化导航数据 this.initNavDataWithRoute(); } /** * 处理自定义视图数据 * * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public handleCustomViewData(){ if(Object.keys(this.customViewNavContexts).length > 0){ Object.keys(this.customViewNavContexts).forEach((item:any) =>{ let tempContext:any = {}; let curNavContext:any = this.customViewNavContexts[item]; this.handleCustomDataLogic(curNavContext,tempContext,item); Object.assign(this.context,tempContext); }) } if(Object.keys(this.customViewParams).length > 0){ Object.keys(this.customViewParams).forEach((item:any) =>{ let tempParam:any = {}; let curNavParam:any = this.customViewParams[item]; this.handleCustomDataLogic(curNavParam,tempParam,item); Object.assign(this.viewparams,tempParam); }) } } /** * 处理自定义视图数据逻辑 * * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public handleCustomDataLogic(curNavData:any,tempData:any,item:string){ // 直接值直接赋值 if(curNavData.isRawValue){ if(Object.is(curNavData.value,"null") || Object.is(curNavData.value,"")){ Object.defineProperty(tempData, item.toLowerCase(), { value: null, writable : true, enumerable : true, configurable : true }); }else{ Object.defineProperty(tempData, item.toLowerCase(), { value: curNavData.value, writable : true, enumerable : true, configurable : true }); } }else{ // 先从导航上下文取数,没有再从导航参数(URL)取数,如果导航上下文和导航参数都没有则为null if(this.context[(curNavData.value).toLowerCase()] != null){ Object.defineProperty(tempData, item.toLowerCase(), { value: this.context[(curNavData.value).toLowerCase()], writable : true, enumerable : true, configurable : true }); }else{ if(this.viewparams[(curNavData.value).toLowerCase()] != null){ Object.defineProperty(tempData, item.toLowerCase(), { value: this.viewparams[(curNavData.value).toLowerCase()], writable : true, enumerable : true, configurable : true }); }else{ Object.defineProperty(tempData, item.toLowerCase(), { value: null, writable : true, enumerable : true, configurable : true }); } } } } /** * 初始化导航数据(路由模式) * * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public initNavDataWithRoute(data:any = null, isNew:boolean = false, isAlways:boolean = false){ if( isAlways || (this.viewDefaultUsage && Object.is(this.navModel,"route")) ){ this.navDataService.addNavData({id:'ibizorder-test-custom-layout-panel-grid-exp-view',tag:this.viewtag,srfkey:isNew ? null : this.context.ibizorder,title:this.$t(this.model.srfCaption),data:data,context:this.context,viewparams:this.viewparams,path:this.$route.fullPath}); } } /** * 初始化导航数据(分页模式) * * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public initNavDataWithTab(data:any = null,isOnlyAdd:boolean = true, isAlways:boolean = false){ if( isAlways || (this.viewDefaultUsage && !Object.is(this.navModel,"route")) ){ this.navDataService.addNavDataByOnly({id:'ibizorder-test-custom-layout-panel-grid-exp-view',tag:this.viewtag,srfkey:this.context.ibizorder,title:this.$t(this.model.srfCaption),data:data,context:this.context,viewparams:this.viewparams,path:this.$route.fullPath},isOnlyAdd); } } /** * Vue声明周期 * * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public created() { this.afterCreated(); } /** * 执行created后的逻辑 * * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public afterCreated(){ let _this:any = this; const secondtag = _this.$util.createUUID(); _this.$store.commit('viewaction/createdView', { viewtag: _this.viewtag, secondtag: secondtag }); _this.viewtag = secondtag; _this.parseViewParam(); _this.serviceStateEvent = _this.navDataService.serviceState.subscribe(({ action,name, data }:{ action:string,name:any,data:any }) => { if(!Object.is(name,'ibizorder-test-custom-layout-panel-grid-exp-view')){ return; } if (Object.is(action, 'viewrefresh')) { _this.$nextTick(()=>{ _this.parseViewParam(data); if(_this.engine){ _this.engine.load(); } }); } }); if(_this.portletState){ _this.portletStateEvent = _this.portletState.subscribe((res:any) =>{ if(!Object.is(res.name,'IBIZOrderTestCustomLayoutPanelGridExpView')){ return; } if(Object.is(res.action,'refresh') && _this.refresh && _this.refresh instanceof Function){ _this.refresh(); } }) } } /** * 销毁之前 * * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public beforeDestroy() { this.$store.commit('viewaction/removeView', this.viewtag); let _this: any = this if (_this.serviceStateEvent) { _this.serviceStateEvent.unsubscribe(); } if (_this.portletStateEvent) { _this.portletStateEvent.unsubscribe(); } if (_this.engine) { _this.engine.destroy(); } } /** * Vue声明周期(组件初始化完毕) * * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public mounted() { this.afterMounted(); } /** * 执行mounted后的逻辑 * * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public afterMounted(){ const _this: any = this; _this.engineInit(); if (_this.loadModel && _this.loadModel instanceof Function) { _this.loadModel(); } this.initSplit(); } /** * gridexpbar 部件 selectionchange 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public gridexpbar_selectionchange($event: any, $event2?: any) { this.engine.onCtrlEvent('gridexpbar', 'selectionchange', $event); } /** * gridexpbar 部件 load 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public gridexpbar_load($event: any, $event2?: any) { this.engine.onCtrlEvent('gridexpbar', 'load', $event); } /** * gridexpbar 部件 activated 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public gridexpbar_activated($event: any, $event2?: any) { this.engine.onCtrlEvent('gridexpbar', 'activated', $event); } /** * 打开新建数据视图 * * @param {any[]} args * @param {*} [params] * @param {*} [fullargs] * @param {*} [$event] * @param {*} [xData] * @memberof IBIZOrderTestCustomLayoutPanelGridExpView */ public newdata(args: any[],fullargs?:any[], params?: any, $event?: any, xData?: any) { let localContext:any = null; let localViewParam:any =null; this.$Notice.warning({ title: '错误', desc: '未指定关系视图' }); } /** * 打开编辑数据视图 * * @param {any[]} args * @param {*} [params] * @param {*} [fullargs] * @param {*} [$event] * @param {*} [xData] * @memberof IBIZOrderTestCustomLayoutPanelGridExpView */ public opendata(args: any[],fullargs?:any,params?: any, $event?: any, xData?: any) { if(!this.viewDefaultUsage){ if(Object.is(this.navModel,"route")){ this.initNavDataWithRoute(this.viewCacheData, false, true); }else{ this.initNavDataWithTab(this.viewCacheData, false, true); } } let localContext:any = null; let localViewParam:any =null; this.$Notice.warning({ title: '错误', desc: '未指定关系视图' }); } /** * 关闭视图 * * @param {any[]} args * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public closeView(args: any[]): void { let _view: any = this; if (_view.viewdata) { _view.$emit('viewdataschange', Array.isArray(args)?args:[args]); _view.$emit('close', Array.isArray(args)?args:[args]); } else if (_view.$tabPageExp) { _view.$tabPageExp.onClose(_view.$route.fullPath); } } /** * 销毁视图回调 * * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public destroyed(){ this.afterDestroyed(); } /** * 执行destroyed后的逻辑 * * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public afterDestroyed(){ if(this.viewDefaultUsage){ let localStoreLength = Object.keys(localStorage); if(localStoreLength.length > 0){ localStoreLength.forEach((item:string) =>{ if(item.startsWith(this.context.srfsessionid)){ localStorage.removeItem(item); } }) } if(Object.is(this.navModel,"tab")){ this.navDataService.removeNavDataByTag(this.viewtag); } } if (this.serviceStateEvent) { this.serviceStateEvent.unsubscribe(); } // 销毁计数器定时器 if(this.counterServiceArray && this.counterServiceArray.length >0){ this.counterServiceArray.forEach((item:any) =>{ if(item.destroyCounter && item.destroyCounter instanceof Function){ item.destroyCounter(); } }) } if(this.portletStateEvent){ this.portletStateEvent.unsubscribe(); } if (this.formDruipartEvent) { this.formDruipartEvent.unsubscribe(); } this.viewState.complete(); } /** * 视图唯一标识 * * @type {string} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public viewUID: string = 'sample-ibizorder-test-custom-layout-panel-grid-exp-view'; /** * 分隔值 * * @type {number} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public split: number = 0.5; /** * 导航项 * * @type {*} * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public navItem: any = {}; /** * split值变化事件 * * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public onSplitChange() { if (this.split) { this.$store.commit("setViewSplit", { viewUID: this.viewUID, viewSplit: this.split }); } } /** * 初始化分隔值 * * @memberof IBIZOrderTestCustomLayoutPanelGridExpViewBase */ public initSplit() { if (this.$store.getters.getViewSplit(this.viewUID)) { this.split = this.$store.getters.getViewSplit(this.viewUID); } else { const containerWidth = (this.$el as any).offsetWidth; this.split = 0 / containerWidth; this.$store.commit("setViewSplit", { viewUID: this.viewUID, viewSplit: this.split }); } } } </script> <style lang='less'> @import './ibizorder-test-custom-layout-panel-grid-exp-view.less'; </style>