<template src="./opportunity-info.html"/> <script lang='tsx'> import { Component } from 'vue-property-decorator'; import { VueLifeCycleProcessing } from '@/studio-core'; import { OpportunityInfoBase } from './opportunity-info-base'; import view_datapanel from '@widgets/opportunity/data-panel-form/data-panel-form.vue'; import view_tabexppanel from '@widgets/opportunity/infotabexppanel-tabexppanel/infotabexppanel-tabexppanel.vue'; /** * 商机信息视图 * * @export * @class OpportunityInfo * @extends {OpportunityInfoBase} */ @Component({ components: { view_datapanel, view_tabexppanel, } }) @VueLifeCycleProcessing() export default class OpportunityInfo extends OpportunityInfoBase { } </script>