去掉拒绝同意按钮

This commit is contained in:
花有清香月有阴
2021-12-15 17:47:48 +08:00
parent 27078ad6e6
commit d97a11aeac

View File

@@ -1,12 +1,13 @@
<template>
<div class="detail" v-if="pageShow">
<!-- <div class="top" v-if="list.approvalStatus == 1">
<div class="top">
<!-- v-if="list.approvalStatus == 1" -->
<p>审批通过:</p>
<div class="save">
<div style="display: inline">11已签署完成,</div>
<ai-image preview :file="list.pdfFile" style="display: inline-block; margin-left: 4px"><span class="clicksave">点击查看和保存</span> </ai-image>
<!-- <ai-image preview :file="list.pdfFile" style="display: inline-block; margin-left: 4px"><span class="clicksave">点击查看和保存</span> </ai-image> -->
</div>
</div> -->
</div>
<div class="form">
<!-- 审批表单名称 -->
@@ -269,12 +270,6 @@
</div>
</div>
</div>
<div class="reject_agree">
<!-- v-if="canApproval && list.approvalStatus == 0" -->
<div class="reject" @click="agree(0)">拒绝</div>
<div class="agre" @click="agree(1)">同意</div>
</div>
</div>
</template>
@@ -884,31 +879,4 @@ export default {
// }
}
}
.reject_agree {
position: fixed;
bottom: 0;
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
line-height: 112px;
text-align: center;
border-top: 1px solid #ddd;
z-index: 999;
background: #fff;
.reject {
background-color: #fff;
width: 50%;
color: red;
}
.agre {
height: 112px;
width: 50%;
background-color: #1365dd;
color: #fff;
}
}
</style>