提车审核详情字段对应
parent
7c635fdb68
commit
d56aa87b5d
|
|
@ -53,7 +53,7 @@
|
|||
</template>
|
||||
</a-table>
|
||||
</template>
|
||||
<template v-else>{{ props.modalData.violationReport[item.key] }}</template>
|
||||
<template v-else>{{ props.modalData[item.folder][item.key] }}</template>
|
||||
</a-descriptions-item>
|
||||
</a-descriptions>
|
||||
<a-descriptions title="提车信息" bordered :column="3" style="margin-bottom: 20px;">
|
||||
|
|
@ -68,7 +68,7 @@
|
|||
</a-descriptions-item>
|
||||
</a-descriptions>
|
||||
</div>
|
||||
<div class="button-div">
|
||||
<div class="button-div" v-if="props.modalData.pickupInfo.status == 0">
|
||||
<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>
|
||||
|
|
@ -89,19 +89,19 @@ const emits = defineEmits(['closeModal'])
|
|||
const reviewValue = ref('')
|
||||
|
||||
const showInfoColumn = [
|
||||
{ label: '标题', key: 'title' },
|
||||
{ label: '当事人姓名', key: 'partyName' },
|
||||
{ label: '当事人电话', key: 'partyPhone' },
|
||||
{ label: '违法类型', key: 'violationType' },
|
||||
{ label: '问题描述', key: 'problemDescription' },
|
||||
{ label: '上报人', key: 'reporterName' },
|
||||
{ label: '上报时间', key: 'reportTime' },
|
||||
{ label: '上报单位', key: 'reportUnitName' },
|
||||
{ label: '状态', key: 'status' },
|
||||
{ label: '处理意见', key: 'handlingOpinion' },
|
||||
{ label: '处理单位', key: 'handUnitName' },
|
||||
{ label: '处理人', key: 'handlerName' },
|
||||
{ label: '处理时间', key: 'handlingTime', },
|
||||
{ label: '标题', key: 'title', folder: 'violationReport' },
|
||||
{ label: '当事人姓名', key: 'partyName', folder: 'violationReport' },
|
||||
{ label: '当事人电话', key: 'partyPhone', folder: 'violationReport' },
|
||||
{ label: '违法类型', key: 'violationTypeName', folder: 'violationReport' },
|
||||
{ label: '问题描述', key: 'problemDescription', folder: 'violationReport' },
|
||||
{ label: '上报人', key: 'reporterName', folder: 'violationReport' },
|
||||
{ label: '上报时间', key: 'reportTime', folder: 'violationReport' },
|
||||
{ label: '上报单位', key: 'reportUnitName', folder: 'violationReport' },
|
||||
{ label: '状态', key: 'statusName', folder: 'violationReport' },
|
||||
{ label: '处理意见', key: 'handlingOpinion', folder: 'violationReport' },
|
||||
{ label: '处理单位', key: 'handUnitName', folder: 'violationReport' },
|
||||
{ label: '处理人', key: 'handlerName', folder: 'violationReport' },
|
||||
{ label: '处理时间', key: 'handlingTime', folder: 'violationReport', },
|
||||
{ label: '现场照片', key: 'scenePhotos', span: 2},
|
||||
{ label: '车辆信息', key: 'vehicles', span: 3},
|
||||
]
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
</template>
|
||||
</template>
|
||||
</BasicTable>
|
||||
<a-modal width="100%" wrap-class-name="getcar-show-info-modal" v-model:open="showInfoModalOpen" :title="modalType == 'add'? '添加': '编辑'" :maskClosable="false" :footer="null" :destroyOnClose="true" @cancel="modalClose">
|
||||
<a-modal width="100%" wrap-class-name="getcar-show-info-modal" v-model:open="showInfoModalOpen" title="提车审核" :maskClosable="false" :footer="null" :destroyOnClose="true" @cancel="modalClose">
|
||||
<ShowInfoModal :modalType="modalType" :modalData="modalData" :carTypeOptions="carTypeOptions" @closeModal="closeModal"/>
|
||||
</a-modal>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue