Merge branch 'develop' of http://gitlab.91isoft.com:90/LAWS/laws-system-front-FOTON into develop
This commit is contained in:
@@ -43,6 +43,7 @@
|
|||||||
:class="{'disabled': disabled}"
|
:class="{'disabled': disabled}"
|
||||||
multiple
|
multiple
|
||||||
drag
|
drag
|
||||||
|
|
||||||
:show-file-list="showUploadlist"
|
:show-file-list="showUploadlist"
|
||||||
:on-success="uploadSuccess"
|
:on-success="uploadSuccess"
|
||||||
:before-upload="beforeUpload"
|
:before-upload="beforeUpload"
|
||||||
|
|||||||
@@ -88,6 +88,16 @@ export default {
|
|||||||
path: '/domesticStandardsAndRegulations',
|
path: '/domesticStandardsAndRegulations',
|
||||||
menuId: '3e3657498664beaa0dc1de1ecb3ae0da'
|
menuId: '3e3657498664beaa0dc1de1ecb3ae0da'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '零部件编号申请',
|
||||||
|
path: '/partCodeApply',
|
||||||
|
menuId: ''
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '标准法规工作组数据统计',
|
||||||
|
path: '/dataStatisComments',
|
||||||
|
menuId: ''
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '海外标准法规',
|
title: '海外标准法规',
|
||||||
path: '/foreignStandardsAndRegulations',
|
path: '/foreignStandardsAndRegulations',
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<template>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "dataStatisComments"
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
@@ -12,8 +12,14 @@
|
|||||||
<el-row style="margin-top: 10px">
|
<el-row style="margin-top: 10px">
|
||||||
<el-col :span="5">产品平台1: <span class="valueColor">{{ localProEO.projectPlatfor }}</span></el-col>
|
<el-col :span="5">产品平台1: <span class="valueColor">{{ localProEO.projectPlatfor }}</span></el-col>
|
||||||
<el-col :span="5" :push="1">项目编号: <span class="valueColor">{{ localProEO.projectNumber }}</span></el-col>
|
<el-col :span="5" :push="1">项目编号: <span class="valueColor">{{ localProEO.projectNumber }}</span></el-col>
|
||||||
<el-col :span="5" :push="2">项目名称: <span class="valueColor">{{ localProEO.projectName }}</span></el-col>
|
<el-col :span="5" :push="2">
|
||||||
<!-- <el-col :span="5" :push="2">车型系列:<span class="valueColor">{{ localProEO.productSet }}</span></el-col>-->
|
<el-tooltip class="item" effect="dark" :content="localProEO.projectName" placement="top">
|
||||||
|
<div slot="content" class="toolip-content" v-if="localProEO.projectName !== undefined && localProEO.projectName.length>15">{{ localProEO.projectName }}</div>
|
||||||
|
<div v-else></div>
|
||||||
|
<div class="check-item-value" v-if="localProEO.projectName !== undefined && localProEO.projectName.length>15">项目名称: <span class="valueColor">{{localProEO.projectName && localProEO.projectName.substring(0,15)+"..." }}</span></div>
|
||||||
|
<div class="check-item-value" v-else>项目名称: <span class="valueColor">{{localProEO.projectName}}</span></div>
|
||||||
|
</el-tooltip>
|
||||||
|
</el-col>
|
||||||
<el-col :span="4" :push="3">项目分类:<span class="valueColor">{{ localProEO.projectClassification }}</span>
|
<el-col :span="4" :push="3">项目分类:<span class="valueColor">{{ localProEO.projectClassification }}</span>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@@ -449,7 +455,7 @@ export default {
|
|||||||
let deleteTagList = []
|
let deleteTagList = []
|
||||||
this.selectList1.forEach(item => {
|
this.selectList1.forEach(item => {
|
||||||
//项目id-标准id,项目id-标准id
|
//项目id-标准id,项目id-标准id
|
||||||
deleteTagList.push( this.proId + '-' + item )
|
deleteTagList.push(this.proId + '-' + item)
|
||||||
})
|
})
|
||||||
this.id = deleteTagList.join(',')
|
this.id = deleteTagList.join(',')
|
||||||
this.$http.post('sarStandProjectLibrary/deleteByIds', {
|
this.$http.post('sarStandProjectLibrary/deleteByIds', {
|
||||||
@@ -726,6 +732,7 @@ export default {
|
|||||||
this.standSortOptions = res.data.STANDCLASSIFY // 标准类别
|
this.standSortOptions = res.data.STANDCLASSIFY // 标准类别
|
||||||
this.setMap(this.zrbmMap, res.data.ZRBMCLASS)
|
this.setMap(this.zrbmMap, res.data.ZRBMCLASS)
|
||||||
this.setMap(this.textStatusMap, res.data.WBZTCLASS)
|
this.setMap(this.textStatusMap, res.data.WBZTCLASS)
|
||||||
|
console.log(this.getLocalPro)
|
||||||
this.showLocalProductData(this.getLocalPro)
|
this.showLocalProductData(this.getLocalPro)
|
||||||
}, e => {
|
}, e => {
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<template>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "partCodeApply"
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
@@ -103,8 +103,8 @@
|
|||||||
align="center"
|
align="center"
|
||||||
:label="$t('m.issueTime')">
|
:label="$t('m.issueTime')">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div v-if="scope.row.issue_time !== null && scope.row.issue_time !== undefined">
|
<div v-if="scope.row.issueTime !== null && scope.row.issueTime !== undefined">
|
||||||
{{ dateFormat2(scope.row.issue_time) }}
|
{{ dateFormat2(scope.row.issueTime) }}
|
||||||
</div>
|
</div>
|
||||||
<div v-else></div>
|
<div v-else></div>
|
||||||
</template>
|
</template>
|
||||||
@@ -973,7 +973,7 @@
|
|||||||
option.title = '监管类型'
|
option.title = '监管类型'
|
||||||
option.index = 12
|
option.index = 12
|
||||||
break
|
break
|
||||||
case 'CYSDXX':
|
case 'WSCYSD':
|
||||||
option.title = '我司参与深度'
|
option.title = '我司参与深度'
|
||||||
option.index = 13
|
option.index = 13
|
||||||
break
|
break
|
||||||
@@ -1003,6 +1003,7 @@
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.searchOriginOptions = this.searchOptions
|
this.searchOriginOptions = this.searchOptions
|
||||||
|
console.log(this.searchOriginOptions)
|
||||||
this.saveAllSortOptions = res.data.STANDCLASSIFY
|
this.saveAllSortOptions = res.data.STANDCLASSIFY
|
||||||
this.saveAllFineOptions = res.data.BUSSFINECLASSSHOW
|
this.saveAllFineOptions = res.data.BUSSFINECLASSSHOW
|
||||||
this.lawssStateOptions = res.data.LAWSSTATE // 文本状态数组
|
this.lawssStateOptions = res.data.LAWSSTATE // 文本状态数组
|
||||||
@@ -1027,20 +1028,20 @@
|
|||||||
filterOptions.standSort = originOptions.standSort
|
filterOptions.standSort = originOptions.standSort
|
||||||
filterOptions.standSort.index = 1
|
filterOptions.standSort.index = 1
|
||||||
// 标准状态
|
// 标准状态
|
||||||
filterOptions.standState = originOptions.standState
|
// filterOptions.standState = originOptions.standState
|
||||||
filterOptions.standState.title = '标准状态'
|
// filterOptions.standState.title = '标准状态'
|
||||||
filterOptions.standState.index = 2
|
// filterOptions.standState.index = 2
|
||||||
// 我司参与状态
|
// 我司参与状态
|
||||||
filterOptions.CYSD = originOptions.CYSD
|
filterOptions.CYSD = originOptions.CYSD
|
||||||
filterOptions.CYSD.title = '我司参与深度'
|
filterOptions.CYSD.title = '我司参与深度'
|
||||||
filterOptions.CYSD.index = 3
|
filterOptions.CYSD.index = 2
|
||||||
// 监管类型
|
// 监管类型
|
||||||
filterOptions.ZRLX = originOptions.ZRLX
|
// filterOptions.ZRLX = originOptions.ZRLX
|
||||||
filterOptions.ZRLX.title = '监管类型'
|
// filterOptions.ZRLX.title = '监管类型'
|
||||||
filterOptions.ZRLX.index = 4
|
// filterOptions.ZRLX.index = 4
|
||||||
// 适用车辆类型
|
// 适用车辆类型
|
||||||
filterOptions.CLLX = originOptions.CLLX
|
filterOptions.CLLX = originOptions.CLLX
|
||||||
filterOptions.CLLX.index = 5
|
filterOptions.CLLX.index = 3
|
||||||
// 采标程度
|
// 采标程度
|
||||||
// filterOptions.CBCD = originOptions.CBCD
|
// filterOptions.CBCD = originOptions.CBCD
|
||||||
// filterOptions.CBCD.index = 6
|
// filterOptions.CBCD.index = 6
|
||||||
@@ -1322,7 +1323,7 @@
|
|||||||
return 'bussBigClass'
|
return 'bussBigClass'
|
||||||
case 'ACCESSTYPE':
|
case 'ACCESSTYPE':
|
||||||
return 'ZRLX'
|
return 'ZRLX'
|
||||||
case 'CYSDXX':
|
case 'WSCYSD':
|
||||||
return 'CYSD'
|
return 'CYSD'
|
||||||
default:
|
default:
|
||||||
return key
|
return key
|
||||||
|
|||||||
@@ -1097,6 +1097,30 @@ const routes = [
|
|||||||
menuId: 'A59EFAQ7AC'
|
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',
|
path: '/standardForComments',
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
// 服务器地址
|
// 服务器地址
|
||||||
// const devIp = '10.96.10.171'
|
// const devIp = '10.96.10.171'
|
||||||
// const devInterfacePORT = '9999'
|
// const devInterfacePORT = '9999'
|
||||||
const devIp = '10.96.170.156'
|
const devIp = 'localhost'
|
||||||
const devInterfacePORT = '9999'
|
const devInterfacePORT = '9999'
|
||||||
// 云端端口号
|
// 云端端口号
|
||||||
const DEV_CLOUD_RES_INTERFACE_PORT = '7777'
|
const DEV_CLOUD_RES_INTERFACE_PORT = '7777'
|
||||||
@@ -31,7 +31,7 @@ const processPort = '17210'
|
|||||||
*****************************************************************/
|
*****************************************************************/
|
||||||
// 生产环境配置
|
// 生产环境配置
|
||||||
const prodIp = '62.234.136.153'
|
const prodIp = '62.234.136.153'
|
||||||
const prodInterfacePORT = '8038'
|
const prodInterfacePORT = '8033'
|
||||||
|
|
||||||
|
|
||||||
// 判断环境
|
// 判断环境
|
||||||
|
|||||||
Reference in New Issue
Block a user