Showing
3 changed files
with
16 additions
and
2 deletions
@@ -137,6 +137,8 @@ | @@ -137,6 +137,8 @@ | ||
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 | } | 142 | } |
141 | .update-icon,.more-style{ | 143 | .update-icon,.more-style{ |
142 | cursor: pointer; | 144 | cursor: pointer; |
@@ -168,7 +170,6 @@ | @@ -168,7 +170,6 @@ | ||
168 | } | 170 | } |
169 | .clearDetail-handlePer{ | 171 | .clearDetail-handlePer{ |
170 | padding:10px 0; | 172 | padding:10px 0; |
171 | - color:#999999; | ||
172 | } | 173 | } |
173 | .editor{ | 174 | .editor{ |
174 | text-align: left; | 175 | text-align: left; |
@@ -130,7 +130,12 @@ | @@ -130,7 +130,12 @@ | ||
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 class="detail_comments_title">审核意见</div> | 134 | <div class="detail_comments_title">审核意见</div> |
135 | + <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="danger" size="small" style=" cursor:pointer;" @click="onInput(false)">不同意</el-tag> | ||
138 | + </div> | ||
134 | 139 | ||
135 | <el-input | 140 | <el-input |
136 | v-if="status==1 && approverName==loginName && !isView" | 141 | v-if="status==1 && approverName==loginName && !isView" |
@@ -480,6 +480,14 @@ export default { | @@ -480,6 +480,14 @@ export default { | ||
480 | }) | 480 | }) |
481 | 481 | ||
482 | } | 482 | } |
483 | + //快捷输入是否同意 | ||
484 | + let onInput=(val)=>{ | ||
485 | + if (val){ | ||
486 | + opinion.value="同意" | ||
487 | + }else { | ||
488 | + opinion.value="不同意" | ||
489 | + } | ||
490 | + } | ||
483 | Vue.onUnmounted(()=>{ | 491 | Vue.onUnmounted(()=>{ |
484 | timer.value=null; | 492 | timer.value=null; |
485 | }) | 493 | }) |
@@ -490,7 +498,7 @@ export default { | @@ -490,7 +498,7 @@ export default { | ||
490 | title, dialogVisible, height, dataList, columns, closeDetail,okfunc, getPage,selectionChange,dynamicTagsAppend, | 498 | title, dialogVisible, height, dataList, columns, closeDetail,okfunc, getPage,selectionChange,dynamicTagsAppend, |
491 | showUserDialog,showUserDialogVisible,userFileRight,userList,selectUser,getUserList,titles,buttonTexts, | 499 | showUserDialog,showUserDialogVisible,userFileRight,userList,selectUser,getUserList,titles,buttonTexts, |
492 | getAlarmInfo,alarmInfo,cascaderValue,propsTrigger,handleChange,cascaderOptions,noticeFlag, | 500 | getAlarmInfo,alarmInfo,cascaderValue,propsTrigger,handleChange,cascaderOptions,noticeFlag, |
493 | - getUserByToken,getUser,cancleBtn,repositoryInfo,repositoryId,opinion,getAlarmStatis,handleInfoObj,alarmIdVal | 501 | + getUserByToken,getUser,cancleBtn,repositoryInfo,repositoryId,opinion,getAlarmStatis,handleInfoObj,alarmIdVal,onInput |
494 | } | 502 | } |
495 | } | 503 | } |
496 | 504 |
-
Please register or login to post a comment