|
|
|
|
@ -65,8 +65,8 @@ defineExpose({
|
|
|
|
|
<div class="wrapper">
|
|
|
|
|
<div class="closed">
|
|
|
|
|
<SvgIcon
|
|
|
|
|
style="cursor: pointer"
|
|
|
|
|
name="cut-down"
|
|
|
|
|
class="icon"
|
|
|
|
|
name="close-white"
|
|
|
|
|
width="32"
|
|
|
|
|
@click="closeModal"
|
|
|
|
|
/>
|
|
|
|
|
@ -99,8 +99,8 @@ defineExpose({
|
|
|
|
|
</div>
|
|
|
|
|
</n-scrollbar>
|
|
|
|
|
<div class="footer">
|
|
|
|
|
<SvgIcon style="cursor: pointer;" name="r1" width="162" height="54" @click="reject" />
|
|
|
|
|
<SvgIcon style="cursor: pointer;" name="r4" width="162" height="54" @click="viewRepeat" />
|
|
|
|
|
<img class="img-btn1" src="@/assets/images/btn_pass.png" alt="" @click="reject">
|
|
|
|
|
<img class="img-btn" src="@/assets/images/btn_repeat.png" alt="" @click="viewRepeat">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
@ -121,11 +121,16 @@ defineExpose({
|
|
|
|
|
left: calc(50% - 350px);
|
|
|
|
|
.closed {
|
|
|
|
|
position: relative;
|
|
|
|
|
top: 0px;
|
|
|
|
|
left: 90%;
|
|
|
|
|
.icon{
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 10px;
|
|
|
|
|
right: 7px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.wrapper-header {
|
|
|
|
|
padding-top: 40px;
|
|
|
|
|
margin-top: 80px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
.wrapper-title {
|
|
|
|
|
text-align: center;
|
|
|
|
|
@ -265,5 +270,15 @@ defineExpose({
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
margin: 0px 5px
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.img-btn1{
|
|
|
|
|
width: 162px;
|
|
|
|
|
height: 54px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.img-btn{
|
|
|
|
|
width: 173px;
|
|
|
|
|
height: 54px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|