From b20978d0c128c246bfd341ebeefbc70bba3f070d Mon Sep 17 00:00:00 2001 From: qq787203167 <787203167@qq.com> Date: Thu, 23 Jun 2022 15:35:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B8=83=E5=B1=80=E6=B3=95=E8=A7=84=E6=84=8F?= =?UTF-8?q?=E8=A7=81=E6=94=B6=E9=9B=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/src/common/lang/en-us.js | 6 + jero-web/src/common/lang/zh-cn.js | 6 + .../components/modules/fillAdd.vue | 39 +++- .../components/modules/releaseStandard.vue | 207 ++++++++++++++++++ .../components/modules/solicitOpinions.vue | 189 ++++++++++++++++ 5 files changed, 438 insertions(+), 9 deletions(-) create mode 100644 jero-web/src/views/businessSupport/regulationReport/components/modules/releaseStandard.vue create mode 100644 jero-web/src/views/businessSupport/regulationReport/components/modules/solicitOpinions.vue diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js index d691127e2..5cd056194 100644 --- a/jero-web/src/common/lang/en-us.js +++ b/jero-web/src/common/lang/en-us.js @@ -999,6 +999,12 @@ module.exports = { reason:'Reason', feedbackPoint:'Feedback point', link:'Link', + planNoChinese:'Plan No.', + standardNameCn:'Standard Name Cn', + standardNameEn:'Standard Name En', + deadlineForComments:'Deadline for comments', + standardNo:'Standard No', + implemenDate:'Implementation Date', // 上报库 Enable: 'Enable', Latestupdatetime: 'Latest update time', diff --git a/jero-web/src/common/lang/zh-cn.js b/jero-web/src/common/lang/zh-cn.js index 73b064809..5d89b3ac5 100644 --- a/jero-web/src/common/lang/zh-cn.js +++ b/jero-web/src/common/lang/zh-cn.js @@ -1003,7 +1003,13 @@ module.exports = { questionsSuggestions:'问题/建议', link: '链接', reason:'附件', + planNoChinese:'计划号', feedbackPoint:'反馈点', + standardNameCn:'标准名称中文', + standardNameEn:'标准名称英文', + deadlineForComments:'征求意见截止日期', + standardNo:'标准编号', + implemenDate:'实施日期', // 上报库 Enable: '启用', Latestupdatetime: '最新更新时间', diff --git a/jero-web/src/views/businessSupport/regulationReport/components/modules/fillAdd.vue b/jero-web/src/views/businessSupport/regulationReport/components/modules/fillAdd.vue index bbd18a05a..0725fd8db 100644 --- a/jero-web/src/views/businessSupport/regulationReport/components/modules/fillAdd.vue +++ b/jero-web/src/views/businessSupport/regulationReport/components/modules/fillAdd.vue @@ -25,7 +25,7 @@ - +
{{$t('bringInStandardInformation')}}
@@ -68,12 +68,12 @@ class="box-input" :getPopupContainer="triggerNode=> triggerNode.parentNode" allowClear - v-model="formInline.chapterContents"> + v-model="formInline.contentTemplate"> - - {{ item.name }} + :key="item.id" + :value="item.id"> + + {{ item.text }} @@ -81,7 +81,9 @@
- + + +
@@ -94,11 +96,15 @@ + + \ No newline at end of file diff --git a/jero-web/src/views/businessSupport/regulationReport/components/modules/solicitOpinions.vue b/jero-web/src/views/businessSupport/regulationReport/components/modules/solicitOpinions.vue new file mode 100644 index 000000000..c0385f279 --- /dev/null +++ b/jero-web/src/views/businessSupport/regulationReport/components/modules/solicitOpinions.vue @@ -0,0 +1,189 @@ + + + + + + \ No newline at end of file