diff --git a/src/components/selection/MarketRegulationsListSelectionModal.vue b/src/components/selection/MarketRegulationsListSelectionModal.vue index 47ceb92..937a561 100644 --- a/src/components/selection/MarketRegulationsListSelectionModal.vue +++ b/src/components/selection/MarketRegulationsListSelectionModal.vue @@ -87,21 +87,8 @@ {{ text || text === 0 ? text : global.emptyLine }} - {{ text || text === 0 ? text : global.emptyLine }} - - - - - - - - - - - - - {{ text || text === 0 ? ('V' + text + '.0') : global.emptyLine }} - {{ text || text === 0 ? ('V' + text + '.0') : global.emptyLine }} + {{ text }} + {{ global.emptyLine }} @@ -208,7 +195,7 @@ export default { align: 'center', width: 180, dataIndex: 'manifestVersion', - scopedSlots: { customRender: 'manifestVersion' } + scopedSlots: { customRender: 'text' } }, { // 发布时间 title: this.$t('standardRegulationLibrary.marketRegulationsList.releaseTime'), @@ -358,11 +345,12 @@ export default { }, // 点击跳转标准详情 handleGoDetail (record) { - let path = '' + const path = '/standardRegulationLibrary/marketRegulationsList/marketRegulationsDetailPage' this.$openPageNewSheet({ path: path, query: { - id: record.id + ids: record.id, + title: this.$t('view') } }) } diff --git a/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsDetailPage.vue b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsDetailPage.vue index 8c94303..6535325 100644 --- a/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsDetailPage.vue +++ b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsDetailPage.vue @@ -20,7 +20,7 @@ {{ $t('standardRegulationLibrary.marketRegulationsList.listName') }} - {{ model.manifest.mainfestName || global.emptyLine }} + {{ model.manifest.manifestName || global.emptyLine }} diff --git a/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue index ef319a9..650ec24 100644 --- a/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue +++ b/src/views/standardRegulationLibrary/marketRegulationsList/MarketRegulationsFormPage.vue @@ -496,7 +496,7 @@ export default { showList: false, // 是否展示清单 url: { importExcelUrl: '/laws/marketStandardDetail/importExcel', - downTemplateUrl: '' + downTemplateUrl: '/laws/marketStandardDetail/downloadTemplate' } } },