add 车型项目库:增删改查

This commit is contained in:
赵霄
2023-09-11 17:34:05 +08:00
parent 9240f9fa55
commit 30f9260fff
11 changed files with 439 additions and 8 deletions
+4 -1
View File
@@ -3,6 +3,7 @@ const personalCenter = require('./personalCenter/en.js')
const standardRegulationLibrary = require('./standardRegulationLibrary/en-us')
const enterpriseStandardLibrary = require('./enterpriseStandardLibrary/en.js')
const businessSupport = require('./businessSupport/en')
const projectLibrary = require('./projectLibrary/en.js')
module.exports = {
// 共用
@@ -526,5 +527,7 @@ module.exports = {
// 企标库
enterpriseStandardLibrary,
// 业务支持
businessSupport
businessSupport,
// 项目库
projectLibrary
}
+15
View File
@@ -0,0 +1,15 @@
module.exports = {
projectName: 'Project name', // 项目名称
workOrderNumber: 'Work order number', // 工作令编号
projectHealthStatus: 'Project health status', // 项目健康状态
// 车型项目库
vehicleItemLibrary: {
vehicleItemLibrary: 'Vehicle item library', // 车型项目库
PMSInfoSynchronization: 'PMS information synchronization', // PMS信息同步
projectSource: 'Project source', // 项目来源
projectName: 'Project name', // 项目名称
projectLeader: 'Project leader', // 项目负责人,
PMSDetails: 'PMS Details' // PMS详情
}
}
+14
View File
@@ -0,0 +1,14 @@
module.exports = {
projectName: '项目名称',
workOrderNumber: '工作令编号',
projectHealthStatus: '项目健康度',
// 车型项目库
vehicleItemLibrary: {
vehicleItemLibrary: '车型项目库',
PMSInfoSynchronization: 'PMS信息同步',
projectSource: '项目来源',
projectLeader: '项目负责人',
PMSDetails: 'PMS详情'
}
}
+4 -1
View File
@@ -3,6 +3,7 @@ const personalCenter = require('./personalCenter/zh.js')
const standardRegulationLibrary = require('./standardRegulationLibrary/zh-cn')
const enterpriseStandardLibrary = require('./enterpriseStandardLibrary/zh.js')
const businessSupport = require('./businessSupport/zh')
const projectLibrary = require('./projectLibrary/zh.js')
module.exports = {
// 共用
@@ -526,5 +527,7 @@ module.exports = {
// 企标库
enterpriseStandardLibrary,
// 业务支持
businessSupport
businessSupport,
// 项目库
projectLibrary
}