<template> <div class="view-container depickupview ibizsample0002-pickup-view"> <app-studioaction :viewTitle="$t(model.srfCaption)" viewName="ibizsample0002pickupview"></app-studioaction> <card class='view-card view-no-caption view-no-toolbar' :dis-hover="true" :padding="0" :bordered="false"> <div class="content-container pickup-view"> <view_pickupviewpanel :viewState="viewState" :viewparams="JSON.parse(JSON.stringify(viewparams))" :context="JSON.parse(JSON.stringify(context))" :isSingleSelect="isSingleSelect" :selectedData="selectedData" :isShowButton="isShowButton" name="pickupviewpanel" ref='pickupviewpanel' @selectionchange="pickupviewpanel_selectionchange($event)" @load="pickupviewpanel_load($event)" @activated="pickupviewpanel_activated($event)" @closeview="closeView($event)"> </view_pickupviewpanel> <card v-if="isShowButton" :dis-hover="true" :bordered="false" class="footer"> <row :style="{ textAlign: 'right' }"> <i-button type="primary" :disabled="this.viewSelections.length > 0 ? false : true" @click="onClickOk">{{this.containerModel.view_okbtn.text}}</i-button> <i-button @click="onClickCancel">{{this.containerModel.view_cancelbtn.text}}</i-button> </row> </card> </div> </card> </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 IBIZSample0002Service from '@/service/ibizsample0002/ibizsample0002-service'; import IBIZSample0002AuthService from '@/authservice/ibizsample0002/ibizsample0002-auth-service'; import PickupViewEngine from '@engine/view/pickup-view-engine'; import IBIZSample0002UIService from '@/uiservice/ibizsample0002/ibizsample0002-ui-service'; @Component({ components: { }, }) export default class IBIZSample0002PickupViewBase extends Vue { /** * 实体服务对象 * * @type {IBIZSample0002Service} * @memberof IBIZSample0002PickupViewBase */ public appEntityService: IBIZSample0002Service = new IBIZSample0002Service; /** * 实体UI服务对象 * * @type IBIZSample0002UIService * @memberof IBIZSample0002PickupViewBase */ public appUIService: IBIZSample0002UIService = new IBIZSample0002UIService(); /** * 数据变化 * * @param {*} val * @returns {*} * @memberof IBIZSample0002PickupViewBase */ @Emit() public viewDatasChange(val: any):any { return val; } /** * 传入视图上下文 * * @type {string} * @memberof IBIZSample0002PickupViewBase */ @Prop() public viewdata!: string; /** * 传入视图参数 * * @type {string} * @memberof IBIZSample0002PickupViewBase */ @Prop() public viewparam!: string; /** * 视图默认使用 * * @type {boolean} * @memberof IBIZSample0002PickupViewBase */ @Prop({ default: true }) public viewDefaultUsage!: boolean; /** * 视图默认使用 * * @type {string} * @memberof IBIZSample0002PickupViewBase */ @Inject({from:'navModel',default: 'tab'}) public navModel!:string; /** * 视图标识 * * @type {string} * @memberof IBIZSample0002PickupViewBase */ public viewtag: string = '02bfa483b64e3ece7a3c35ecf2cdce68'; /** * 自定义视图导航上下文集合 * * @type {*} * @memberof IBIZSample0002PickupViewBase */ public customViewNavContexts:any ={ }; /** * 自定义视图导航参数集合 * * @type {*} * @memberof IBIZSample0002PickupViewBase */ public customViewParams:any ={ }; /** * 视图模型数据 * * @type {*} * @memberof IBIZSample0002PickupViewBase */ public model: any = { srfCaption: 'entities.ibizsample0002.views.pickupview.caption', srfTitle: 'entities.ibizsample0002.views.pickupview.title', srfSubTitle: 'entities.ibizsample0002.views.pickupview.subtitle', dataInfo: '' } /** * 视图参数变化 * * @param {*} newVal * @param {*} oldVal * @memberof IBIZSample0002PickupViewBase */ @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); } if(this.viewparams.selectedData){ this.selectedData = JSON.stringify(this.viewparams.selectedData); } } } /** * 处理应用上下文变化 * * @param {*} newVal * @param {*} oldVal * @memberof IBIZSample0002PickupViewBase */ @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 IBIZSample0002PickupViewBase */ public containerModel: any = { view_pickupviewpanel: { name: 'pickupviewpanel', type: 'PICKUPVIEWPANEL' }, view_okbtn: { name: 'okbtn', type: 'button', text: '确定', disabled: true }, view_cancelbtn: { name: 'cancelbtn', type: 'button', text: '取消', disabled: false }, view_leftbtn: { name: 'leftbtn', type: 'button', text: '左移', disabled: true }, view_rightbtn: { name: 'rightbtn', type: 'button', text: '右移', disabled: true }, view_allleftbtn: { name: 'allleftbtn', type: 'button', text: '全部左移', disabled: true }, view_allrightbtn: { name: 'allrightbtn', type: 'button', text: '全部右移', disabled: true }, }; /** * 计数器刷新 * * @memberof IBIZSample0002PickupViewBase */ 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 IBIZSample0002PickupViewBase */ public viewState: Subject<ViewState> = new Subject(); /** * 视图引擎 * * @public * @type {Engine} * @memberof IBIZSample0002PickupViewBase */ public engine: PickupViewEngine = new PickupViewEngine(); /** * 引擎初始化 * * @public * @memberof IBIZSample0002PickupViewBase */ public engineInit(): void { this.engine.init({ view: this, pickupviewpanel: this.$refs.pickupviewpanel, keyPSDEField: 'ibizsample0002', majorPSDEField: 'ibizsample0002name', isLoadDefault: true, }); } /** * 应用导航服务 * * @type {*} * @memberof IBIZSample0002PickupViewBase */ public navDataService = NavDataService.getInstance(); /** * 导航服务事件 * * @public * @type {(Subscription | undefined)} * @memberof IBIZSample0002PickupViewBase */ public serviceStateEvent: Subscription | undefined; /** * 门户部件状态对象 * * @type {*} * @memberof IBIZSample0002PickupViewBase */ @Prop() public portletState?: any; /** * 门户部件状态事件 * * @public * @type {(Subscription | undefined)} * @memberof IBIZSample0002PickupViewBase */ public portletStateEvent: Subscription | undefined; /** * 门户部件状态事件 * * @public * @type {(Subscription | undefined)} * @memberof IBIZSample0002PickupViewBase */ public formDruipartEvent: Subscription | undefined; /** * 应用上下文 * * @type {*} * @memberof IBIZSample0002PickupViewBase */ public context:any = {}; /** * 视图参数 * * @type {*} * @memberof IBIZSample0002PickupViewBase */ public viewparams:any = {}; /** * 视图缓存数据 * * @type {*} * @memberof IBIZSample0002PickupViewBase */ public viewCacheData:any; /** * 计数器服务对象集合 * * @type {Array<*>} * @memberof IBIZSample0002PickupViewBase */ public counterServiceArray:Array<any> = []; /** * 解析视图参数 * * @public * @memberof IBIZSample0002PickupViewBase */ 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,{'ibizsample0002':inputvalue}); } //初始化视图唯一标识 Object.assign(this.context,{srfsessionid:this.$util.createUUID()}); this.handleCustomViewData(); //初始化导航数据 this.initNavDataWithRoute(); } /** * 处理自定义视图数据 * * @memberof IBIZSample0002PickupViewBase */ 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 IBIZSample0002PickupViewBase */ 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 IBIZSample0002PickupViewBase */ public initNavDataWithRoute(data:any = null, isNew:boolean = false, isAlways:boolean = false){ if( isAlways || (this.viewDefaultUsage && Object.is(this.navModel,"route")) ){ this.navDataService.addNavData({id:'ibizsample0002-pickup-view',tag:this.viewtag,srfkey:isNew ? null : this.context.ibizsample0002,title:this.$t(this.model.srfCaption),data:data,context:this.context,viewparams:this.viewparams,path:this.$route.fullPath}); } } /** * 初始化导航数据(分页模式) * * @memberof IBIZSample0002PickupViewBase */ public initNavDataWithTab(data:any = null,isOnlyAdd:boolean = true, isAlways:boolean = false){ if( isAlways || (this.viewDefaultUsage && !Object.is(this.navModel,"route")) ){ this.navDataService.addNavDataByOnly({id:'ibizsample0002-pickup-view',tag:this.viewtag,srfkey:this.context.ibizsample0002,title:this.$t(this.model.srfCaption),data:data,context:this.context,viewparams:this.viewparams,path:this.$route.fullPath},isOnlyAdd); } } /** * Vue声明周期 * * @memberof IBIZSample0002PickupViewBase */ public created() { this.afterCreated(); } /** * 执行created后的逻辑 * * @memberof IBIZSample0002PickupViewBase */ 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,'ibizsample0002-pickup-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,'IBIZSample0002PickupView')){ return; } if(Object.is(res.action,'refresh') && _this.refresh && _this.refresh instanceof Function){ _this.refresh(); } }) } } /** * 销毁之前 * * @memberof IBIZSample0002PickupViewBase */ 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 IBIZSample0002PickupViewBase */ public mounted() { this.afterMounted(); } /** * 执行mounted后的逻辑 * * @memberof IBIZSample0002PickupViewBase */ public afterMounted(){ const _this: any = this; _this.engineInit(); if (_this.loadModel && _this.loadModel instanceof Function) { _this.loadModel(); } if(this.viewparams.selectedData){ this.engine.onCtrlEvent('pickupviewpanel', 'selectionchange', this.viewparams.selectedData); } } /** * pickupviewpanel 部件 selectionchange 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZSample0002PickupViewBase */ public pickupviewpanel_selectionchange($event: any, $event2?: any) { this.engine.onCtrlEvent('pickupviewpanel', 'selectionchange', $event); } /** * pickupviewpanel 部件 load 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZSample0002PickupViewBase */ public pickupviewpanel_load($event: any, $event2?: any) { this.engine.onCtrlEvent('pickupviewpanel', 'load', $event); } /** * pickupviewpanel 部件 activated 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZSample0002PickupViewBase */ public pickupviewpanel_activated($event: any, $event2?: any) { this.engine.onCtrlEvent('pickupviewpanel', 'activated', $event); } /** * 关闭视图 * * @param {any[]} args * @memberof IBIZSample0002PickupViewBase */ 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 IBIZSample0002PickupViewBase */ public destroyed(){ this.afterDestroyed(); } /** * 执行destroyed后的逻辑 * * @memberof IBIZSample0002PickupViewBase */ 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 IBIZSample0002PickupViewBase */ public selectedData: string = ""; /** * 视图选中数据 * * @type {any[]} * @memberof IBIZSample0002PickupViewBase */ public viewSelections:any[] = []; /** * 是否显示按钮 * * @type {boolean} * @memberof IBIZSample0002PickupViewBase */ @Prop({default: true}) public isShowButton!: boolean; /** * 是否单选 * * @type {boolean} * @memberof IBIZSample0002PickupViewBase */ public isSingleSelect: boolean = true; /** * 确定 * * @memberof IBIZSample0002PickupViewBase */ public onClickOk(): void { this.$emit('viewdataschange', this.viewSelections); this.$emit('close', null); } /** * 取消 * * @memberof IBIZSample0002PickupViewBase */ public onClickCancel(): void { this.$emit('viewdataschange', null); this.$emit('close', null); } } </script> <style lang='less'> @import './ibizsample0002-pickup-view.less'; </style>