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 } }) })