| | |
| | | <template> |
| | | <div> |
| | | <el-dialog :visible.sync="isShow" class="effect-vol-calc" title="分析" :modal="false" v-dialog-drag |
| | | :before-close="handleClose"> |
| | | |
| | | <!--<!– 基本信息–>--> |
| | | <!-- <event-base-info>--> |
| | |
| | | <effective-volume-calc ref="effectVolCalc"></effective-volume-calc> |
| | | <event-report-doc ref="eventReportDoc" :reportItemCon="reportItemCon"> </event-report-doc> |
| | | <res-info ref="resInfo"></res-info> |
| | | </div> |
| | | </el-dialog> |
| | | |
| | | </template> |
| | | |
| | |
| | | import EffectiveVolumeCalc from '@components/base-page/enterprise-emergency/EffectiveVolumeCalc' |
| | | import EventReportDoc from '@components/base-page/enterprise-emergency/event-handling/EventReportDoc' |
| | | import ResInfo from '@components/base-page/enterprise-emergency/event-handling/ResInfo' |
| | | import eventBus from '../../../../eventBus' |
| | | export default { |
| | | name: 'EventHandling', |
| | | components: { ResInfo, EventReportDoc, DisposalProposed, EffectiveVolumeCalc }, |
| | | data () { |
| | | return { |
| | | isShow: false, |
| | | reportItemCon: { |
| | | popupType: 'aaa' |
| | | } |
| | | } |
| | | }, |
| | | mounted () { |
| | | // this.wfsHelper = new WfsHelper() |
| | | eventBus.$on('event-handling', () => { |
| | | this.isShow = !this.isShow |
| | | }) |
| | | }, |
| | | methods: { |
| | | toggleShowCalc () { |
| | |
| | | report () { |
| | | console.log('生成报告') |
| | | }, |
| | | close () { console.log('返回') } |
| | | close () { console.log('返回') }, |
| | | |
| | | handleClose () { |
| | | this.isShow = false |
| | | } |
| | | |
| | | } |
| | | } |