<template> <div class='tabviewpanel' style="height:100%;" v-if = 'isActivied' > <ibizsoftware-suit-grid-view9 class='viewcontainer2' :viewdata="viewdata" :viewparam="viewparam" @viewload="viewDatasChange($event)" :viewDefaultUsage="false" > </ibizsoftware-suit-grid-view9> </div> </template> <script lang='tsx'> import { Vue, Component, Prop, Provide, Emit, Watch, Model,Inject } from 'vue-property-decorator'; import { CreateElement } from 'vue'; import { Subject, Subscription } from 'rxjs'; import { ControlInterface } from '@/interface/control'; import { UIActionTool,Util,ViewTool } from '@/utils'; import NavDataService from '@/service/app/navdata-service'; import AppCenterService from "@service/app/app-center-service"; import IBIZSample0003Service from '@/service/ibizsample0003/ibizsample0003-service'; import STabExpViewtabviewpanel3Service from './stab-exp-viewtabviewpanel3-tabviewpanel-service'; import IBIZSample0003UIService from '@/uiservice/ibizsample0003/ibizsample0003-ui-service'; @Component({ components: { } }) export default class STabExpViewtabviewpanel3Base extends Vue implements ControlInterface { /** * 名称 * * @type {string} * @memberof STabExpViewtabviewpanel3Base */ @Prop() public name?: string; /** * 视图通讯对象 * * @type {Subject<ViewState>} * @memberof STabExpViewtabviewpanel3Base */ @Prop() public viewState!: Subject<ViewState>; /** * 应用上下文 * * @type {*} * @memberof STabExpViewtabviewpanel3Base */ @Prop() public context: any; /** * 视图参数 * * @type {*} * @memberof STabExpViewtabviewpanel3Base */ @Prop() public viewparams: any; /** * 视图状态事件 * * @public * @type {(Subscription | undefined)} * @memberof STabExpViewtabviewpanel3Base */ public viewStateEvent: Subscription | undefined; /** * 获取部件类型 * * @returns {string} * @memberof STabExpViewtabviewpanel3Base */ public getControlType(): string { return 'TABVIEWPANEL' } /** * 建构部件服务对象 * * @type {STabExpViewtabviewpanel3Service} * @memberof STabExpViewtabviewpanel3Base */ public service: STabExpViewtabviewpanel3Service = new STabExpViewtabviewpanel3Service({ $store: this.$store }); /** * 实体服务对象 * * @type {IBIZSample0003Service} * @memberof STabExpViewtabviewpanel3Base */ public appEntityService: IBIZSample0003Service = new IBIZSample0003Service({ $store: this.$store }); /** * 转化数据 * * @param {any} args * @memberof STabExpViewtabviewpanel3Base */ public transformData(args: any) { let _this: any = this; if(_this.service && _this.service.handleRequestData instanceof Function && _this.service.handleRequestData('transform',_this.context,args)){ return _this.service.handleRequestData('transform',_this.context,args)['data']; } } /** * 关闭视图 * * @param {any} args * @memberof STabExpViewtabviewpanel3Base */ public closeView(args: any): void { let _this: any = this; _this.$emit('closeview', [args]); } /** * 计数器刷新 * * @memberof STabExpViewtabviewpanel3Base */ 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(); } }) } } /** * 获取多项数据 * * @returns {any[]} * @memberof STabExpViewtabviewpanel3Base */ public getDatas(): any[] { return []; } /** * 获取单项树 * * @returns {*} * @memberof STabExpViewtabviewpanel3Base */ public getData(): any { return null; } /** * 是否被激活 * * @type {boolean} * @memberof STabExpViewtabviewpanel3Base */ public isActivied: boolean = true; /** * 局部上下文 * * @type {*} * @memberof STabExpViewtabviewpanel3Base */ public localContext: any = null; /** * 局部视图参数 * * @type {*} * @memberof STabExpViewtabviewpanel3Base */ public localViewParam: any = null; /** * 传入上下文 * * @type {string} * @memberof STabExpViewtabviewpanel3Base */ public viewdata: string = JSON.stringify(this.context); /** * 传入视图参数 * * @type {string} * @memberof PickupViewpickupviewpanel */ public viewparam: string = JSON.stringify(this.viewparams); /** * 视图面板过滤项 * * @type {string} * @memberof STabExpViewtabviewpanel3Base */ public navfilter: string = ""; /** * vue 生命周期 * * @returns * @memberof STabExpViewtabviewpanel3Base */ public created() { this.afterCreated(); } /** * 执行created后的逻辑 * * @memberof STabExpViewtabviewpanel3Base */ public afterCreated(){ this.initNavParam(); if (this.viewState) { this.viewStateEvent = this.viewState.subscribe(({ tag, action, data }) => { if (!Object.is(tag, this.name)) { return; } this.$forceUpdate(); this.$nextTick(() => { this.initNavParam(); }); }); } } /** * 初始化导航参数 * * @memberof STabExpViewtabviewpanel3Base */ public initNavParam(){ if(!Object.is(this.navfilter,"")){ Object.assign(this.viewparams,{[this.navfilter]:this.context['ibizsample0003']}) } if(this.localContext && Object.keys(this.localContext).length >0){ let _context:any = this.$util.computedNavData({},this.context,this.viewparams,this.localContext); Object.assign(this.context,_context); } if(this.localViewParam && Object.keys(this.localViewParam).length >0){ let _param:any = this.$util.computedNavData({},this.context,this.viewparams,this.localViewParam); Object.assign(this.viewparams,_param); } this.viewdata =JSON.stringify(this.context); this.viewparam = JSON.stringify(this.viewparams); } /** * 视图数据变化 * * @memberof STabExpViewtabviewpanel3Base */ public viewDatasChange($event:any){ this.$emit('viewpanelDatasChange',$event); } /** * vue 生命周期 * * @memberof STabExpViewtabviewpanel3Base */ public destroyed() { this.afterDestroy(); } /** * 执行destroyed后的逻辑 * * @memberof STabExpViewtabviewpanel3Base */ public afterDestroy() { if (this.viewStateEvent) { this.viewStateEvent.unsubscribe(); } } } </script> <style lang='less'> @import './stab-exp-viewtabviewpanel3-tabviewpanel.less'; </style>