[update] 修改bug87756

This commit is contained in:
lideqin
2024-07-31 17:17:33 +08:00
parent d1c64248ee
commit 28a61e4e00
@@ -40,6 +40,14 @@
<div v-else class="table-text">{{ global.emptyLine }}</div>
</a-tooltip>
</template>
<!-- 清单编号清单名称 -->
<template v-slot:list="text, record">
<a-tooltip overlay-class-name="tooltip-style">
<template slot="title">{{ text || text === 0 ? text : global.emptyLine }}</template>
<a v-if="text" class="link-a" @click="listDetailClick(record)">{{ text }}</a>
<div v-else class="table-text">{{ global.emptyLine }}</div>
</a-tooltip>
</template>
<!-- 解读信息 -->
<template v-slot:interpretingInformation="text, record">
<a v-if="record.splitInfoId" class="link-a" @click="previewStandardResolutionSheet(record.splitInfoId)">{{ $t('view') }}</a>
@@ -219,7 +227,7 @@ export default {
align: 'left',
dataIndex: 'manifestNo',
width: 100,
scopedSlots: { customRender: 'text' },
scopedSlots: { customRender: 'list' },
show: () => {
return [
this.tabList[1].key
@@ -231,7 +239,7 @@ export default {
align: 'left',
dataIndex: 'manifestName',
width: 100,
scopedSlots: { customRender: 'text' },
scopedSlots: { customRender: 'list' },
show: () => {
return [
this.tabList[1].key
@@ -367,6 +375,16 @@ export default {
}
})
},
// 市场清单详情
listDetailClick (record) {
this.$openPageNewSheet({
path: '/standardRegulationLibrary/marketRegulationsList/marketRegulationsDetailPage',
query: {
title: this.$t('view'),
ids: record.id
}
})
},
handleTableChange (pagination) {
this.ipagination = pagination
this.loadData()