diff --git a/src/components/navMenu/index.vue b/src/components/navMenu/index.vue index 3de20a86f..1416669bc 100644 --- a/src/components/navMenu/index.vue +++ b/src/components/navMenu/index.vue @@ -88,6 +88,11 @@ export default { path: '/domesticStandardsAndRegulations', menuId: 'A59EFAQ7AC' }, + { + title: '标准征求意见', + path: '/standardForComments', + menuId: '' + }, // { // title: '海外标准法规', // path: '/foreignStandardsAndRegulations', @@ -250,13 +255,13 @@ export default { // }, ] }, - // { - // title: '标准预警', - // path: '/standardWarning', - // 'icon-class': 'warning', - // menuId: 'ABCLRLJUQN44ENBS93CQ', - // isChildren: true // 判断没有子菜单 - // }, + { + title: '标准预警', + path: '/standardWarning', + 'icon-class': 'warning', + menuId: 'ABCLRLJUQN44ENBS93CQ', + isChildren: true // 判断没有子菜单 + }, // { // title: '技术要求清单', // path: '/skillReq', diff --git a/src/pages/localTool/standardWarning.vue b/src/pages/localTool/standardWarning.vue index 5e84c0435..d1578fbfd 100644 --- a/src/pages/localTool/standardWarning.vue +++ b/src/pages/localTool/standardWarning.vue @@ -3,154 +3,288 @@
-
-
-
实施预警
- - -
- - 更多 - -
-
- 新车型实施日期预警 - - - - - - - - - - - - - - - 在产车实施日期预警 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+
+
+ + +
+
实施预警
+ + +
+ + + + + +
+
+ 新车型实施日期预警 + + + + + + + + + + + + + + + + + + + + + + + + 在产车实施日期预警 + + + + + + + + + + + + + + + + + + + + + + + + 新车型条款预警 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 在产车条款预警 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
实施预警
+
+ 新车型实施日期预警 + + + + + + + + + + + + 在产车实施日期预警 + + + + + + + + + + + +
+
+
+
@@ -164,6 +298,7 @@ export default { name: 'standardWarning', data () { return { + activeName: 'STANDARD', //tab 默认选中值 // 头部搜索框 dynamic: { keyWord: '', @@ -211,6 +346,14 @@ export default { } }, methods: { + //切换tab + handleClick(tab, event) { + console.log(tab, event); + }, + //查找适用车型 + searchBtnClick(){ + console.log('查找适用车型'); + }, /** * @author liruohao * @date 2019/4/25 @@ -695,6 +838,11 @@ export default { } } } + .container{ + /deep/.el-tabs__header{ + height:50px; + } + } .dynamic-content { height: 100%; overflow-y: hidden; diff --git a/src/pages/regulatoryRepository/localProductsOrProjectLibrary/index.vue b/src/pages/regulatoryRepository/localProductsOrProjectLibrary/index.vue index cfd4354df..9c0ca5f97 100644 --- a/src/pages/regulatoryRepository/localProductsOrProjectLibrary/index.vue +++ b/src/pages/regulatoryRepository/localProductsOrProjectLibrary/index.vue @@ -1487,16 +1487,16 @@ export default { // 国家/地区列表 countryList: [], // 国内国外 - regionList: [ - { - label: '国内', - value: 'INLAND' - }, - { - label: '国外', - value: 'FOREIGN' - } - ], + // regionList: [ + // { + // label: '国内', + // value: 'INLAND' + // }, + // { + // label: '国外', + // value: 'FOREIGN' + // } + // ], // 关联列表数据组 relationTableList: [], relationPage: 1, diff --git a/src/pages/regulatoryRepository/standardForComments/index.vue b/src/pages/regulatoryRepository/standardForComments/index.vue new file mode 100644 index 000000000..40fa0c8cd --- /dev/null +++ b/src/pages/regulatoryRepository/standardForComments/index.vue @@ -0,0 +1,524 @@ + +# 标准对比 + + + + + + diff --git a/src/router/index.js b/src/router/index.js index 882f6af9e..559657387 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1855,6 +1855,19 @@ const routes = [ menuId: 'A59EFAQ7AC' } }, + // 标准征求意见 + { + path: '/standardForComments', + name: 'standardForComments', + component: () => + import('@/pages/regulatoryRepository/standardForComments/index'), + meta: { + requireAuth: true, + title: '标准征求意见', + menuId: '' + } + }, + // 本地产品/项目库 { path: '/localProductsOrProjectLibrary',