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 8f5a892f1..ba0dfdad9 100644 --- a/src/components/navMenu/index.vue +++ b/src/components/navMenu/index.vue @@ -88,6 +88,16 @@ export default { path: '/domesticStandardsAndRegulations', menuId: '3e3657498664beaa0dc1de1ecb3ae0da' }, + { + title: '零部件编号申请', + path: '/partCodeApply', + menuId: '' + }, + { + 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/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/details.vue b/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/details.vue index 5c3888699..ffaa965d6 100644 --- a/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/details.vue +++ b/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/details.vue @@ -12,8 +12,14 @@ 产品平台1: {{ localProEO.projectPlatfor }} 项目编号: {{ localProEO.projectNumber }} - 项目名称: {{ localProEO.projectName }} - + + +
{{ localProEO.projectName }}
+
+
项目名称: {{localProEO.projectName && localProEO.projectName.substring(0,15)+"..." }}
+
项目名称: {{localProEO.projectName}}
+
+
项目分类:{{ localProEO.projectClassification }}
@@ -449,7 +455,7 @@ export default { let deleteTagList = [] this.selectList1.forEach(item => { //项目id-标准id,项目id-标准id - deleteTagList.push( this.proId + '-' + item ) + deleteTagList.push(this.proId + '-' + item) }) this.id = deleteTagList.join(',') this.$http.post('sarStandProjectLibrary/deleteByIds', { @@ -726,6 +732,7 @@ export default { this.standSortOptions = res.data.STANDCLASSIFY // 标准类别 this.setMap(this.zrbmMap, res.data.ZRBMCLASS) this.setMap(this.textStatusMap, res.data.WBZTCLASS) + console.log(this.getLocalPro) this.showLocalProductData(this.getLocalPro) }, e => { }) diff --git a/src/pages/regulatoryRepository/partCodeApply/index.vue b/src/pages/regulatoryRepository/partCodeApply/index.vue new file mode 100644 index 000000000..4fb363ee1 --- /dev/null +++ b/src/pages/regulatoryRepository/partCodeApply/index.vue @@ -0,0 +1,13 @@ + + + + + diff --git a/src/pages/searchCenter/pages/standardSearch.vue b/src/pages/searchCenter/pages/standardSearch.vue index 445de500b..3b70f1a4a 100644 --- a/src/pages/searchCenter/pages/standardSearch.vue +++ b/src/pages/searchCenter/pages/standardSearch.vue @@ -103,8 +103,8 @@ align="center" :label="$t('m.issueTime')"> @@ -973,7 +973,7 @@ option.title = '监管类型' option.index = 12 break - case 'CYSDXX': + case 'WSCYSD': option.title = '我司参与深度' option.index = 13 break @@ -1003,6 +1003,7 @@ }) } this.searchOriginOptions = this.searchOptions + console.log(this.searchOriginOptions) this.saveAllSortOptions = res.data.STANDCLASSIFY this.saveAllFineOptions = res.data.BUSSFINECLASSSHOW this.lawssStateOptions = res.data.LAWSSTATE // 文本状态数组 @@ -1027,20 +1028,20 @@ filterOptions.standSort = originOptions.standSort filterOptions.standSort.index = 1 // 标准状态 - filterOptions.standState = originOptions.standState - filterOptions.standState.title = '标准状态' - filterOptions.standState.index = 2 + // filterOptions.standState = originOptions.standState + // filterOptions.standState.title = '标准状态' + // filterOptions.standState.index = 2 // 我司参与状态 filterOptions.CYSD = originOptions.CYSD filterOptions.CYSD.title = '我司参与深度' - filterOptions.CYSD.index = 3 + filterOptions.CYSD.index = 2 // 监管类型 - filterOptions.ZRLX = originOptions.ZRLX - filterOptions.ZRLX.title = '监管类型' - filterOptions.ZRLX.index = 4 + // filterOptions.ZRLX = originOptions.ZRLX + // filterOptions.ZRLX.title = '监管类型' + // filterOptions.ZRLX.index = 4 // 适用车辆类型 filterOptions.CLLX = originOptions.CLLX - filterOptions.CLLX.index = 5 + filterOptions.CLLX.index = 3 // 采标程度 // filterOptions.CBCD = originOptions.CBCD // filterOptions.CBCD.index = 6 @@ -1322,7 +1323,7 @@ return 'bussBigClass' case 'ACCESSTYPE': return 'ZRLX' - case 'CYSDXX': + case 'WSCYSD': return 'CYSD' default: return key diff --git a/src/router/index.js b/src/router/index.js index 590a4b6f0..010ac773b 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1097,6 +1097,30 @@ const routes = [ menuId: 'A59EFAQ7AC' } }, + //零部件编号申请 + { + path: '/partCodeApply', + name: 'partCodeApply', + component: () => + import('@/pages/regulatoryRepository/partCodeApply/index'), + meta: { + requireAuth: true, + title: '零部件编号申请', + menuId: '' + } + }, + //标准法规工作组数据统计 + { + path: '/dataStatisComments', + name: 'dataStatisComments', + component: () => + import('@/pages/regulatoryRepository/dataStatis/index'), + meta: { + requireAuth: true, + title: '标准法规工作组数据统计', + menuId: '' + } + }, // 标准征求意见 { path: '/standardForComments', diff --git a/src/sysConfig/index.js b/src/sysConfig/index.js index d2960cf5d..8571d2d34 100644 --- a/src/sysConfig/index.js +++ b/src/sysConfig/index.js @@ -6,7 +6,7 @@ // 服务器地址 // const devIp = '10.96.10.171' // const devInterfacePORT = '9999' -const devIp = '10.96.170.156' +const devIp = 'localhost' const devInterfacePORT = '9999' // 云端端口号 const DEV_CLOUD_RES_INTERFACE_PORT = '7777' @@ -31,7 +31,7 @@ const processPort = '17210' *****************************************************************/ // 生产环境配置 const prodIp = '62.234.136.153' -const prodInterfacePORT = '8038' +const prodInterfacePORT = '8033' // 判断环境