定损任务 状态展示优化
This commit is contained in:
parent
4fe12506fe
commit
686d09ba2f
|
|
@ -53,7 +53,7 @@
|
|||
<span class="sub-code" v-if="item.backCode">{{ `${item.backCode}-${item.level}` }}</span>
|
||||
</div>
|
||||
<div class="title-right">
|
||||
<uni-tag v-if="item.dataStatus == 3" text="修试后入库驳回" type="error" style="margin-right: 5px" custom-style="errorStyle"/>
|
||||
<uni-tag v-if="item.dataStatus == 3" text="修试后入库驳回" type="error" custom-style="errorStyle"/>
|
||||
<uni-tag v-if="item.status == 0" text="未完成" type="warning" custom-style="warningStyle"/>
|
||||
<uni-tag v-if="item.status == 1" text="已完成" type="success" custom-style="successStyle"/>
|
||||
<uni-tag v-if="item.status == 2" text="已驳回" type="warning" custom-style="warningStyle"/>
|
||||
|
|
@ -501,6 +501,13 @@ const maskClick = () => {}
|
|||
margin-top: 4rpx; /* 与主code有一点间距 */
|
||||
}
|
||||
}
|
||||
.title-right {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 8rpx 10rpx; // 行间距和列间距
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.page-container {
|
||||
display: flex;
|
||||
height: 100vh;
|
||||
|
|
|
|||
Loading…
Reference in New Issue