上报违法列表和提车列表详情过长显示效果优化
parent
615ae4239d
commit
a659ac566c
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue