fix: 主归属人变更审核

This commit is contained in:
wangzhuo
2025-09-16 18:06:00 +08:00
parent b8e8a59da2
commit 24d35be511
3 changed files with 16 additions and 11 deletions

View File

@@ -33,8 +33,8 @@
<view class="report-list" @click.stop="handleDetail(item)">
<view class="r-list title">
{{ item.cusName }}
<view class="r-right" :class="item.auditStatus ? '' : 'btn-pink' ">
{{ item.auditStatus ? '' : '待您审批' }}
<view class="r-right no-wrap" :class="item.auditStatus ? 'btn-blue' : 'btn-pink' ">
{{ item.auditStatus ? item.auditStatus : '待审核' }}
</view>
</view>
<view class="r-list">
@@ -259,12 +259,14 @@ let handleDetail = (item) => {
width: 80%;
}
.scroll-h {
.scroll-h{
/* #ifdef APP-PLUS */
height: calc(100vh - 120px);
top: 160rpx;
height: calc(100vh - 160rpx);
/* #endif */
/* #ifndef APP-PLUS */
height: calc(100vh - 110px);
top: 116rpx;
height: calc(100vh - 116rpx);
/* #endif */
}
@@ -272,7 +274,6 @@ let handleDetail = (item) => {
padding-right: 0 !important;
}
.white-bg {
padding-bottom: 10rpx;
@@ -281,7 +282,11 @@ let handleDetail = (item) => {
}
}
.btn-pink {
.no-wrap{
white-space: nowrap;
}
.btn-blue{
border-radius: 10rpx;
}
</style>