彭宇 2 yıl önce
ebeveyn
işleme
730f1b6675
1 değiştirilmiş dosya ile 24 ekleme ve 0 silme
  1. 24 0
      src/views/eventdetailsdialog.vue

+ 24 - 0
src/views/eventdetailsdialog.vue

@@ -159,6 +159,8 @@
                                 </el-button>
                                 <el-button size="small" icon="el-icon-download" @click="toImage()">截图上传
                                 </el-button>
+                                <el-button size="small" icon="el-icon-download" @click="showResponsibility()">责任制
+                                </el-button>
                               </div>
                               <div class="z-info-btm-grp-right">
                                 <el-button size="small" icon="el-icon-mic">会议
@@ -356,6 +358,24 @@
 		<div style="clear: both;"></div>
       </el-form>
     </el-dialog>
+    <el-dialog title="责任制" :visible.sync="showResponsibilityDialog" v-if="showResponsibilityDialog" width="80%"
+               class="top-dialog tz_tk">
+      <el-form label-width="150px">
+        <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="showEventConfirm_gd" v-if="showEventConfirm_gd" width="100%"
                class="top-dialog"
                @close="cancelEventConfirm_gd()">
@@ -1053,6 +1073,7 @@ export default {
       eventLogList: [],
       visuForestCloudYuAnBo: null,
       eventDialog: false,
+      showResponsibilityDialog: false,//责任制弹窗
       radius: 50,//资源搜索半径
       resourcesList: [
         {
@@ -1613,6 +1634,9 @@ export default {
     showEventLogUpload() {
       this.$refs.eventLogUpload.eventLogUpload(this.eventCode)
     },
+    showResponsibility () {
+      this.showResponsibilityDialog = true
+    },
     cancelEventShow() {
       console.log('关闭事件弹窗')
       this.eventLogList = []