|
@@ -76,10 +76,9 @@
|
|
|
</a-form>
|
|
|
<div class="__cus-title_1">查验过程记录</div>
|
|
|
<a-timeline>
|
|
|
- <a-timeline-item>Create a services site 2015-09-01</a-timeline-item>
|
|
|
- <a-timeline-item>Solve initial network problems 2015-09-01</a-timeline-item>
|
|
|
- <a-timeline-item>Technical testing 2015-09-01</a-timeline-item>
|
|
|
- <a-timeline-item>Network problems being solved 2015-09-01</a-timeline-item>
|
|
|
+ <template v-for="item in formData.checks">
|
|
|
+ <a-timeline-item>{{ item.createTime }}<span style="margin-left: 20px"/>{{ item.checkStep }}</a-timeline-item>
|
|
|
+ </template>
|
|
|
</a-timeline>
|
|
|
<div class="__cus-title_1">行李物品信息</div>
|
|
|
<a-table
|
|
@@ -180,7 +179,7 @@ const imgOptions = ref({
|
|
|
const onOpen = (record, view = false) => {
|
|
|
open.value = true
|
|
|
if (record) {
|
|
|
- basicApi.passengerinfoDetail({id: record.id}).then(res => {
|
|
|
+ basicApi.passengerinfoDetail({id: record.id, queryType: 1}).then(res => {
|
|
|
formData.value = Object.assign({}, res)
|
|
|
})
|
|
|
}
|
|
@@ -210,4 +209,9 @@ defineExpose({
|
|
|
overflow-y: auto;
|
|
|
overflow-x: hidden;
|
|
|
}
|
|
|
+:deep(.ant-timeline-item-last) {
|
|
|
+ .ant-timeline-item-content {
|
|
|
+ min-height: unset;
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|