| | |
| | | </el-radio> |
| | | </el-radio-group> |
| | | </el-form-item> |
| | | <el-row> |
| | | <el-button type="primary" small @click="dialogVisible = !dialogVisible">事件上报</el-button> |
| | | </el-row> |
| | | <el-button type="primary" small @click="dialogVisibleChange">事件上报</el-button> |
| | | <div class="page_total"> |
| | | <p>共计 |
| | | <span>{{total}}</span> |
| | |
| | | <div> |
| | | <h3> |
| | | <span @click="disposalfx">件名称:XXX事件</span> |
| | | <el-button class="rt btn00fff6" size="mini" style="margin-right: 0.04rem;" @click="startAnalysis"> |
| | | <el-button class="rt btn00fff6" size="mini" style="margin-right: 0.04rem;" |
| | | @click="startAnalysis"> |
| | | <span>开始分析</span> |
| | | </el-button> |
| | | </h3> |
| | |
| | | <p>事件类型:<span>模拟管线事件</span> |
| | | <el-button class="rt btn00fff6" size="mini" style="margin-right: 0.04rem;" |
| | | @click="accordPopup()"> |
| | | <span>事件管理</span> |
| | | <span>事件处置</span> |
| | | </el-button> |
| | | </p> |
| | | </div> |
| | | </div> |
| | | </el-scrollbar> |
| | | <!-- :show-close="false"--> |
| | | <div class="event-report"> |
| | | <el-dialog |
| | | custom-class="event-report-dialog" |
| | | custom-class="event-report" |
| | | title="事件上报" |
| | | :visible.sync="dialogVisible" |
| | | :append-to-body="true" |
| | |
| | | v-dialogDragBottom |
| | | > |
| | | <EventsReported></EventsReported> |
| | | </el-dialog> |
| | | <el-dialog |
| | | custom-class="event-report-dialog" |
| | | title="选择顺序" |
| | | :visible.sync="dialogVisible" |
| | | :append-to-body="true" |
| | | :modal="false" |
| | | v-dialogDragBottom |
| | | > |
| | | <span>local选择</span> |
| | | </el-dialog> |
| | | <el-dialog |
| | | custom-class="event-report-dialog" |
| | | title="文件选择" |
| | | :visible.sync="dialogVisible" |
| | | :append-to-body="true" |
| | | :modal="false" |
| | | v-dialogDragBottom |
| | | > |
| | | <span>file</span> |
| | | </el-dialog> |
| | | </div> |
| | | </div> |
| | |
| | | // import AjaxUtils from '@utils/AjaxUtils' |
| | | |
| | | import DisposalEvent from '../../../base-page/enterprise-emergency/DisposalEvent' |
| | | import EventHandling from '@components/base-page/enterprise-emergency/event-handling/EventHandling' |
| | | import eventBus from '../../../../eventBus' |
| | | |
| | | import EventsReported from '../../../../components/base-page/enterprise-emergency/EventsReported' |
| | | |
| | | export default { |
| | | name: 'EventQuery', |
| | | components: { |
| | | // DisposalEvent |
| | | EventsReported |
| | | }, |
| | | data () { |
| | |
| | | list: [], |
| | | total: 0, |
| | | activeNum: -1, |
| | | LayerEvent: {}, |
| | | LayerResources: {}, |
| | | // items: [LayerEvent, LayerResources], |
| | | // subItems: LayerEntEmer.layers, |
| | | items: [], |
| | | subItems: [], |
| | | form: { |
| | |
| | | // this.wfsHelper = new WfsHelper() |
| | | }, |
| | | methods: { |
| | | dialogVisibleChange () { |
| | | this.dialogVisible = !this.dialogVisible |
| | | }, |
| | | // 点击事件管理 |
| | | accordPopup () { |
| | | eventBus.$emit('disposal-analysis', true) |
| | | // eventBus.$emit('disposal-analysis', true) |
| | | window.$layer.open({ |
| | | content: { |
| | | comp: EventHandling, // 组件 |
| | | parent: this, // 父组件 |
| | | data: { // 传递的参数 |
| | | // info: this.info |
| | | } |
| | | }, |
| | | title: '事件处置' |
| | | }) |
| | | }, |
| | | // 开始分析 |
| | | startAnalysis () { |
| | |
| | | </script> |
| | | |
| | | <style lang="less" scoped> |
| | | .event-report { |
| | | display: flex; |
| | | } |
| | | /*/deep/ .el-row {*/ |
| | | /* text-align: right;*/ |
| | | /*.event-report {*/ |
| | | /*/deep/ .el-dialog--center {*/ |
| | | /* !*left: 2rem !important;*!*/ |
| | | /* margin-left: 3rem !important;*/ |
| | | /* margin-top: 0.33979rem !important;*/ |
| | | /* !*bottom: 0 !important;*!*/ |
| | | /*}*/ |
| | | /deep/ .el-dialog { |
| | | width: 30%; |
| | | |
| | | /deep/ .event-report { |
| | | /*margin-left: 3rem !important;*/ |
| | | /*margin-top: 0.33979rem !important;*/ |
| | | } |
| | | |
| | | //} |
| | | /*.event-report {*/ |
| | | /deep/ .el-dialog { |
| | | /*width: 30%;*/ |
| | | width: 550px; |
| | | } |
| | | |
| | | /*}*/ |
| | | </style> |