上报违法列表和提车列表详情过长显示效果优化

main
zhufu 2026-02-08 09:48:51 +08:00
parent 615ae4239d
commit a659ac566c
2 changed files with 34 additions and 24 deletions

View File

@ -67,12 +67,12 @@
{{ props.modalData.pickupInfo.remark }}
</a-descriptions-item>
</a-descriptions>
<div class="button-div">
<a-input v-model:value="reviewValue" style="margin-right: 20px;" placeholder="请输入审核意见"/>
<div style="display: flex;">
<a-button style="margin-right: 20px;" class="save-button" type="error" @click="submit(false)"></a-button>
<a-button class="save-button" type="success" @click="submit(true)"></a-button>
</div>
</div>
<div class="button-div">
<a-input v-model:value="reviewValue" style="margin-right: 20px;" placeholder="请输入审核意见"/>
<div style="display: flex;">
<a-button style="margin-right: 20px;" class="save-button" type="error" @click="submit(false)"></a-button>
<a-button class="save-button" type="success" @click="submit(true)"></a-button>
</div>
</div>
</template>
@ -154,15 +154,20 @@ const getLabel = (type, value) => {
<style lang="scss" scoped>
.modal-content{
padding: 20px;
max-height: calc(100vh - 132px);
margin-bottom: 15px;
overflow: auto;
.content-form{
margin-bottom: 20px;
}
.button-div{
display: flex;
justify-content: end;
.cancel-button{
margin-right: 10px;
}
}
.button-div{
display: flex;
justify-content: end;
padding-left: 20px;
padding-right: 20px;
.cancel-button{
margin-right: 10px;
}
}
</style>

View File

@ -56,12 +56,12 @@
<template v-else>{{ props.modalData.violationReport[item.key] }}</template>
</a-descriptions-item>
</a-descriptions>
<div class="button-div">
<a-input v-if="props.modalType == 'process'" v-model:value="processValue" style="margin-right: 20px;" placeholder="请输入处理意见"/>
<div style="display: flex;">
<a-button class="cancel-button" @click="cancel"></a-button>
<a-button v-if="props.modalType == 'process'" class="save-button" type="primary" @click="submit"></a-button>
</div>
</div>
<div class="button-div">
<a-input v-if="props.modalType == 'process'" v-model:value="processValue" style="margin-right: 20px;" placeholder="请输入处理意见"/>
<div style="display: flex;">
<a-button class="cancel-button" @click="cancel"></a-button>
<a-button v-if="props.modalType == 'process'" class="save-button" type="primary" @click="submit"></a-button>
</div>
</div>
</template>
@ -142,15 +142,20 @@ const getLabel = (type, value) => {
<style lang="scss" scoped>
.modal-content{
padding: 20px;
max-height: calc(100vh - 132px);
margin-bottom: 15px;
overflow: auto;
.content-form{
margin-bottom: 20px;
}
.button-div{
display: flex;
justify-content: end;
.cancel-button{
margin-right: 10px;
}
}
.button-div{
display: flex;
justify-content: end;
padding-left: 20px;
padding-right: 20px;
.cancel-button{
margin-right: 10px;
}
}
</style>