|
@@ -263,6 +263,24 @@
|
|
|
</div>
|
|
|
<vBottomMenu ref="bottomMenu"></vBottomMenu>
|
|
|
<eventLogUpload ref="eventLogUpload"></eventLogUpload>
|
|
|
+ <el-dialog title="调整预案" :visible.sync="showGuanLianYuAnConfirm" v-if="showGuanLianYuAnConfirm" width="50%"
|
|
|
+ class="top-dialog tz_tk">
|
|
|
+ <el-form label-width="80px">
|
|
|
+ <el-form-item label="关联预案">
|
|
|
+ <el-select v-model="sendGuanLianYuAn" placeholder="请选择关联预案!" clearable>
|
|
|
+ <el-option
|
|
|
+ v-for="item in guanLianYuAnList"
|
|
|
+ :key="item.id"
|
|
|
+ :label="item.resTitle"
|
|
|
+ :value="item.id"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-button size="mini" type="primary" class="fr_button" @click="updateYjYuAn">确定
|
|
|
+ </el-button>
|
|
|
+ <div style="clear: both;"></div>
|
|
|
+ </el-form>
|
|
|
+ </el-dialog>
|
|
|
<!-- 添加区域标记 -->
|
|
|
<el-dialog title="火灾区域" :visible.sync="regionalFlagOpen" width="1000px">
|
|
|
<areaSupermap ref="fireAreaSupermap" v-if="regionalFlagOpen" style="width: 100%;height:74vh"
|