<template> <div class='portlet view-comp-abstract ' :style="{'height': 'auto',}"> <p class='portlet-title'> <span> 摘要信息 </span> </p> <div class="portlet-with-title"> <competitor-info-abstract :viewdata="JSON.stringify(context)" :viewDefaultUsage="false" ></competitor-info-abstract> </div> </div> </template> <script lang='tsx'> import { Vue, Component, Prop, Provide, Emit, Watch, Model } from 'vue-property-decorator'; import { CreateElement } from 'vue'; import { Subject, Subscription } from 'rxjs'; import { ControlInterface } from '@/interface/control'; import { UIActionTool,Util } from '@/utils'; import CompetitorService from '@/service/competitor/competitor-service'; import View_CompAbstractService from './view-comp-abstract-portlet-service'; import { Environment } from '@/environments/environment'; @Component({ components: { } }) export default class CompetitorView_CompAbstractBase extends Vue implements ControlInterface { /** * 名称 * * @type {string} * @memberof View_CompAbstract */ @Prop() public name?: string; /** * 视图通讯对象 * * @type {Subject<ViewState>} * @memberof View_CompAbstract */ @Prop() public viewState!: Subject<ViewState>; /** * 应用上下文 * * @type {*} * @memberof View_CompAbstract */ @Prop() public context: any; /** * 视图参数 * * @type {*} * @memberof View_CompAbstract */ @Prop() public viewparams: any; /** * 视图状态事件 * * @public * @type {(Subscription | undefined)} * @memberof View_CompAbstract */ public viewStateEvent: Subscription | undefined; /** * 获取部件类型 * * @returns {string} * @memberof View_CompAbstract */ public getControlType(): string { return 'PORTLET' } /** * 计数器服务对象集合 * * @type {Array<*>} * @memberof View_CompAbstract */ public counterServiceArray:Array<any> = []; /** * 建构部件服务对象 * * @type {View_CompAbstractService} * @memberof View_CompAbstract */ public service: View_CompAbstractService = new View_CompAbstractService({ $store: this.$store }); /** * 实体服务对象 * * @type {CompetitorService} * @memberof View_CompAbstract */ public appEntityService: CompetitorService = new CompetitorService({ $store: this.$store }); /** * 关闭视图 * * @param {any} args * @memberof View_CompAbstract */ public closeView(args: any): void { let _this: any = this; _this.$emit('closeview', [args]); } /** * 计数器刷新 * * @memberof View_CompAbstract */ 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(); } }) } } /** * 长度 * * @type {number} * @memberof View_CompAbstract */ @Prop() public height?: number; /** * 宽度 * * @type {number} * @memberof View_CompAbstract */ @Prop() public width?: number; /** * 是否自适应大小 * * @returns {boolean} * @memberof View_CompAbstractBase */ @Prop({default: false})public isAdaptiveSize!: boolean; /** * 获取多项数据 * * @returns {any[]} * @memberof View_CompAbstractBase */ public getDatas(): any[] { return []; } /** * 获取单项树 * * @returns {*} * @memberof View_CompAbstractBase */ public getData(): any { return {}; } /** * vue 生命周期 * * @memberof View_CompAbstractBase */ public created() { this.afterCreated(); } /** * 执行created后的逻辑 * * @memberof View_CompAbstractBase */ public afterCreated(){ if (this.viewState) { this.viewStateEvent = this.viewState.subscribe(({ tag, action, data }) => { if (!Object.is(tag, this.name)) { return; } const refs: any = this.$refs; Object.keys(refs).forEach((_name: string) => { this.viewState.next({ tag: _name, action: action, data: data }); }); }); } } /** * vue 生命周期 * * @memberof View_CompAbstractBase */ public destroyed() { this.afterDestroy(); } /** * 执行destroyed后的逻辑 * * @memberof View_CompAbstractBase */ public afterDestroy() { if (this.viewStateEvent) { this.viewStateEvent.unsubscribe(); } } } </script> <style lang='less'> @import './view-comp-abstract-portlet.less'; </style>