perf: 统一审批中心的按钮色

This commit is contained in:
weifs 2024-03-11 16:36:12 +08:00
parent a7f2582df7
commit 030a07698d
2 changed files with 9 additions and 2 deletions

View File

@ -177,10 +177,10 @@
<!--审批操作-->
<div class="approve-operation">
<Button type="success" v-if="isShowAgreeBtn && !loadIng" @click="approve(1)">{{$L('同意')}}</Button>
<Button type="primary" v-if="isShowAgreeBtn && !loadIng" @click="approve(1)">{{$L('同意')}}</Button>
<Button type="error" v-if="isShowAgreeBtn && !loadIng" @click="approve(2)">{{$L('拒绝')}}</Button>
<Button type="warning" v-if="isShowWarningBtn && !loadIng" @click="revocation">{{$L('撤销')}}</Button>
<Button type="success" @click="comment" :loading="loadIng > 0" ghost>+{{$L('添加评论')}}</Button>
<Button type="primary" @click="comment" :loading="loadIng > 0" ghost>+{{$L('添加评论')}}</Button>
</div>
<!--加载中-->

View File

@ -1,10 +1,17 @@
body.dark-mode-reverse {
.ivu-btn-primary,
.ivu-badge-count,
.ivu-btn-error,
.ivu-btn-warning,
.common-right-bottom .common-right-bottom-link {
color: #000;
}
.ivu-btn-error {
background-color: #ff6943;
border-color: #ff6943;
}
.ivu-modal-mask {
background-color: rgba(230, 230, 230, 0.6);
}