Authored by xwx

告警处理页面样式

@@ -137,8 +137,10 @@ @@ -137,8 +137,10 @@
137 .detail_comments_title{ 137 .detail_comments_title{
138 text-align: left; 138 text-align: left;
139 padding-bottom: 10px; 139 padding-bottom: 10px;
140 - width: 86%;  
141 - float: left; 140 +}
  141 +.detail_comments_right{
  142 + width: calc(100% - 70px);
  143 + text-align: right;
142 } 144 }
143 .update-icon,.more-style{ 145 .update-icon,.more-style{
144 cursor: pointer; 146 cursor: pointer;
@@ -130,12 +130,14 @@ @@ -130,12 +130,14 @@
130 </div> 130 </div>
131 </div> 131 </div>
132 <div class="detail_comments" v-if="isExamine && ((status==3 || (status==1 && !isView)) || status==2) "> 132 <div class="detail_comments" v-if="isExamine && ((status==3 || (status==1 && !isView)) || status==2) ">
133 - <div> 133 + <div style="display: flex;">
134 <div class="detail_comments_title">审核意见<span style="color: red">*</span></div> 134 <div class="detail_comments_title">审核意见<span style="color: red">*</span></div>
  135 + <div v-if="status==1" class="detail_comments_right">
135 <span>快捷输入:</span> 136 <span>快捷输入:</span>
136 <el-tag class="ml-2" type="success" size="small" style="cursor:pointer; margin-right: 5px" @click="onInput(true)">同意</el-tag> 137 <el-tag class="ml-2" type="success" size="small" style="cursor:pointer; margin-right: 5px" @click="onInput(true)">同意</el-tag>
137 <el-tag class="ml-2" type="danger" size="small" style=" cursor:pointer;" @click="onInput(false)">不同意</el-tag> 138 <el-tag class="ml-2" type="danger" size="small" style=" cursor:pointer;" @click="onInput(false)">不同意</el-tag>
138 </div> 139 </div>
  140 + </div>
139 141
140 <el-input 142 <el-input
141 v-if="status==1 && approverName==loginName && !isView" 143 v-if="status==1 && approverName==loginName && !isView"