opportunity-info.vue 735 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<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>