diff --git a/src/components/CustomFormComponents/File.vue b/src/components/CustomFormComponents/File.vue index 611f46333..f21179876 100644 --- a/src/components/CustomFormComponents/File.vue +++ b/src/components/CustomFormComponents/File.vue @@ -43,6 +43,7 @@ :class="{'disabled': disabled}" multiple drag + :show-file-list="showUploadlist" :on-success="uploadSuccess" :before-upload="beforeUpload" diff --git a/src/components/navMenu/index.vue b/src/components/navMenu/index.vue index 5f429c122..1feddb37c 100644 --- a/src/components/navMenu/index.vue +++ b/src/components/navMenu/index.vue @@ -88,6 +88,11 @@ export default { path: '/domesticStandardsAndRegulations', menuId: '3e3657498664beaa0dc1de1ecb3ae0da' }, + { + title: '标准法规工作组数据统计', + path: '/dataStatisComments', + menuId: '' + }, { title: '海外标准法规', path: '/foreignStandardsAndRegulations', diff --git a/src/pages/regulatoryRepository/dataStatis/index.vue b/src/pages/regulatoryRepository/dataStatis/index.vue new file mode 100644 index 000000000..3ada7755b --- /dev/null +++ b/src/pages/regulatoryRepository/dataStatis/index.vue @@ -0,0 +1,13 @@ + + + + + diff --git a/src/router/index.js b/src/router/index.js index 590a4b6f0..95ce6e580 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1097,6 +1097,18 @@ const routes = [ menuId: 'A59EFAQ7AC' } }, + //标准法规工作组数据统计 + { + path: '/dataStatisComments', + name: 'dataStatisComments', + component: () => + import('@/pages/regulatoryRepository/dataStatis/index'), + meta: { + requireAuth: true, + title: '标准法规工作组数据统计', + menuId: '' + } + }, // 标准征求意见 { path: '/standardForComments',