|
@@ -160,7 +160,8 @@ const convertData = (data: any) => {
|
|
|
label: 'Service Type',
|
|
label: 'Service Type',
|
|
|
content: data.basicInfo['Service_Type'] || '--'
|
|
content: data.basicInfo['Service_Type'] || '--'
|
|
|
}
|
|
}
|
|
|
- ]
|
|
|
|
|
|
|
+ ],
|
|
|
|
|
+ bol_type: data.basicInfo.bol_type || '--'
|
|
|
},
|
|
},
|
|
|
businessPartners: [
|
|
businessPartners: [
|
|
|
{
|
|
{
|
|
@@ -320,7 +321,16 @@ defineExpose({
|
|
|
Add Reference
|
|
Add Reference
|
|
|
</el-button> -->
|
|
</el-button> -->
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="content" v-if="item.label !== 'Ref No.' && item.type !== 'link'">
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <div
|
|
|
|
|
+ class="content"
|
|
|
|
|
+ v-if="
|
|
|
|
|
+ (item.label !== 'Ref No.' && item.type !== 'link') ||
|
|
|
|
|
+ (item.type === 'link' &&
|
|
|
|
|
+ (allData?.basicInformation?.bol_type?.toLowerCase() === 'booking' ||
|
|
|
|
|
+ item.content === '--'))
|
|
|
|
|
+ "
|
|
|
|
|
+ >
|
|
|
{{ item.content }}
|
|
{{ item.content }}
|
|
|
</div>
|
|
</div>
|
|
|
<div
|
|
<div
|