| | |
| | | </el-radio> |
| | | </el-radio-group> |
| | | </el-form-item> |
| | | <el-row> |
| | | <el-button type="primary" small @click="dialogVisible = !dialogVisible">事件上报</el-button> |
| | | </el-row> |
| | | <div class="page_total"> |
| | | <p>共计 |
| | | <span>{{total}}</span> |
| | | 条记录 |
| | | </p> |
| | | </div> |
| | | <div class="rightButtonSearch"> |
| | | <el-input v-model="form.keyword" size="mini" placeholder="在此输入关键字搜索"></el-input> |
| | | <el-button class="el-icon-search" @click="handleSearch"></el-button> |
| | |
| | | </div> |
| | | </div> |
| | | </el-scrollbar> |
| | | <!-- <reportPopup></reportPopup>--> |
| | | <!-- :show-close="false"--> |
| | | <div class="event-report"> |
| | | <el-dialog |
| | | custom-class="event-report-dialog" |
| | | title="事件上报" |
| | | :visible.sync="dialogVisible" |
| | | :append-to-body="true" |
| | | :modal="false" |
| | | 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> |
| | | </template> |
| | | |
| | |
| | | import DisposalEvent from '../../../base-page/enterprise-emergency/DisposalEvent' |
| | | import eventBus from '../../../../eventBus' |
| | | |
| | | import EventsReported from '../../../../components/base-page/enterprise-emergency/EventsReported' |
| | | |
| | | export default { |
| | | name: 'EventQuery', |
| | | components: { |
| | | // reportPopup |
| | | // DisposalEvent |
| | | EventsReported |
| | | }, |
| | | data () { |
| | | return { |
| | | dialogVisible: false, |
| | | reportIncident: false, |
| | | list: [], |
| | | total: 0, |
| | | activeNum: -1, |
| | | LayerEvent: {}, |
| | | LayerResources: {}, |
| | |
| | | // info: this.info |
| | | } |
| | | }, |
| | | title: '处置事件' |
| | | title: '事件处置' |
| | | }) |
| | | }, |
| | | // radio数据选择 |
| | |
| | | </script> |
| | | |
| | | <style lang="less" scoped> |
| | | |
| | | .event-report { |
| | | display: flex; |
| | | } |
| | | /*/deep/ .el-row {*/ |
| | | /* text-align: right;*/ |
| | | /*}*/ |
| | | /deep/ .el-dialog { |
| | | width: 30%; |
| | | } |
| | | </style> |