|
@@ -76,20 +76,20 @@
|
|
|
<a-space>
|
|
|
<a-image :width="200" :src="formData.driverSign" />
|
|
|
</a-space>
|
|
|
- <a-divider></a-divider>
|
|
|
- <a-descriptions title="司机回签" style="margin-top: 15px">
|
|
|
+ <a-divider v-if="formData.orderType == '1'"></a-divider>
|
|
|
+ <a-descriptions title="司机回签" style="margin-top: 15px" v-if="formData.orderType == '1'">
|
|
|
<a-descriptions-item label="卸货重量"><a-tag color="green">{{ formData.unloadWeight }} 吨</a-tag></a-descriptions-item>
|
|
|
</a-descriptions>
|
|
|
- <a-space>
|
|
|
+ <a-space v-if="formData.orderType == '1'">
|
|
|
<div v-for="(item,index) in fileList " :key="item.value">
|
|
|
<a-image :width="200" :src="item.url" />
|
|
|
</div>
|
|
|
|
|
|
</a-space>
|
|
|
- <a-divider></a-divider>
|
|
|
- <a-descriptions title="签收审核" style="margin-top: 15px">
|
|
|
+ <a-divider v-if="formData.orderType == '1'"></a-divider>
|
|
|
+ <a-descriptions title="签收审核" style="margin-top: 15px" v-if="formData.orderType == '1'">
|
|
|
</a-descriptions>
|
|
|
- <a-space>
|
|
|
+ <a-space v-if="formData.orderType == '1'">
|
|
|
<a-image :width="200" :src="formData.auditSign" />
|
|
|
</a-space>
|
|
|
<template #footer>
|