[update] 修改bug87756
This commit is contained in:
@@ -40,6 +40,14 @@
|
|||||||
<div v-else class="table-text">{{ global.emptyLine }}</div>
|
<div v-else class="table-text">{{ global.emptyLine }}</div>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
</template>
|
</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">
|
<template v-slot:interpretingInformation="text, record">
|
||||||
<a v-if="record.splitInfoId" class="link-a" @click="previewStandardResolutionSheet(record.splitInfoId)">{{ $t('view') }}</a>
|
<a v-if="record.splitInfoId" class="link-a" @click="previewStandardResolutionSheet(record.splitInfoId)">{{ $t('view') }}</a>
|
||||||
@@ -219,7 +227,7 @@ export default {
|
|||||||
align: 'left',
|
align: 'left',
|
||||||
dataIndex: 'manifestNo',
|
dataIndex: 'manifestNo',
|
||||||
width: 100,
|
width: 100,
|
||||||
scopedSlots: { customRender: 'text' },
|
scopedSlots: { customRender: 'list' },
|
||||||
show: () => {
|
show: () => {
|
||||||
return [
|
return [
|
||||||
this.tabList[1].key
|
this.tabList[1].key
|
||||||
@@ -231,7 +239,7 @@ export default {
|
|||||||
align: 'left',
|
align: 'left',
|
||||||
dataIndex: 'manifestName',
|
dataIndex: 'manifestName',
|
||||||
width: 100,
|
width: 100,
|
||||||
scopedSlots: { customRender: 'text' },
|
scopedSlots: { customRender: 'list' },
|
||||||
show: () => {
|
show: () => {
|
||||||
return [
|
return [
|
||||||
this.tabList[1].key
|
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) {
|
handleTableChange (pagination) {
|
||||||
this.ipagination = pagination
|
this.ipagination = pagination
|
||||||
this.loadData()
|
this.loadData()
|
||||||
|
|||||||
Reference in New Issue
Block a user