审核通过审核拒绝

This commit is contained in:
shijingjing
2022-07-18 11:48:23 +08:00
parent 893fa8d820
commit 93ec989475
3 changed files with 14 additions and 0 deletions

View File

@@ -20,6 +20,10 @@
<span>{{ data.choiceTime }}</span> <span>{{ data.choiceTime }}</span>
</div> </div>
</div> </div>
<div class="task_results">
<img v-if="data.status == 1" src="./images/refuse.png" alt="">
<img v-if="data.status == 2" src="./images/pass.png" alt="">
</div>
</div> </div>
<div class="info"> <div class="info">
<div class="scope"> <div class="scope">
@@ -110,6 +114,7 @@ export default {
padding: 32px 32px 120px 32px; padding: 32px 32px 120px 32px;
box-sizing: border-box; box-sizing: border-box;
.task { .task {
position: relative;
margin-bottom: 24px; margin-bottom: 24px;
background: #FFF; background: #FFF;
border-radius: 8px; border-radius: 8px;
@@ -135,6 +140,15 @@ export default {
} }
} }
} }
.task_results {
position: absolute;
right: 30px;
top: 30px;
img {
width: 160px;
height: 130px;
}
}
} }
.info { .info {

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB