From 370082809e8a1a24ae6d6409795789007dc75819 Mon Sep 17 00:00:00 2001 From: baoyu <102349094+Bytq@users.noreply.github.com> Date: Mon, 1 Apr 2024 11:28:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=87=E5=87=86/=E8=AF=91=E6=96=87=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=20=E7=AE=A1=E7=90=86=E5=91=98=E5=92=8C=E6=9C=AC?= =?UTF-8?q?=E4=BA=BA=E5=8F=AF=E4=BB=A5=E5=88=A0=E9=99=A4=20=E5=BE=85?= =?UTF-8?q?=E5=8A=9E=E6=A0=87=E8=AE=B0=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/navMenu/index.vue | 2 +- .../components/addModal.vue | 1 + .../components/detailModal.vue | 6 +++--- .../standardTranslationAcquisitionRequest/index.vue | 6 ++++-- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/components/navMenu/index.vue b/src/components/navMenu/index.vue index 5a8f941aa..082a29876 100644 --- a/src/components/navMenu/index.vue +++ b/src/components/navMenu/index.vue @@ -561,7 +561,7 @@ mounted () { this.$http.get('/lawss/standardApplyFor/queryPendingApprovalCount', '', { _this: this }, res => { if (res.ok) { - this.$store.commit('SET_STANDARD_TRANSLATION_TODO', res.data) + this.$store.commit('SET_STANDARD_TRANSLATION_TODO', res.data.pendingApprovalCount) } }) }, diff --git a/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/components/addModal.vue b/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/components/addModal.vue index 57a214440..f2a274dc4 100644 --- a/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/components/addModal.vue +++ b/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/components/addModal.vue @@ -185,6 +185,7 @@ export default { this.$nextTick(() => { this.$refs.addFormRef.clearValidate() this.getDicTypeListCode() + this.standLbList = [] }) }, showModal (item) { diff --git a/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/components/detailModal.vue b/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/components/detailModal.vue index 00c12fcc2..06d4257ea 100644 --- a/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/components/detailModal.vue +++ b/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/components/detailModal.vue @@ -31,7 +31,7 @@ -
{{ StandardApplyForEO.standTypeShow ? StandardApplyForEO.standTypeShow : '--' }}
+
{{ StandardApplyForEO.standTypeShow ? StandardApplyForEO.standTypeShow : '--' }}
@@ -86,7 +86,7 @@ -
{{ StandardApplyForEO.reason ? StandardApplyForEO.reason : '--' }}
+
{{ StandardApplyForEO.reason ? StandardApplyForEO.reason : '--' }}
@@ -104,7 +104,7 @@ -
{{ StandardApplyForEO.refuseCause ? StandardApplyForEO.refuseCause : '--' }}
+
{{ StandardApplyForEO.refuseCause ? StandardApplyForEO.refuseCause : '--' }}
diff --git a/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/index.vue b/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/index.vue index 5dd23956a..444eaff93 100644 --- a/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/index.vue +++ b/src/pages/regulatoryRepository/standardTranslationAcquisitionRequest/index.vue @@ -173,7 +173,7 @@ 重新提交
{ if (res.ok) { - this.$store.commit('SET_STANDARD_TRANSLATION_TODO', res.data) + this.$store.commit('SET_STANDARD_TRANSLATION_TODO', res.data.pendingApprovalCount) + this.moduleAdmin = res.data.isStandardApplyForAdministrator } }) })