From c289c23ec1b96a80354a6a0f042a974d6bedc010 Mon Sep 17 00:00:00 2001 From: qq787203167 <787203167@qq.com> Date: Wed, 30 Mar 2022 17:47:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=A6=85=E9=81=93=E5=B7=B2?= =?UTF-8?q?=E7=9F=A5bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/src/common/lang/en-us.js | 1 + jero-web/src/common/lang/zh-cn.js | 2 +- .../library/docDetail/index.vue | 21 +++++++++++++++++-- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js index d28c7bb59..8cc16f45f 100644 --- a/jero-web/src/common/lang/en-us.js +++ b/jero-web/src/common/lang/en-us.js @@ -562,5 +562,6 @@ module.exports = { documentSplitTemplate:'document split template', batSetting:'batch setting', selectDirectoryTerms:'please select the directory location to add terms', + StandardBreakdown:"Standard breakdown", } \ No newline at end of file diff --git a/jero-web/src/common/lang/zh-cn.js b/jero-web/src/common/lang/zh-cn.js index 8920a8222..390a9ae1a 100644 --- a/jero-web/src/common/lang/zh-cn.js +++ b/jero-web/src/common/lang/zh-cn.js @@ -566,5 +566,5 @@ module.exports = { documentSplitTemplate:'文档拆分模板', batSetting:'批量设置', selectDirectoryTerms:'请选择添加条款的目录位置', - + StandardBreakdown:'标准分解单', } \ No newline at end of file diff --git a/jero-web/src/views/documentManage/library/docDetail/index.vue b/jero-web/src/views/documentManage/library/docDetail/index.vue index f41cb40c4..412df61c7 100644 --- a/jero-web/src/views/documentManage/library/docDetail/index.vue +++ b/jero-web/src/views/documentManage/library/docDetail/index.vue @@ -90,6 +90,7 @@ @click="pdfPreview(ol.value)"> {{ol.value ? ol.value.fileName : '--'}} + {{$t('StandardBreakdown')}} @@ -334,13 +335,21 @@ this.visibleRelated = true this.dataSourceRelated = val.list } + }, + breakdown(item) { + this.$router.push({ + path: '/docManage/splitting/splitDetail', + query: { + infoId: item.splitInfoId + } + }) } } } \ No newline at end of file