whao 2 년 전
부모
커밋
2f024689ce
1개의 변경된 파일16개의 추가작업 그리고 4개의 파일을 삭제
  1. 16 4
      src/views/eventdetailsdialog.vue

+ 16 - 4
src/views/eventdetailsdialog.vue

@@ -152,7 +152,8 @@
                                 </el-button>
                               </div>
                               <div class="z-info-btm-input-btn" v-if="eventStatusValue=='forest_event_status_2'">
-                                <el-button size="small"
+								<div>  
+								<el-button size="small"
                                            icon="el-icon-question"
                                            @click="updateCentereventTEventcatalogueStatus('wb',false)">
                                   误报
@@ -172,6 +173,8 @@
                                            @click="updateCentereventTEventcatalogueStatus('bj',false)">
                                   办结
                                 </el-button>
+								</div>
+                              
                                 <el-button size="small" icon="el-icon-chat-dot-square" @click="sendEventLog()">发送
                                 </el-button>
                               </div>
@@ -201,8 +204,8 @@
     </div>
     <vBottomMenu ref="bottomMenu"></vBottomMenu>
     <eventLogUpload ref="eventLogUpload"></eventLogUpload>
-    <el-dialog :title="eventConfirmTitle" :visible.sync="showEventConfirm" v-if="showEventConfirm" width="770px"
-               style="height: 700px;" @close="cancelEventConfirm()">
+    <el-dialog :title="eventConfirmTitle" :visible.sync="showEventConfirm" v-if="showEventConfirm" width="80%" class="top-dialog"
+                @close="cancelEventConfirm()">
       <el-form label-width="80px">
         <el-form-item label="火灾半径" v-if="eventStatusButton=='qs'">
           <el-input type="number" v-model="sendHuoZaiBanJing" placeholder="请输入火灾半径"/>
@@ -244,6 +247,7 @@
           <!--          <el-checkbox v-model="deptCheckStrictly" @change="handleCheckedTreeConnect($event, 'dept')">父子联动</el-checkbox>-->
           <el-tree
             class="tree-border"
+			style="height: 20vh; overflow-y:scroll"
             :data="deptOptionsLiandong"
             show-checkbox
             default-expand-all
@@ -731,5 +735,13 @@ export default {
 }
 </script>
 
-<style>
+<style lang="scss" scoped>
+	@import '@/assets/styles/base.scss';
+	.tree-border{
+		border:  1px $barBorder;
+		
+	}
+	button{
+		padding: .5rem;
+	}
 </style>