Merge branch 'dev' of https://git.qcloud.com/joylink/jl-nclient into dev
This commit is contained in:
commit
850f492b45
@ -2,158 +2,158 @@ import request from '@/utils/request';
|
|||||||
|
|
||||||
/** 获取发布地图管理分页*/
|
/** 获取发布地图管理分页*/
|
||||||
export function getPublishMapList(params) {
|
export function getPublishMapList(params) {
|
||||||
return request({
|
return request({
|
||||||
url: '/api/map',
|
url: '/api/map',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params: params
|
params: params
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 根据皮肤获取发布地图列表*/
|
/** 根据皮肤获取发布地图列表*/
|
||||||
export function getPublishMapListBySkinCode(skinCode) {
|
export function getPublishMapListBySkinCode(skinCode) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${skinCode}/list`,
|
url: `/api/map/${skinCode}/list`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 根据皮肤获取地图版本信息*/
|
/** 根据皮肤获取地图版本信息*/
|
||||||
export function getPublishMapVersion(skinCode) {
|
export function getPublishMapVersion(skinCode) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/skin/${skinCode}/version`,
|
url: `/api/map/skin/${skinCode}/version`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 根据皮肤获取发布地图详细内容*/
|
/** 根据皮肤获取发布地图详细内容*/
|
||||||
export function getPublishMapDetail(skinCode) {
|
export function getPublishMapDetail(skinCode) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/skin/${skinCode}/details`,
|
url: `/api/map/skin/${skinCode}/details`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 根据地图id获取地图版本信息*/
|
/** 根据地图id获取地图版本信息*/
|
||||||
export function getPublishMapVersionById(id) {
|
export function getPublishMapVersionById(id) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${id}/version`,
|
url: `/api/map/${id}/version`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 根据地图id获取发布地图详细内容*/
|
/** 根据地图id获取发布地图详细内容*/
|
||||||
export function getPublishMapDetailById(id) {
|
export function getPublishMapDetailById(id) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${id}/details`,
|
url: `/api/map/${id}/details`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 获取发布地图列车列表*/
|
/** 获取发布地图列车列表*/
|
||||||
export function getPublishTrainList(skinCode) {
|
export function getPublishTrainList(skinCode) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${skinCode}/train`,
|
url: `/api/map/${skinCode}/train`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 获取发布地图列表*/
|
/** 获取发布地图列表*/
|
||||||
export function listPublishMap(params) {
|
export function listPublishMap(params) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/list`,
|
url: `/api/map/list`,
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params
|
params
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 根据地图id获取地图信息*/
|
/** 根据地图id获取地图信息*/
|
||||||
export function getPublishMapInfo(mapId) {
|
export function getPublishMapInfo(mapId) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${mapId}`,
|
url: `/api/map/${mapId}`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 发布地图数据导出*/
|
/** 发布地图数据导出*/
|
||||||
export function getPublishMapExport(mapId) {
|
export function getPublishMapExport(mapId) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${mapId}/export`,
|
url: `/api/map/${mapId}/export`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 删除发布地图*/
|
/** 删除发布地图*/
|
||||||
export function delPublishMap(mapId) {
|
export function delPublishMap(mapId) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${mapId}`,
|
url: `/api/map/${mapId}`,
|
||||||
method: 'DELETE'
|
method: 'DELETE'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 发布地图上架*/
|
/** 发布地图上架*/
|
||||||
export function putMapOnLine(mapId) {
|
export function putMapOnLine(mapId) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${mapId}/onLine`,
|
url: `/api/map/${mapId}/onLine`,
|
||||||
method: 'put'
|
method: 'put'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 发布地图下架*/
|
/** 发布地图下架*/
|
||||||
export function putMapOffLine(mapId) {
|
export function putMapOffLine(mapId) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${mapId}/offLine`,
|
url: `/api/map/${mapId}/offLine`,
|
||||||
method: 'put'
|
method: 'put'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 修改发布地图名称*/
|
/** 修改发布地图名称*/
|
||||||
export function updatePublishMapName(data) {
|
export function updatePublishMapName(data) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${data.mapId}/updateName`,
|
url: `/api/map/${data.mapId}/updateName`,
|
||||||
method: 'put',
|
method: 'put',
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 获取发布地图详情*/
|
/** 获取发布地图详情*/
|
||||||
export function getPublishMapDetailList(params, code) {
|
export function getPublishMapDetailList(params, code) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${code}/versions`,
|
url: `/api/map/${code}/versions`,
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params: params
|
params: params
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 获取有屏蔽门的站台列表*/
|
/** 获取有屏蔽门的站台列表*/
|
||||||
export function hasDoorStationList(mapId) {
|
export function hasDoorStationList(mapId) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${mapId}/stand/hasDoor`,
|
url: `/api/map/${mapId}/stand/hasDoor`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 修改发布地图城市*/
|
/** 修改发布地图城市*/
|
||||||
export function updatePublishMapCity(data) {
|
export function updatePublishMapCity(data) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${data.mapId}/city`,
|
url: `/api/map/${data.mapId}/city`,
|
||||||
method: 'put',
|
method: 'put',
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 设置归属项目 */
|
/** 设置归属项目 */
|
||||||
export function setMapProject(data) {
|
export function setMapProject(data) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/${data.id}/project`,
|
url: `/api/map/${data.id}/project`,
|
||||||
method: 'put',
|
method: 'put',
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 根据定制项目编号查询地图列表 */
|
/** 根据定制项目编号查询地图列表 */
|
||||||
export function getMapListByProjectCode(projectCode) {
|
export function getMapListByProjectCode(projectCode) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/map/project/${projectCode}/list`,
|
url: `/api/map/project/${projectCode}/list`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -1,95 +1,95 @@
|
|||||||
import request from '@/utils/request';
|
import request from '@/utils/request';
|
||||||
|
|
||||||
export function getTrainingSystemList(cityCode, params) {
|
export function getTrainingSystemList(cityCode, params) {
|
||||||
/** 根据cityCode后去对应地图及其子系统 */
|
/** 根据cityCode后去对应地图及其子系统 */
|
||||||
return request({
|
return request({
|
||||||
url: `/api/mapSystem/city/${cityCode}`,
|
url: `/api/mapSystem/city/${cityCode}`,
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params
|
params
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function querySystemByTypeAndPrdCode(params, prodCode) {
|
export function querySystemByTypeAndPrdCode(params, prodCode) {
|
||||||
/** 根据系统类型和地图产品code查询系统的内容(课程、章节、考试)*/
|
/** 根据系统类型和地图产品code查询系统的内容(课程、章节、考试)*/
|
||||||
return request({
|
return request({
|
||||||
url: `/api/mapSystem/queryByTypeAndPrdCode/${prodCode}`,
|
url: `/api/mapSystem/queryByTypeAndPrdCode/${prodCode}`,
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params
|
params
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getTrainingSystemListByMapId(mapId) {
|
export function getTrainingSystemListByMapId(mapId) {
|
||||||
/** 根据mapId去获取其子系统 */
|
/** 根据mapId去获取其子系统 */
|
||||||
return request({
|
return request({
|
||||||
url: `/api/mapSystem/${mapId}`,
|
url: `/api/mapSystem/${mapId}`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function generateMapSystem(mapId) {
|
export function generateMapSystem(mapId) {
|
||||||
/** 根据mapId生成地图子系统 */
|
/** 根据mapId生成地图子系统 */
|
||||||
return request({
|
return request({
|
||||||
url: `/api/mapSystem/generate/${mapId}`,
|
url: `/api/mapSystem/generate/${mapId}`,
|
||||||
method: 'post'
|
method: 'post'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getSubSystemInfo(id) {
|
export function getSubSystemInfo(id) {
|
||||||
/** 查询子系统信息 */
|
/** 查询子系统信息 */
|
||||||
return request({
|
return request({
|
||||||
url: `/api/mapSystem/${id}`,
|
url: `/api/mapSystem/${id}`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getSubSystemDetail(id) {
|
export function getSubSystemDetail(id) {
|
||||||
/** 查询子系统详情*/
|
/** 查询子系统详情*/
|
||||||
return request({
|
return request({
|
||||||
url: `/api/mapSystem/${id}/detail`,
|
url: `/api/mapSystem/${id}/detail`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getMapSystemPageList(params) {
|
export function getMapSystemPageList(params) {
|
||||||
/** 分页查询地图系统 */
|
/** 分页查询地图系统 */
|
||||||
return request({
|
return request({
|
||||||
url: `/api/mapSystem`,
|
url: `/api/mapSystem`,
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params
|
params
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function createMapSubSystem(data) {
|
export function createMapSubSystem(data) {
|
||||||
/** 创建地图系统 */
|
/** 创建地图系统 */
|
||||||
return request({
|
return request({
|
||||||
url: `/api/mapSystem`,
|
url: `/api/mapSystem`,
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function updateSubSystem(id, data) {
|
export function updateSubSystem(id, data) {
|
||||||
/** 查询子系统信息 */
|
/** 查询子系统信息 */
|
||||||
return request({
|
return request({
|
||||||
url: `/api/mapSystem/${id}`,
|
url: `/api/mapSystem/${id}`,
|
||||||
method: 'put',
|
method: 'put',
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function deleteSubSystem(id) {
|
export function deleteSubSystem(id) {
|
||||||
/** 删除地图系统 */
|
/** 删除地图系统 */
|
||||||
return request({
|
return request({
|
||||||
url: `/api/mapSystem/${id}`,
|
url: `/api/mapSystem/${id}`,
|
||||||
method: 'delete'
|
method: 'delete'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getSubSystemByProjectCode(projectCode) {
|
export function getSubSystemByProjectCode(projectCode) {
|
||||||
/** 根据项目编号查询地图子系统 */
|
/** 根据项目编号查询地图子系统 */
|
||||||
return request({
|
return request({
|
||||||
url: `/api/mapSystem/project/${projectCode}`,
|
url: `/api/mapSystem/project/${projectCode}`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,197 +1,197 @@
|
|||||||
export default {
|
export default {
|
||||||
// lanuage: 'en',
|
// lanuage: 'en',
|
||||||
offset: 'Offset',
|
offset: 'Offset',
|
||||||
zoom: 'Zoom',
|
zoom: 'Zoom',
|
||||||
tips: 'Tips',
|
tips: 'Tips',
|
||||||
confirm: 'Confirm',
|
confirm: 'Confirm',
|
||||||
cancel: 'Cancel',
|
cancel: 'Cancel',
|
||||||
save: 'save',
|
save: 'save',
|
||||||
reset: 'Reset',
|
reset: 'Reset',
|
||||||
coachingModel: 'Coaching model',
|
coachingModel: 'Coaching model',
|
||||||
normalMode: 'Normal mode',
|
normalMode: 'Normal mode',
|
||||||
operate: 'Operate',
|
operate: 'Operate',
|
||||||
edit: 'Edit',
|
edit: 'Edit',
|
||||||
delete: 'Delete',
|
delete: 'Delete',
|
||||||
add: 'Add',
|
add: 'Add',
|
||||||
query: 'Query',
|
query: 'Query',
|
||||||
detail: 'Details',
|
detail: 'Details',
|
||||||
quickEntry: 'Quick entry',
|
quickEntry: 'Quick entry',
|
||||||
scan: 'Scan',
|
scan: 'Scan',
|
||||||
chooseDate: 'Please choose the date',
|
chooseDate: 'Please choose the date',
|
||||||
chooseTime: 'Please choose the time',
|
chooseTime: 'Please choose the time',
|
||||||
chooseDateTime: 'Please choose the date and time',
|
chooseDateTime: 'Please choose the date and time',
|
||||||
choose: 'Please choose',
|
choose: 'Please choose',
|
||||||
select: 'Select',
|
select: 'Select',
|
||||||
selectAdd: 'Select Add',
|
selectAdd: 'Select Add',
|
||||||
export: 'Export',
|
export: 'Export',
|
||||||
to: 'To',
|
to: 'To',
|
||||||
close: 'Close',
|
close: 'Close',
|
||||||
back: 'Back',
|
back: 'Back',
|
||||||
chooseCityAndRoute: 'Please choose cities and routes',
|
chooseCityAndRoute: 'Please choose cities and routes',
|
||||||
font: 'Font',
|
font: 'Font',
|
||||||
size: 'Size',
|
size: 'Size',
|
||||||
distributeQrcode: 'Privilege Distribution Two-Dimensional Code',
|
distributeQrcode: 'Privilege Distribution Two-Dimensional Code',
|
||||||
remainPermissionNumber: 'Number of remaining maximum permissions',
|
remainPermissionNumber: 'Number of remaining maximum permissions',
|
||||||
distributeLessonPermission: 'Distribution of Privileges in Classes',
|
distributeLessonPermission: 'Distribution of Privileges in Classes',
|
||||||
distributeExamPermission: 'Distribution of Examination Authority',
|
distributeExamPermission: 'Distribution of Examination Authority',
|
||||||
distributeSimulationPermission: 'Distribution of simulation privileges',
|
distributeSimulationPermission: 'Distribution of simulation privileges',
|
||||||
distributeScreenPermission: 'Large Screen Privilege Distribution',
|
distributeScreenPermission: 'Large Screen Privilege Distribution',
|
||||||
email: 'Email',
|
email: 'Email',
|
||||||
nickName: 'nickname',
|
nickName: 'nickname',
|
||||||
mobile: 'mobile',
|
mobile: 'mobile',
|
||||||
name: 'Name',
|
name: 'Name',
|
||||||
compellation: 'Name',
|
compellation: 'Name',
|
||||||
code: 'Code',
|
code: 'Code',
|
||||||
status: 'State',
|
status: 'State',
|
||||||
remarks: 'Remarks',
|
remarks: 'Remarks',
|
||||||
sendCode: 'Send verification code',
|
sendCode: 'Send verification code',
|
||||||
verificationCode: 'verification code',
|
verificationCode: 'verification code',
|
||||||
enterEmail: 'Please enter email',
|
enterEmail: 'Please enter email',
|
||||||
passWord: 'passWord',
|
passWord: 'passWord',
|
||||||
newPassWord: 'new password',
|
newPassWord: 'new password',
|
||||||
enterPassWord: 'Please enter your new password',
|
enterPassWord: 'Please enter your new password',
|
||||||
enterMobile: 'Please enter your cell phone number',
|
enterMobile: 'Please enter your cell phone number',
|
||||||
enterNickname: 'Please enter nickname',
|
enterNickname: 'Please enter nickname',
|
||||||
enterName: 'Please enter name',
|
enterName: 'Please enter name',
|
||||||
passWordLength: 'New password length cannot be less than 5 digits',
|
passWordLength: 'New password length cannot be less than 5 digits',
|
||||||
passWordSome: 'Please fill in the password',
|
passWordSome: 'Please fill in the password',
|
||||||
codeFaile: 'Failed to obtain captcha',
|
codeFaile: 'Failed to obtain captcha',
|
||||||
selectionTime: 'Selection of time',
|
selectionTime: 'Selection of time',
|
||||||
permissionNumber: 'Number of permissions',
|
permissionNumber: 'Number of permissions',
|
||||||
pleaseInputPermissionNumber: 'Please enter the number of permissions',
|
pleaseInputPermissionNumber: 'Please enter the number of permissions',
|
||||||
permissionGreaterThen0: 'The number of permissions must be greater than 0',
|
permissionGreaterThen0: 'The number of permissions must be greater than 0',
|
||||||
enterStartTime: 'Please enter the start time',
|
enterStartTime: 'Please enter the start time',
|
||||||
enterEndTime: 'Please enter the end time',
|
enterEndTime: 'Please enter the end time',
|
||||||
enterDate: 'Input date',
|
enterDate: 'Input date',
|
||||||
transferQrcode: 'Privilege Transfer Two-Dimensional Code',
|
transferQrcode: 'Privilege Transfer Two-Dimensional Code',
|
||||||
transferLessonPermission: 'Transfer of Class Authority',
|
transferLessonPermission: 'Transfer of Class Authority',
|
||||||
transferExamPermission: 'Transfer of Examination Authority',
|
transferExamPermission: 'Transfer of Examination Authority',
|
||||||
transferSimulationPermission: 'Transfer of simulation privileges',
|
transferSimulationPermission: 'Transfer of simulation privileges',
|
||||||
transferScreenPermission: 'Large screen rights transfer',
|
transferScreenPermission: 'Large screen rights transfer',
|
||||||
today: 'Today',
|
today: 'Today',
|
||||||
total: 'Total',
|
total: 'Total',
|
||||||
index: 'Index',
|
index: 'Index',
|
||||||
startTime: 'Start',
|
startTime: 'Start',
|
||||||
sendMobileCode: 'Send phone code',
|
sendMobileCode: 'Send phone code',
|
||||||
enterMobileNumber: 'Please bind mobile phone number',
|
enterMobileNumber: 'Please bind mobile phone number',
|
||||||
endTime: 'End',
|
endTime: 'End',
|
||||||
isForever: 'Timelimit',
|
isForever: 'Timelimit',
|
||||||
remains: 'Remaining',
|
remains: 'Remaining',
|
||||||
hasPermissionTip: 'Public permission is {0}, private permission is {1}',
|
hasPermissionTip: 'Public permission {0}, private permission {1}',
|
||||||
create: 'Create',
|
create: 'Create',
|
||||||
update: 'Update',
|
update: 'Update',
|
||||||
return: 'Return',
|
return: 'Return',
|
||||||
toBeDeveloped: 'Functions to be developed',
|
toBeDeveloped: 'Functions to be developed',
|
||||||
yuan: '¥',
|
yuan: '¥',
|
||||||
filteringKeywords: 'Enter keywords for filtering',
|
filteringKeywords: 'Enter keywords for filtering',
|
||||||
lastStep: 'Last Step',
|
lastStep: 'Last Step',
|
||||||
nextStep: 'Next Step ',
|
nextStep: 'Next Step ',
|
||||||
skip: 'Skip',
|
skip: 'Skip',
|
||||||
modify: 'Modify',
|
modify: 'Modify',
|
||||||
language: 'Language',
|
language: 'Language',
|
||||||
exit: 'Exit',
|
exit: 'Exit',
|
||||||
chooseLanguage: 'Please choose the language',
|
chooseLanguage: 'Please choose the language',
|
||||||
switchLanguage: 'Switch language',
|
switchLanguage: 'Switch language',
|
||||||
joinRoom: 'Join Room',
|
joinRoom: 'Join Room',
|
||||||
synthesisTrainingTitle: 'Synthesis Training Fast Entrance',
|
synthesisTrainingTitle: 'Synthesis Training Fast Entrance',
|
||||||
pleaseChooseRoom: 'You did not choose a room',
|
pleaseChooseRoom: 'You did not choose a room',
|
||||||
inviteJoinRoom: 'Invite you to join the synthesis training!',
|
inviteJoinRoom: 'Invite you to join the synthesis training!',
|
||||||
trainingHasStart: "{name}'s room (starting)",
|
trainingHasStart: "{name}'s room (starting)",
|
||||||
trainingNotStart: "{name}'s room (not starting)",
|
trainingNotStart: "{name}'s room (not starting)",
|
||||||
inputRoomNumber: 'Please enter the room number.',
|
inputRoomNumber: 'Please enter the room number.',
|
||||||
chooseRoom: 'Choose Room',
|
chooseRoom: 'Choose Room',
|
||||||
codeError: 'The captcha is incorrect',
|
codeError: 'The captcha is incorrect',
|
||||||
|
|
||||||
month: ' month',
|
month: ' month',
|
||||||
indexA: ' piece',
|
indexA: ' piece',
|
||||||
purchasePrice: 'Total Price: ',
|
purchasePrice: 'Total Price: ',
|
||||||
permissionNum: 'Permission Num: ',
|
permissionNum: 'Permission Num: ',
|
||||||
submitOrders: 'Submit orders',
|
submitOrders: 'Submit orders',
|
||||||
completePayment: 'Complete payment',
|
completePayment: 'Complete payment',
|
||||||
weChatPay: 'WeChat Pay',
|
weChatPay: 'WeChat Pay',
|
||||||
alipayPayment: 'AliPay',
|
alipayPayment: 'AliPay',
|
||||||
clickRefresh: 'Please click to refresh',
|
clickRefresh: 'Please click to refresh',
|
||||||
checkstand: 'Checkstand',
|
checkstand: 'Checkstand',
|
||||||
permissionType: 'Permission Type: ',
|
permissionType: 'Permission Type: ',
|
||||||
productName: 'Product Name',
|
productName: 'Product Name',
|
||||||
simulationPrice: 'Simulation Unit Price',
|
simulationPrice: 'Simulation Unit Price',
|
||||||
yuanMonth: 'yuan/month',
|
yuanMonth: 'yuan/month',
|
||||||
permissions: ' permissions',
|
permissions: ' permissions',
|
||||||
purchaseDuration: 'Purchase Duration: ',
|
purchaseDuration: 'Purchase Duration: ',
|
||||||
custom: 'custom',
|
custom: 'custom',
|
||||||
january: 'One month',
|
january: 'One month',
|
||||||
march: 'Three months',
|
march: 'Three months',
|
||||||
year: 'One year',
|
year: 'One year',
|
||||||
twoYears: 'Two years',
|
twoYears: 'Two years',
|
||||||
fiveYears: 'Five years',
|
fiveYears: 'Five years',
|
||||||
tenYears: 'Ten years',
|
tenYears: 'Ten years',
|
||||||
orderCode: 'Order Code: ',
|
orderCode: 'Order Code: ',
|
||||||
creationTime: 'Create Time: ',
|
creationTime: 'Create Time: ',
|
||||||
amountPayable: 'Amounts Payable: ',
|
amountPayable: 'Amounts Payable: ',
|
||||||
screenName: 'Screen Name',
|
screenName: 'Screen Name',
|
||||||
courseName: 'Course Name',
|
courseName: 'Course Name',
|
||||||
timeUnitPrice: 'Screen Unit Price',
|
timeUnitPrice: 'Screen Unit Price',
|
||||||
coursePrice: 'Course Unit Price',
|
coursePrice: 'Course Unit Price',
|
||||||
testPrice: 'Test Unit Price',
|
testPrice: 'Test Unit Price',
|
||||||
|
|
||||||
buyProject: 'The products you will purchase are virtual content services. After purchase, you will not be able to return, transfer or exchange. Please confirm.',
|
buyProject: 'The products you will purchase are virtual content services. After purchase, you will not be able to return, transfer or exchange. Please confirm.',
|
||||||
relatedServices: 'You can view and use the related services in the “Permissions Details” area after purchase.',
|
relatedServices: 'You can view and use the related services in the “Permissions Details” area after purchase.',
|
||||||
paymentSuccessful: 'Payment successful,click to return',
|
paymentSuccessful: 'Payment successful,click to return',
|
||||||
cancelSuccessfully: 'Cancel success,click to return',
|
cancelSuccessfully: 'Cancel success,click to return',
|
||||||
paymentFailed: 'Payment failed,click to return',
|
paymentFailed: 'Payment failed,click to return',
|
||||||
previousStep: 'Previous step',
|
previousStep: 'Previous step',
|
||||||
|
|
||||||
putaway: 'Putaway',
|
putaway: 'Putaway',
|
||||||
soldOut: 'Sold out',
|
soldOut: 'Sold out',
|
||||||
exportMap: 'Export Map',
|
exportMap: 'Export Map',
|
||||||
preview: 'Preview',
|
preview: 'Preview',
|
||||||
notBeUse: 'This function is not enabled for the time being',
|
notBeUse: 'This function is not enabled for the time being',
|
||||||
fastCreate: 'Quickly Create',
|
fastCreate: 'Quickly Create',
|
||||||
duration: 'duration',
|
duration: 'duration',
|
||||||
isTry: 'Try',
|
isTry: 'Try',
|
||||||
buy: 'Buy',
|
buy: 'Buy',
|
||||||
distributePermission: 'Distribute permission',
|
distributePermission: 'Distribute permission',
|
||||||
transferQRCode: 'Transfer QRCode',
|
transferQRCode: 'Transfer QRCode',
|
||||||
minutes: 'minutes',
|
minutes: 'minutes',
|
||||||
minute: 'minute',
|
minute: 'minute',
|
||||||
totoal: 'Totoal',
|
totoal: 'Totoal',
|
||||||
publishPermission: 'The public authority',
|
publishPermission: 'The public authority',
|
||||||
specialPermission: 'Special permission',
|
specialPermission: 'Special permission',
|
||||||
mapList: 'Map list',
|
mapList: 'Map list',
|
||||||
updateTime: 'Update time:',
|
updateTime: 'Update time:',
|
||||||
line: 'Line:',
|
line: 'Line:',
|
||||||
permissionList: 'Permissions list:',
|
permissionList: 'Permissions list:',
|
||||||
remove: 'Remove',
|
remove: 'Remove',
|
||||||
append: 'Append',
|
append: 'Append',
|
||||||
release: 'Release',
|
release: 'Release',
|
||||||
temporarilyNoData: 'Temporarily no data',
|
temporarilyNoData: 'Temporarily no data',
|
||||||
second: 'Seconds',
|
second: 'Seconds',
|
||||||
amount: 'Amount',
|
amount: 'Amount',
|
||||||
yes: 'Yes',
|
yes: 'Yes',
|
||||||
no: 'No',
|
no: 'No',
|
||||||
details: 'Details',
|
details: 'Details',
|
||||||
enterNameToFilter: 'Enter a name to filter',
|
enterNameToFilter: 'Enter a name to filter',
|
||||||
colon: ':',
|
colon: ':',
|
||||||
processFailure: 'Process failure',
|
processFailure: 'Process failure',
|
||||||
enterLastStep: 'Please enter a hint and click next',
|
enterLastStep: 'Please enter a hint and click next',
|
||||||
pleaseOpearte: 'Please proceed',
|
pleaseOpearte: 'Please proceed',
|
||||||
help: 'help',
|
help: 'help',
|
||||||
city: 'City',
|
city: 'City',
|
||||||
simulationSystem: 'The simulation system',
|
simulationSystem: 'The simulation system',
|
||||||
lessonSystem: 'The lesson system',
|
lessonSystem: 'The lesson system',
|
||||||
examSystem: 'The exam system',
|
examSystem: 'The exam system',
|
||||||
runPlanSystem: 'The run plan system',
|
runPlanSystem: 'The run plan system',
|
||||||
personalDetails: 'information',
|
personalDetails: 'information',
|
||||||
trainingPlatformEntrance: 'Training platform entrance',
|
trainingPlatformEntrance: 'Training platform entrance',
|
||||||
designPlatformEntrance: 'Design platform entrance',
|
designPlatformEntrance: 'Design platform entrance',
|
||||||
|
|
||||||
china: 'China',
|
china: 'China',
|
||||||
australia: 'Australia',
|
australia: 'Australia',
|
||||||
england: 'England',
|
england: 'England',
|
||||||
hongKong: 'Hong Kong',
|
hongKong: 'Hong Kong',
|
||||||
japanese: 'Japanese',
|
japanese: 'Japanese',
|
||||||
macao: 'Macao',
|
macao: 'Macao',
|
||||||
singapore: 'Singapore',
|
singapore: 'Singapore',
|
||||||
taiwan: 'taiwan',
|
taiwan: 'taiwan',
|
||||||
america: 'America'
|
america: 'America'
|
||||||
};
|
};
|
||||||
|
@ -1,237 +1,240 @@
|
|||||||
export default {
|
export default {
|
||||||
updateStation: {
|
updateStation: {
|
||||||
level1: 'level1: ',
|
level1: 'level1: ',
|
||||||
level2: 'level2: ',
|
level2: 'level2: ',
|
||||||
level3: 'level3: ',
|
level3: 'level3: ',
|
||||||
level4: 'level4: ',
|
level4: 'level4: ',
|
||||||
level5: 'level5: ',
|
level5: 'level5: ',
|
||||||
updateData: 'Update data',
|
updateData: 'Update data',
|
||||||
pleaseInputLevel1: 'Please input level1',
|
pleaseInputLevel1: 'Please input level1',
|
||||||
pleaseInputLevel2: 'Please input level2',
|
pleaseInputLevel2: 'Please input level2',
|
||||||
pleaseInputLevel3: 'Please input level3',
|
pleaseInputLevel3: 'Please input level3',
|
||||||
pleaseInputLevel4: 'Please input level4',
|
pleaseInputLevel4: 'Please input level4',
|
||||||
pleaseInputLevel5: 'Please input level5',
|
pleaseInputLevel5: 'Please input level5',
|
||||||
systemOutPut: 'System output',
|
systemOutPut: 'System output',
|
||||||
selectPrintArea: 'Selec print area',
|
selectPrintArea: 'Selec print area',
|
||||||
selectDeleteRoute: 'Select delete route',
|
selectDeleteRoute: 'Select delete route',
|
||||||
routeSelect: 'Route select',
|
routeSelect: 'Route select',
|
||||||
quicklyAddTask: 'Quickly add task',
|
quicklyAddTask: 'Quickly add task',
|
||||||
quicklyAddLoop: 'Quickly add loop',
|
quicklyAddLoop: 'Quickly add loop',
|
||||||
deletePlanCar: 'Delete plan car'
|
deletePlanCar: 'Delete plan car'
|
||||||
},
|
},
|
||||||
openRunPlan: {
|
openRunPlan: {
|
||||||
selectRunplan: 'Select run graph',
|
selectRunplan: 'Select run graph',
|
||||||
delete: 'Delete',
|
delete: 'Delete',
|
||||||
modify: 'Modify',
|
modify: 'Modify',
|
||||||
runPlanList: 'Run graph list',
|
runPlanList: 'Run graph list',
|
||||||
getRunPlanListFail: 'Get run graph list Failed',
|
getRunPlanListFail: 'Get run graph list Failed',
|
||||||
confirmDeleteRunPlan: 'Are you sure to delete this run graph?',
|
confirmDeleteRunPlan: 'Are you sure to delete this run graph?',
|
||||||
deleteSuccess: 'Delete success!',
|
deleteSuccess: 'Delete success!',
|
||||||
pleaseSelectRunplan: 'please select run graph'
|
pleaseSelectRunplan: 'please select run graph'
|
||||||
},
|
},
|
||||||
modifying: {
|
modifying: {
|
||||||
tripNumber: 'Trip number: ',
|
tripNumber: 'Trip number: ',
|
||||||
pleaseSelect: 'Please select',
|
pleaseSelect: 'Please select',
|
||||||
manual: 'Manual',
|
manual: 'Manual',
|
||||||
defaultStopTime: 'Default stop time',
|
defaultStopTime: 'Default stop time',
|
||||||
serviceNumber: 'Service number: ',
|
serviceNumber: 'Service number: ',
|
||||||
clearGuest: 'Clear guest',
|
clearGuest: 'Clear guest',
|
||||||
continuationPlan: 'Continuation plan',
|
continuationPlan: 'Continuation plan',
|
||||||
firstTrain: 'First train',
|
firstTrain: 'First train',
|
||||||
serialNumber: 'Serial number: ',
|
serialNumber: 'Serial number: ',
|
||||||
defaultRunLevel: 'Default run level: ',
|
defaultRunLevel: 'Default run level: ',
|
||||||
startTime: 'Start Time:',
|
startTime: 'Start Time:',
|
||||||
selectTime: 'Select Time',
|
selectTime: 'Select Time',
|
||||||
inStock: 'In Stock',
|
inStock: 'In Stock',
|
||||||
outStock: 'Out Stock',
|
outStock: 'Out Stock',
|
||||||
lastTrain: 'Last Train',
|
lastTrain: 'Last Train',
|
||||||
route: 'Route: ',
|
route: 'Route: ',
|
||||||
// 起始站
|
// 起始站
|
||||||
// 起始区段
|
// 起始区段
|
||||||
// 终到站
|
// 终到站
|
||||||
// 终到区段
|
// 终到区段
|
||||||
// 描述
|
// 描述
|
||||||
detail: 'Detail: ',
|
detail: 'Detail: ',
|
||||||
station: 'Station',
|
station: 'Station',
|
||||||
section: 'Section',
|
section: 'Section',
|
||||||
stopTime: 'Stop time',
|
stopTime: 'Stop time',
|
||||||
runLevel: 'Run level',
|
runLevel: 'Run level',
|
||||||
arrivalTime: 'Arrival time',
|
arrivalTime: 'Arrival time',
|
||||||
departureTime: 'Departure time',
|
departureTime: 'Departure time',
|
||||||
showDefaultTime: 'Show default stop time and run level',
|
showDefaultTime: 'Show default stop time and run level',
|
||||||
automatic: 'Automatic',
|
automatic: 'Automatic',
|
||||||
default: 'Default',
|
default: 'Default',
|
||||||
modifyTask: 'Modify task',
|
modifyTask: 'Modify task',
|
||||||
setMessageTip1: 'Please set the start interval of the start section',
|
setMessageTip1: 'Please set the start interval of the start section',
|
||||||
setMessageTip2: 'to the section',
|
setMessageTip2: 'to the section',
|
||||||
setMessageTip3: '.',
|
setMessageTip3: '.',
|
||||||
modifyTaskSuccess: 'Modify task success!',
|
modifyTaskSuccess: 'Modify task success!',
|
||||||
modifyTaskFailed: 'Modify task failed',
|
modifyTaskFailed: 'Modify task failed',
|
||||||
|
|
||||||
startingStation: 'Start station',
|
startingStation: 'Start station',
|
||||||
startSection: 'Start section',
|
startSection: 'Start section',
|
||||||
endStation: 'End station',
|
endStation: 'End station',
|
||||||
endSection: 'End section',
|
endSection: 'End section',
|
||||||
direction: 'Direction',
|
direction: 'Direction',
|
||||||
distance: 'Distance',
|
distance: 'Distance',
|
||||||
operation: 'Operation',
|
operation: 'Operation',
|
||||||
edit: 'Edit',
|
edit: 'Edit',
|
||||||
save: 'Save',
|
save: 'Save',
|
||||||
cancelAndQuit: 'Cancel and quit',
|
cancelAndQuit: 'Cancel and quit',
|
||||||
modifySuccess: 'Modify Success',
|
modifySuccess: 'Modify Success',
|
||||||
modifyFailed: 'Modify Failed',
|
modifyFailed: 'Modify Failed',
|
||||||
modifyRunLevel: 'Modify run level',
|
modifyRunLevel: 'Modify run level',
|
||||||
|
|
||||||
startStationTips: 'Start station departure time unchanged',
|
startStationTips: 'Start station departure time unchanged',
|
||||||
endStationTips: 'End station departure time unchanged',
|
endStationTips: 'End station departure time unchanged',
|
||||||
startStationTitle: 'Start station',
|
startStationTitle: 'Start station',
|
||||||
startedStation: 'Start station',
|
startedStation: 'Start station',
|
||||||
endStationTitle: 'End station',
|
endStationTitle: 'End station',
|
||||||
endedStation: 'End station',
|
endedStation: 'End station',
|
||||||
description: 'Description',
|
description: 'Description',
|
||||||
modifyTaskRoute: 'Modify task route',
|
modifyTaskRoute: 'Modify task route',
|
||||||
|
|
||||||
modifyStartTime: 'Modify start time: ',
|
modifyStartTime: 'Modify start time: ',
|
||||||
modifyStartTimeTitle: 'Modify start time',
|
modifyStartTimeTitle: 'Modify start time',
|
||||||
search: 'Search',
|
search: 'Search',
|
||||||
modifyTwoStationTime: 'Modify the time between the two stations'
|
modifyTwoStationTime: 'Modify the time between the two stations'
|
||||||
},
|
},
|
||||||
editSmoothRun: {
|
editSmoothRun: {
|
||||||
trainProportion: 'Train proportion',
|
trainProportion: 'Train proportion',
|
||||||
allTheLoopTrainProportion: 'Use the same size loop train proportion for all time periods',
|
allTheLoopTrainProportion: 'Use the same size loop train proportion for all time periods',
|
||||||
sizeOfTheLoopTrainProportion: 'Large loop and small loop train proportion',
|
sizeOfTheLoopTrainProportion: 'Large loop and small loop train proportion',
|
||||||
pleaseSelect: 'Please select',
|
pleaseSelect: 'Please select',
|
||||||
startTime: 'Start time',
|
startTime: 'Start time',
|
||||||
stopTime: 'Stop time',
|
stopTime: 'Stop time',
|
||||||
runInterval: 'Run interval',
|
runInterval: 'Run interval',
|
||||||
add: 'Add',
|
add: 'Add',
|
||||||
delete: 'Delete',
|
delete: 'Delete',
|
||||||
modify: 'Modify',
|
modify: 'Modify',
|
||||||
editSmoothRunTime: 'Edit smooth run time'
|
editSmoothRunTime: 'Edit smooth run time'
|
||||||
},
|
},
|
||||||
buy: 'Buy',
|
buy: 'Buy',
|
||||||
offlineMappingSoftware: 'Offline mapping software',
|
offlineMappingSoftware: 'Offline mapping software',
|
||||||
lianPlanSystem: 'Urban rail transit lian planning system',
|
lianPlanSystem: 'Urban rail transit lian planning system',
|
||||||
lianPlanDescription: 'Lian plan is a map compiling test system, can be real simulation to achieve the simulation of running test of new operation diagram, the system can realize editing operation diagram, import operation diagram and according to the standard of operation diagram simulation real driving environment, solve the problem that can not be updated for operation diagram test. It can find out the unreasonable places in the new diagram in time and make real-time adjustment on the diagram, so as to avoid the problem of finding problems in the operation of the new diagram and requiring manual intervention of dispatchers, and minimize the impact of the fault on the normal operation of subway.',
|
lianPlanDescription: 'Lian plan is a map compiling test system, can be real simulation to achieve the simulation of running test of new operation diagram, the system can realize editing operation diagram, import operation diagram and according to the standard of operation diagram simulation real driving environment, solve the problem that can not be updated for operation diagram test. It can find out the unreasonable places in the new diagram in time and make real-time adjustment on the diagram, so as to avoid the problem of finding problems in the operation of the new diagram and requiring manual intervention of dispatchers, and minimize the impact of the fault on the normal operation of subway.',
|
||||||
loopName: 'Loop name',
|
loopName: 'Loop name',
|
||||||
startingStation: 'Starting station',
|
startingStation: 'Starting station',
|
||||||
terminal: 'Terminal',
|
terminal: 'Terminal',
|
||||||
planName: 'Plan name',
|
planName: 'Plan name',
|
||||||
fuzhouIconDescription: 'Fuzhou icon description',
|
fuzhouIconDescription: 'Fuzhou icon description',
|
||||||
upBeginTripNumber: 'Up begin trip number',
|
upBeginTripNumber: 'Up begin trip number',
|
||||||
downBeginTrain: 'Down begin train',
|
downBeginTrain: 'Down begin train',
|
||||||
minimumTrainInterval: 'Minimum train interval',
|
minimumTrainInterval: 'Minimum train interval',
|
||||||
maximumTrainInterval: 'Maximum train interval',
|
maximumTrainInterval: 'Maximum train interval',
|
||||||
trainGeneratesInitialLabel: 'Train generates initial label',
|
trainGeneratesInitialLabel: 'Train generates initial label',
|
||||||
minimumTurnbackTime: 'Minimum turnback time',
|
minimumTurnbackTime: 'Minimum turnback time',
|
||||||
trainDepot: 'Train depot',
|
trainDepot: 'Train depot',
|
||||||
startingPlatform: 'Starting Platform',
|
startingPlatform: 'Starting Platform',
|
||||||
endingPlatform: 'Ending Platform',
|
endingPlatform: 'Ending Platform',
|
||||||
station: 'Station',
|
station: 'Station',
|
||||||
modifyAttribute: 'Modify attribute',
|
modifyAttribute: 'Modify attribute',
|
||||||
generalParameters: 'General parameters',
|
generalParameters: 'General parameters',
|
||||||
editingStation: 'Editing station',
|
editingStation: 'Editing station',
|
||||||
editDepot: 'Edit parking lot / depot',
|
editDepot: 'Edit parking lot / depot',
|
||||||
editCrossRailway: 'Edit cross railway',
|
editCrossRailway: 'Edit cross railway',
|
||||||
editLoopRailway: 'Edit loop railway',
|
editLoopRailway: 'Edit loop railway',
|
||||||
application: 'Application (A)',
|
application: 'Application (A)',
|
||||||
parameter: 'Parameter',
|
parameter: 'Parameter',
|
||||||
numberOfTrainsAvailable: 'Number of trains available',
|
numberOfTrainsAvailable: 'Number of trains available',
|
||||||
continuousMinimumInterval: 'Continuous minimum interval',
|
continuousMinimumInterval: 'Continuous minimum interval',
|
||||||
continuousReturnMaximumInterval: 'Continuous return maximum interval',
|
continuousReturnMaximumInterval: 'Continuous return maximum interval',
|
||||||
afterTheTrainHasBackInterval: 'After the train has a back interval',
|
afterTheTrainHasBackInterval: 'After the train has a back interval',
|
||||||
secondsCanBeRunnedByTrain: 'seconds can be runned by train',
|
secondsCanBeRunnedByTrain: 'seconds can be runned by train',
|
||||||
defaultStopTime: 'Default stop time:',
|
defaultStopTime: 'Default stop time:',
|
||||||
defaultRunLevel: 'Default run level:',
|
defaultRunLevel: 'Default run level:',
|
||||||
stopTime: 'Stop time',
|
stopTime: 'Stop time',
|
||||||
runLevel: 'Run level',
|
runLevel: 'Run level',
|
||||||
platform: 'Platform',
|
platform: 'Platform',
|
||||||
modifyPlatformProperties: 'Modify platform properties',
|
modifyPlatformProperties: 'Modify platform properties',
|
||||||
file: 'File',
|
file: 'File',
|
||||||
openRunningDiagram: 'Open run graph',
|
openRunningDiagram: 'Open run graph',
|
||||||
createRunningDiagram: 'Create run graph',
|
createRunningDiagram: 'Create run graph',
|
||||||
modifyRunningDiagramName: 'Modify run graph name',
|
modifyRunningDiagramName: 'Modify run graph name',
|
||||||
modifyStationIntervalTime: 'Modify station interval time',
|
modifyStationIntervalTime: 'Modify station interval time',
|
||||||
deleteRunningDiagram: 'Delete run graph',
|
deleteRunningDiagram: 'Delete run graph',
|
||||||
view: 'View',
|
view: 'View',
|
||||||
tool: 'Tool',
|
tool: 'Tool',
|
||||||
validityCheck: 'Validity check',
|
validityCheck: 'Validity check',
|
||||||
testRunningDiagram: 'Test run graph',
|
testRunningDiagram: 'Test run graph',
|
||||||
modify: 'Modify',
|
modify: 'Modify',
|
||||||
addPlan: 'Add plan',
|
addPlan: 'Add plan',
|
||||||
deletePlan: 'Delete plan',
|
deletePlan: 'Delete plan',
|
||||||
duplicatePlan: 'Duplicate plan',
|
duplicatePlan: 'Duplicate plan',
|
||||||
addTask: 'Add task',
|
addTask: 'Add task',
|
||||||
deleteTask: 'Delete task',
|
deleteTask: 'Delete task',
|
||||||
modifyTask: 'Modify task',
|
modifyTask: 'Modify task',
|
||||||
option: 'Option',
|
option: 'Option',
|
||||||
help: 'Help',
|
help: 'Help',
|
||||||
implemented: 'implementing......',
|
implemented: 'implementing......',
|
||||||
server1: 'Server 1',
|
server1: 'Server 1',
|
||||||
server2: 'Server 2',
|
server2: 'Server 2',
|
||||||
frontMachine1: 'Front machine 1',
|
frontMachine1: 'Front machine 1',
|
||||||
frontMachine2: 'Front machine 2',
|
frontMachine2: 'Front machine 2',
|
||||||
mainDispatcher: 'Main dispatcher',
|
mainDispatcher: 'Main dispatcher',
|
||||||
dispatcher1: 'Dispatcher1',
|
dispatcher1: 'Dispatcher1',
|
||||||
dispatcher2: 'Dispatcher2',
|
dispatcher2: 'Dispatcher2',
|
||||||
dispatcher3: 'Dispatcher3',
|
dispatcher3: 'Dispatcher3',
|
||||||
bigScreen: 'Big screen',
|
bigScreen: 'Big screen',
|
||||||
maintenanceWorkstation: 'Maintenance workstation',
|
maintenanceWorkstation: 'Maintenance workstation',
|
||||||
runGraphShowManualStation: 'Run graph show manual station',
|
runGraphShowManualStation: 'Run graph show manual station',
|
||||||
jumpStop: 'Jump stop',
|
jumpStop: 'Jump stop',
|
||||||
detainTrain: 'Detain train',
|
detainTrain: 'Detain train',
|
||||||
trainAlarm: 'Train alarm',
|
trainAlarm: 'Train alarm',
|
||||||
serviceNumber: 'Service number',
|
serviceNumber: 'Service number',
|
||||||
tripNumber: 'Trip number',
|
tripNumber: 'Trip number',
|
||||||
stationName: 'Station name:',
|
stationName: 'Station name:',
|
||||||
stationKilometerMark: 'Station kilometer mark:',
|
stationKilometerMark: 'Station kilometer mark:',
|
||||||
arriveTime: 'Arrive time:',
|
arriveTime: 'Arrive time:',
|
||||||
serviceAndTripNumber: 'Service And trip number',
|
serviceAndTripNumber: 'Service And trip number',
|
||||||
testRunning: 'Test running',
|
testRunning: 'Test running',
|
||||||
serviceNumber2: 'Service number',
|
serviceNumber2: 'Service number',
|
||||||
addPlanTrain: 'Add plan train',
|
addPlanTrain: 'Add plan train',
|
||||||
trainRunningTimeInterval: 'Train running time interval',
|
trainRunningTimeInterval: 'Train running time interval',
|
||||||
sizeOfTheLoopTrainProportion: 'The size of the loop car proportion',
|
sizeOfTheLoopTrainProportion: 'The size of the loop car proportion',
|
||||||
applicationRouteSelection: 'Application route selection',
|
applicationRouteSelection: 'Application route selection',
|
||||||
bothway: 'bothway',
|
bothway: 'bothway',
|
||||||
up: 'up',
|
up: 'up',
|
||||||
down: 'down',
|
down: 'down',
|
||||||
runningInterval: 'Running interval',
|
runningInterval: 'Running interval',
|
||||||
addASmoothRunningTime: 'Add a smooth running time',
|
addASmoothRunningTime: 'Add a smooth running time',
|
||||||
addToTheFront: 'Add to the front',
|
addToTheFront: 'Add to the front',
|
||||||
addToTheEnd: 'Add to the end',
|
addToTheEnd: 'Add to the end',
|
||||||
crossRailway: 'Cross railway',
|
crossRailway: 'Cross railway',
|
||||||
startingSection: 'Starting section',
|
startingSection: 'Starting section',
|
||||||
description: 'Description',
|
description: 'Description',
|
||||||
section: 'Section',
|
section: 'Section',
|
||||||
departureTime: 'departureTime',
|
departureTime: 'departureTime',
|
||||||
showDefaultStopTimeAndRunLevel: 'Show default stop time and run level',
|
showDefaultStopTimeAndRunLevel: 'Show default stop time and run level',
|
||||||
automatic: 'Automatic',
|
automatic: 'Automatic',
|
||||||
default: 'Default',
|
default: 'Default',
|
||||||
addTaskHint1: 'Please set the section running time of the start section ',
|
addTaskHint1: 'Please set the section running time of the start section ',
|
||||||
addTaskHint2: 'to the section',
|
addTaskHint2: 'to the section',
|
||||||
addTaskHint3: '',
|
addTaskHint3: '',
|
||||||
normalNew: 'Normal new',
|
normalNew: 'Normal new',
|
||||||
createFromTheReleaseRunGraph: 'Create from the release run graph',
|
createFromTheReleaseRunGraph: 'Create from the release run graph',
|
||||||
releaseRunGraph: 'Release run graph',
|
releaseRunGraph: 'Release run graph',
|
||||||
newRunGraph: 'New run graph',
|
newRunGraph: 'New run graph',
|
||||||
deleteAllPreviousTasks: 'Delete all previous tasks (including this task)',
|
deleteAllPreviousTasks: 'Delete all previous tasks (including this task)',
|
||||||
deleteAllSubsequentTasks: 'Delete all subsequent tasks (including this task)',
|
deleteAllSubsequentTasks: 'Delete all subsequent tasks (including this task)',
|
||||||
forward: 'Forward',
|
forward: 'Forward',
|
||||||
backward: 'Backward',
|
backward: 'Backward',
|
||||||
frequency: 'Frequency:',
|
frequency: 'Frequency:',
|
||||||
intervals: 'Intervals:',
|
intervals: 'Intervals:',
|
||||||
duplicateTrain: 'Duplicate train',
|
duplicateTrain: 'Duplicate train',
|
||||||
commissioningTrain: 'Commissioning train',
|
commissioningTrain: 'Commissioning train',
|
||||||
task: 'Task',
|
task: 'Task',
|
||||||
startTime: 'Start time',
|
startTime: 'Start time',
|
||||||
endTime: 'End time',
|
endTime: 'End time',
|
||||||
editPlanningTrain: 'Edit planning train',
|
editPlanningTrain: 'Edit planning train',
|
||||||
runGraphName: 'Run graph name',
|
runGraphName: 'Run graph name',
|
||||||
tipOperationTime: '请先设置区段站间运行时间, 【文件】-> 【修改站间运行时间】',
|
tipOperationTime: 'Please set the running time between the stations, [File] -> [Modify the running time between stations]',
|
||||||
serverTrainNum: '表号车次号',
|
serverTrainNum: ' service trip Number',
|
||||||
explanation: 'Explanation',
|
explanation: 'Explanation',
|
||||||
creationDate: 'Creation date',
|
creationDate: 'Creation date',
|
||||||
load: 'Load',
|
load: 'Load',
|
||||||
modifyName: 'Modify name'
|
modifyName: 'Modify name',
|
||||||
|
applyRelease:'Apply for release',
|
||||||
|
preview:'Preview',
|
||||||
|
revoke:'Revoke'
|
||||||
};
|
};
|
||||||
|
@ -1,210 +1,219 @@
|
|||||||
export default {
|
export default {
|
||||||
confirm: 'confirm',
|
confirm: 'confirm',
|
||||||
cancel: 'cancel',
|
cancel: 'cancel',
|
||||||
creatingSuccessful: 'Created successfully!',
|
creatingSuccessful: 'Created successfully!',
|
||||||
creatingFailed: 'Create a failure',
|
creatingFailed: 'Create a failure',
|
||||||
confirmDeletion: 'Confirm deletion?',
|
confirmDeletion: 'Confirm deletion?',
|
||||||
confirmBatchGeneration: 'Is batch generation confirmed?',
|
confirmBatchGeneration: 'Is batch generation confirmed?',
|
||||||
confirmBatchDelete: 'Is batch deletion confirmed?',
|
confirmBatchDelete: 'Is batch deletion confirmed?',
|
||||||
hint: 'Tips',
|
hint: 'Tips',
|
||||||
cancelledDelete: 'Cancelled delete',
|
cancelledDelete: 'Cancelled delete',
|
||||||
cancelGeneration: 'Batch generation has been cancelled',
|
cancelGeneration: 'Batch generation has been cancelled',
|
||||||
refreshFailure: 'Refresh failure',
|
refreshFailure: 'Refresh failure',
|
||||||
|
|
||||||
updateSuccessfully: 'The update is successful',
|
updateSuccessfully: 'The update is successful',
|
||||||
saveSuccessfully: 'Save success',
|
saveSuccessfully: 'Save success',
|
||||||
saveFailed: 'Save failed',
|
saveFailed: 'Save failed',
|
||||||
updateFailed: 'Update failed',
|
updateFailed: 'Update failed',
|
||||||
successfullyDelete: 'Delete the success',
|
successfullyDelete: 'Delete the success',
|
||||||
failDelete: 'Delete failed',
|
failDelete: 'Delete failed',
|
||||||
operationAbnormal: 'Abnormal operation',
|
operationAbnormal: 'Abnormal operation',
|
||||||
createSuccess: 'Creating a successful',
|
createSuccess: 'Creating a successful',
|
||||||
|
|
||||||
linkCheckList: 'Link drawing is not standard, no section is generated',
|
linkCheckList: 'Link drawing is not standard, no section is generated',
|
||||||
allLinkCreate: 'All links have related extents, so no extents are generated',
|
allLinkCreate: 'All links have related extents, so no extents are generated',
|
||||||
incidenceRelation: 'May be redundant, please check the association relationship',
|
incidenceRelation: 'May be redundant, please check the association relationship',
|
||||||
linkNoneSplit: "There's a problem. There's no split",
|
linkNoneSplit: "There's a problem. There's no split",
|
||||||
|
|
||||||
cannotCoincide: 'The starting and ending coordinates cannot coincide',
|
cannotCoincide: 'The starting and ending coordinates cannot coincide',
|
||||||
cannotMerged: 'Non-physical extents exist and cannot be merged',
|
cannotMerged: 'Non-physical extents exist and cannot be merged',
|
||||||
linkCannotMerged: 'Physical extents that are not on the same Link cannot be merged',
|
linkCannotMerged: 'Physical extents that are not on the same Link cannot be merged',
|
||||||
|
|
||||||
selectedSectionEmpty: 'The selected section is empty',
|
selectedSectionEmpty: 'The selected section is empty',
|
||||||
selectedStationEmpty: 'The selected station is empty',
|
selectedStationEmpty: 'The selected station is empty',
|
||||||
|
|
||||||
enterKeywordsFiltering: 'Enter keywords for filtering',
|
enterKeywordsFiltering: 'Enter keywords for filtering',
|
||||||
|
|
||||||
selectMap: 'Please select the map first',
|
selectMap: 'Please select the map first',
|
||||||
selectTrainType: 'Please select the train model to view',
|
selectTrainType: 'Please select the train model to view',
|
||||||
|
|
||||||
stationFont: 'The font',
|
stationFont: 'The font',
|
||||||
kilometerFont: 'Kilometer mark font',
|
kilometerFont: 'Kilometer mark font',
|
||||||
meter: 'meter',
|
meter: 'meter',
|
||||||
angle: 'angle',
|
angle: 'angle',
|
||||||
|
|
||||||
operationSuccessfully: 'Operation is successful',
|
operationSuccessfully: 'Operation is successful',
|
||||||
operationFailed: 'The operation failure',
|
operationFailed: 'The operation failure',
|
||||||
setupSuccessfully: 'Set up the success',
|
setupSuccessfully: 'Set up the success',
|
||||||
setupFailed: 'Setup failed',
|
setupFailed: 'Setup failed',
|
||||||
recoveryPrivilegesSuccessful: 'Successful recovery authority',
|
recoveryPrivilegesSuccessful: 'Successful recovery authority',
|
||||||
recoveryPrivilegesFailed: 'Recovery authority failed',
|
recoveryPrivilegesFailed: 'Recovery authority failed',
|
||||||
unpackingSuccessful: 'Unpack the success',
|
unpackingSuccessful: 'Unpack the success',
|
||||||
unpackingFailed: 'Unpack the failure',
|
unpackingFailed: 'Unpack the failure',
|
||||||
pleaseEnterNameQuery: 'Please enter name query',
|
pleaseEnterNameQuery: 'Please enter name query',
|
||||||
routeSameID: 'Data with the same ID already exists',
|
routeSameID: 'Data with the same ID already exists',
|
||||||
|
|
||||||
skinDeleteSuccessfully: 'Skin removed successfully',
|
skinDeleteSuccessfully: 'Skin removed successfully',
|
||||||
skinDeleteFailed: 'Failed to remove skin',
|
skinDeleteFailed: 'Failed to remove skin',
|
||||||
publishedOperationalGraphSuccessfully: 'Published operational diagram successfully',
|
publishedOperationalGraphSuccessfully: 'Published operational diagram successfully',
|
||||||
publishedOperationalGraphFailed: 'Failed to publish operation diagram',
|
publishedOperationalGraphFailed: 'Failed to publish operation diagram',
|
||||||
deleteOperationGraphFailed: 'Failed to delete operation diagram',
|
deleteOperationGraphFailed: 'Failed to delete operation diagram',
|
||||||
importOperationGraphSuccessfully: 'The operation diagram was successfully imported!',
|
importOperationGraphSuccessfully: 'The operation diagram was successfully imported!',
|
||||||
importOperationGraphFailed: 'Failed to import operation diagram!',
|
importOperationGraphFailed: 'Failed to import operation diagram!',
|
||||||
parsingOperationGraphFailed: 'Failed to parse the operational diagram!',
|
parsingOperationGraphFailed: 'Failed to parse the operational diagram!',
|
||||||
productCreationSuccessfully: 'Product creation success',
|
productCreationSuccessfully: 'Product creation success',
|
||||||
productCreationFailed: 'Failed to create product',
|
productCreationFailed: 'Failed to create product',
|
||||||
updateProductSuccessfully: 'Product update is successful.',
|
updateProductSuccessfully: 'Product update is successful.',
|
||||||
updateProductFailed: 'Product update failed',
|
updateProductFailed: 'Product update failed',
|
||||||
deleteProductSuccessfully: 'Product deleted successfully',
|
deleteProductSuccessfully: 'Product deleted successfully',
|
||||||
deleteProductFailed: 'Product deletion failed',
|
deleteProductFailed: 'Product deletion failed',
|
||||||
cannotDeleteProduct: 'The product has been used and cannot be deleted',
|
cannotDeleteProduct: 'The product has been used and cannot be deleted',
|
||||||
productCodeExists: 'The product Code already exists',
|
productCodeExists: 'The product Code already exists',
|
||||||
narrowScope: 'You cannot narrow down the training list you created last time',
|
narrowScope: 'You cannot narrow down the training list you created last time',
|
||||||
|
|
||||||
pathCreationSuccessful: 'Create road successfully!',
|
pathCreationSuccessful: 'Create road successfully!',
|
||||||
createRoutingFailed: 'Failed to create junction',
|
createRoutingFailed: 'Failed to create junction',
|
||||||
pathUpdataSuccessful: 'Road update successful!',
|
pathUpdataSuccessful: 'Road update successful!',
|
||||||
pathUpdataFailed: 'Update traffic failed',
|
pathUpdataFailed: 'Update traffic failed',
|
||||||
|
|
||||||
failedLoadMap: 'Failed to load map data',
|
failedLoadMap: 'Failed to load map data',
|
||||||
sectionPointsDeficiency: 'Segment coordinates missing',
|
sectionPointsDeficiency: 'Segment coordinates missing',
|
||||||
|
|
||||||
dataValidationFailed: 'Data validation failed',
|
dataValidationFailed: 'Data validation failed',
|
||||||
dataValidationSuccess: 'Data verified!',
|
dataValidationSuccess: 'Data verified!',
|
||||||
|
|
||||||
requestFailed: 'The request failed',
|
requestFailed: 'The request failed',
|
||||||
|
|
||||||
dataQuestion: 'Data in question',
|
dataQuestion: 'Data in question',
|
||||||
dataList: 'Data list',
|
dataList: 'Data list',
|
||||||
|
|
||||||
updateProductTip: 'Will this operation modify the commodity status?',
|
updateProductTip: 'Will this operation modify the commodity status?',
|
||||||
deleteProductTip: 'This operation will delete the item. Do you want to continue?',
|
deleteProductTip: 'This operation will delete the item. Do you want to continue?',
|
||||||
getQRCodeFailure: 'Failed to obtain the package authority qr code',
|
getQRCodeFailure: 'Failed to obtain the package authority qr code',
|
||||||
recoveryPrivilegeTip: 'This action will reclaim permissions. Do you want to continue?',
|
recoveryPrivilegeTip: 'This action will reclaim permissions. Do you want to continue?',
|
||||||
unpackingTip: 'This operation will be unpacked. Do you want to continue?',
|
unpackingTip: 'This operation will be unpacked. Do you want to continue?',
|
||||||
updatePrivilegeTip: 'This action will modify the permission status. Do you want to continue?',
|
updatePrivilegeTip: 'This action will modify the permission status. Do you want to continue?',
|
||||||
addOrganizationPrefix: 'Whether to add "',
|
addOrganizationPrefix: 'Whether to add "',
|
||||||
addOrganizationSuffix: '" Organization/enterprise entry information?',
|
addOrganizationSuffix: '" Organization/enterprise entry information?',
|
||||||
packagingFailed: 'Authority distribution packaging failed',
|
packagingFailed: 'Authority distribution packaging failed',
|
||||||
selectPackagingRecord: 'Please select the packaging record',
|
selectPackagingRecord: 'Please select the packaging record',
|
||||||
|
|
||||||
skinDeleteConfirmation: 'This will permanently remove the skin. Do you want to continue?',
|
skinDeleteConfirmation: 'This will permanently remove the skin. Do you want to continue?',
|
||||||
skinCodingExist: 'Map skin codes already exist',
|
skinCodingExist: 'Map skin codes already exist',
|
||||||
underImport: 'UnderImport...',
|
underImport: 'UnderImport...',
|
||||||
deleteTypeHint: 'This action deletes the type. Do you want to continue?',
|
deleteTypeHint: 'This action deletes the type. Do you want to continue?',
|
||||||
selectValidInterval: 'Please select a valid interval',
|
selectValidInterval: 'Please select a valid interval',
|
||||||
|
|
||||||
failedCourse: 'Failed to obtain course information',
|
failedCourse: 'Failed to obtain course information',
|
||||||
createSimulationFaild: 'Failed to create simulation',
|
createSimulationFaild: 'Failed to create simulation',
|
||||||
accessCourseNo: 'No access to this course, please go and buy it!',
|
accessCourseNo: 'No access to this course, please go and buy it!',
|
||||||
|
|
||||||
failedSubmitOrder: 'Failed to submit order',
|
failedSubmitOrder: 'Failed to submit order',
|
||||||
permissionsNumber: 'Please enter the number of valid permissions',
|
permissionsNumber: 'Please enter the number of valid permissions',
|
||||||
purchaseMonth: 'Please enter a valid purchase month',
|
purchaseMonth: 'Please enter a valid purchase month',
|
||||||
createRoomFailedHint: 'Each user can only create one comprehensive drill room. Do you want to enter the room?',
|
createRoomFailedHint: 'Each user can only create one comprehensive drill room. Do you want to enter the room?',
|
||||||
noPermissionHint: 'You do not have permission, please go to purchase products',
|
noPermissionHint: 'You do not have permission, please go to purchase products',
|
||||||
trainModelNameRepeat: 'Train model data duplication',
|
trainModelNameRepeat: 'Train model data duplication',
|
||||||
totalAmount: 'Failed to get the total amount',
|
totalAmount: 'Failed to get the total amount',
|
||||||
wxCodePayFailde: 'Failed to get WeChat Pay payment QR code',
|
wxCodePayFailde: 'Failed to get WeChat Pay payment QR code',
|
||||||
aliCodePayFailde: 'Failed to get Alipay payment QR code',
|
aliCodePayFailde: 'Failed to get Alipay payment QR code',
|
||||||
cancelOrderFailed: 'Cancel order failed',
|
cancelOrderFailed: 'Cancel order failed',
|
||||||
|
|
||||||
coursePublishSuccessful: 'Successful course release',
|
coursePublishSuccessful: 'Successful course release',
|
||||||
coursePublishFailed: 'Course launch failed',
|
coursePublishFailed: 'Course launch failed',
|
||||||
startOperationHint: 'This operation will start the task. Do you want to continue?',
|
startOperationHint: 'This operation will start the task. Do you want to continue?',
|
||||||
cancelsTaskHint: 'This action cancels the task. Do you want to continue?',
|
cancelsTaskHint: 'This action cancels the task. Do you want to continue?',
|
||||||
automaticGenerationTrainingSuccess: 'Automatic generation of training success',
|
automaticGenerationTrainingSuccess: 'Automatic generation of training success',
|
||||||
automaticGenerationTrainingFailure: 'Automatic generation of training failure',
|
automaticGenerationTrainingFailure: 'Automatic generation of training failure',
|
||||||
updateAutomaticGenerationTrainingSuccess: 'Update automatically generated training successfully',
|
updateAutomaticGenerationTrainingSuccess: 'Update automatically generated training successfully',
|
||||||
updateAutomaticGenerationTrainingFailure: 'Update automatically generated training failure',
|
updateAutomaticGenerationTrainingFailure: 'Update automatically generated training failure',
|
||||||
deleteAutomaticGenerationTrainingSuccess: 'Delete automatic generation training successfully',
|
deleteAutomaticGenerationTrainingSuccess: 'Delete automatic generation training successfully',
|
||||||
deleteAutomaticGenerationTrainingFailure: 'Delete automatic generation training failure',
|
deleteAutomaticGenerationTrainingFailure: 'Delete automatic generation training failure',
|
||||||
addTrainingSuccessfully: 'Add training successfully!',
|
addTrainingSuccessfully: 'Add training successfully!',
|
||||||
addTrainingFailed: 'Failed to add training',
|
addTrainingFailed: 'Failed to add training',
|
||||||
updateTrainingSuccessfully: 'Update training successfully!',
|
updateTrainingSuccessfully: 'Update training successfully!',
|
||||||
updateTrainingFailed: 'Failed to update training',
|
updateTrainingFailed: 'Failed to update training',
|
||||||
savedStepDataSuccessfully: 'Saved step data successfully',
|
savedStepDataSuccessfully: 'Saved step data successfully',
|
||||||
savedStepDataFailed: 'Failed to save step data',
|
savedStepDataFailed: 'Failed to save step data',
|
||||||
noCourseAuthority: 'No examination permission for this course, please go to purchase!',
|
noCourseAuthority: 'No examination permission for this course, please go to purchase!',
|
||||||
notWithinTheScopeOfTheExamination: 'Not within the scope of the examination',
|
notWithinTheScopeOfTheExamination: 'Not within the scope of the examination',
|
||||||
giveUpTheExamTip: 'This operation will give up the examination. Will it continue?',
|
giveUpTheExamTip: 'This operation will give up the examination. Will it continue?',
|
||||||
theNumberOfPermissionsAvailableIsZero: 'The number of permissions available is 0',
|
theNumberOfPermissionsAvailableIsZero: 'The number of permissions available is 0',
|
||||||
userRightsHaveBeenReclaimed: 'User rights have been reclaimed',
|
userRightsHaveBeenReclaimed: 'User rights have been reclaimed',
|
||||||
beKickedOut: 'You are kicked out of the room by the administrator',
|
beKickedOut: 'You are kicked out of the room by the administrator',
|
||||||
deleteListHint: 'This will delete the list, will it continue?',
|
deleteListHint: 'This will delete the list, will it continue?',
|
||||||
setUpASubscriptionMapSuccessfully: 'Setting up a subscription map successfully!',
|
setUpASubscriptionMapSuccessfully: 'Setting up a subscription map successfully!',
|
||||||
setUpASubscriptionMapFailed: 'Setting up a subscription map failed!',
|
setUpASubscriptionMapFailed: 'Setting up a subscription map failed!',
|
||||||
getMapStateDataException: 'Get map state data exception, please refresh the page to reload. If you encounter such problems many times, please contact the development team in an emergency!',
|
getMapStateDataException: 'Get map state data exception, please refresh the page to reload. If you encounter such problems many times, please contact the development team in an emergency!',
|
||||||
packagedSuccessfully: 'Packaged successfully',
|
packagedSuccessfully: 'Packaged successfully',
|
||||||
oneKeyGeneratedSuccessfully: 'One key generated successfully!',
|
oneKeyGeneratedSuccessfully: 'One key generated successfully!',
|
||||||
obtainedPermissionSuccessfully: 'Successfully obtained permission',
|
obtainedPermissionSuccessfully: 'Successfully obtained permission',
|
||||||
modifyTheUserPermissionStatus: 'Will this action modify the user permission status?',
|
modifyTheUserPermissionStatus: 'Will this action modify the user permission status?',
|
||||||
destroyRoomHint: 'You will destroy the room, are you sure you want to do this?',
|
destroyRoomHint: 'You will destroy the room, are you sure you want to do this?',
|
||||||
contentIsEmptyAndCannotBeSent: 'The content is empty and cannot be sent!',
|
contentIsEmptyAndCannotBeSent: 'The content is empty and cannot be sent!',
|
||||||
generateUserDailyRunGraphSuccessfully: 'Generate user daily run graph successfully',
|
generateUserDailyRunGraphSuccessfully: 'Generate user daily run graph successfully',
|
||||||
generateUserDailyRunGraphFailed: 'Generate user daily run graph failed',
|
generateUserDailyRunGraphFailed: 'Generate user daily run graph failed',
|
||||||
createRunChartPlanSuccessfully: 'Create a run chart plan successfully',
|
createRunChartPlanSuccessfully: 'Create a run chart plan successfully',
|
||||||
createRunChartPlanFailed: 'Create run chart plan failed',
|
createRunChartPlanFailed: 'Create run chart plan failed',
|
||||||
deleteTheRunningGraphLoadedTheNextDay: 'This operation will delete the running graph loaded the next day, will it continue?',
|
deleteTheRunningGraphLoadedTheNextDay: 'This operation will delete the running graph loaded the next day, will it continue?',
|
||||||
commandFailed: 'Command failed',
|
commandFailed: 'Command failed',
|
||||||
releaseTip: 'Please click the "release" button to issue the order!',
|
releaseTip: 'Please click the "release" button to issue the order!',
|
||||||
firstConfirmTip: 'Please click the "First confirm" button to confirm the order!',
|
firstConfirmTip: 'Please click the "First confirm" button to confirm the order!',
|
||||||
executionSucceed: 'Execution succeed',
|
executionSucceed: 'Execution succeed',
|
||||||
executionFailed: 'Execution failed',
|
executionFailed: 'Execution failed',
|
||||||
executionException: 'Execution exception',
|
executionException: 'Execution exception',
|
||||||
secondConfirmTip: 'Please click the "Second confirm" button to confirm the order!',
|
secondConfirmTip: 'Please click the "Second confirm" button to confirm the order!',
|
||||||
confirmedSuccess: 'Confirmed success',
|
confirmedSuccess: 'Confirmed success',
|
||||||
cancelSuccess: 'Cancel success',
|
cancelSuccess: 'Cancel success',
|
||||||
signalModeToManualModeTipPrefix: 'Cancel the approach starting with the signal',
|
signalModeToManualModeTipPrefix: 'Cancel the approach starting with the signal',
|
||||||
signalModeToManualModeTipSuffix: ', the way will be changed from automatic signal mode to manual mode!',
|
signalModeToManualModeTipSuffix: ', the way will be changed from automatic signal mode to manual mode!',
|
||||||
selectAPieceOfData: 'Please select a piece of data',
|
selectAPieceOfData: 'Please select a piece of data',
|
||||||
selectSpeedLimitValueTip: 'Please select the speed limit value, click the "release" button, and issue the command!',
|
selectSpeedLimitValueTip: 'Please select the speed limit value, click the "release" button, and issue the command!',
|
||||||
addTrainIdTip: 'Add train identification number: successful',
|
addTrainIdTip: 'Add train identification number: successful',
|
||||||
editTrainIdTip: 'Modify train identification number: successful',
|
editTrainIdTip: 'Modify train identification number: successful',
|
||||||
enterPrice: 'Please enter the price',
|
enterPrice: 'Please enter the price',
|
||||||
publishMap: 'Get publish map',
|
publishMap: 'Get publish map',
|
||||||
addPackage: 'Please add permission',
|
addPackage: 'Please add permission',
|
||||||
deletePlanSuccessfully: 'Delete plan successfully',
|
deletePlanSuccessfully: 'Delete plan successfully',
|
||||||
deletePlanFailed: 'Delete plan failed',
|
deletePlanFailed: 'Delete plan failed',
|
||||||
importRunGraphFailed: 'Import the run graph failed:',
|
importRunGraphFailed: 'Import the run graph failed:',
|
||||||
parseRunGraphFailed: 'Parsing the run graph failed:',
|
parseRunGraphFailed: 'Parsing the run graph failed:',
|
||||||
runGraphVerificationFailed: 'Run graph verification failed',
|
runGraphVerificationFailed: 'Run graph verification failed',
|
||||||
selectARunGraphFirst: 'Please select a run graph first.',
|
selectARunGraphFirst: 'Please select a run graph first.',
|
||||||
deleteTrainHint: 'Really want to delete the train',
|
deleteTrainHint: 'Really want to delete the train',
|
||||||
selectAPlan: 'Please select a plan',
|
selectAPlan: 'Please select a plan',
|
||||||
selectATrain: 'Please select a train',
|
selectATrain: 'Please select a train',
|
||||||
requestingStationDataFailed: 'Requesting station data failed',
|
requestingStationDataFailed: 'Requesting station data failed',
|
||||||
serviceNumberExistHint: 'This table number already exists. Is it mandatory to set it? (The forced setup program may be abnormal)',
|
serviceNumberExistHint: 'This table number already exists. Is it mandatory to set it? (The forced setup program may be abnormal)',
|
||||||
serviceNumberLengthHint: 'Length should be two digits',
|
serviceNumberLengthHint: 'Length should be two digits',
|
||||||
chooseToOpenTheRunGraph: 'Please choose to open the running chart',
|
chooseToOpenTheRunGraph: 'Please choose to open the running chart',
|
||||||
addTaskSuccessfully: 'Add task successfully!',
|
addTaskSuccessfully: 'Add task successfully!',
|
||||||
addTaskFailed: 'Add task failed!',
|
addTaskFailed: 'Add task failed!',
|
||||||
createAnEmptyRunGraphSuccessfully: 'Create an empty run graph successfully!',
|
createAnEmptyRunGraphSuccessfully: 'Create an empty run graph successfully!',
|
||||||
createARunGraphSuccessfully: 'Create a running diagram successfully!',
|
createARunGraphSuccessfully: 'Create a running diagram successfully!',
|
||||||
deleteTaskSuccessfully: 'Delete task successfully!',
|
deleteTaskSuccessfully: 'Delete task successfully!',
|
||||||
deleteTaskFailed: 'Delete task failed!',
|
deleteTaskFailed: 'Delete task failed!',
|
||||||
duplicatePlanSuccessful: 'Duplicate plan successful!',
|
duplicatePlanSuccessful: 'Duplicate plan successful!',
|
||||||
duplicatePlanFailed: 'Duplicate plan failed!',
|
duplicatePlanFailed: 'Duplicate plan failed!',
|
||||||
runGraphNameModifiedSuccessfully: 'Run graph name modified successfully!',
|
runGraphNameModifiedSuccessfully: 'Run graph name modified successfully!',
|
||||||
modifyRunGraphNameFailed: 'Modify run graph name failed!',
|
modifyRunGraphNameFailed: 'Modify run graph name failed!',
|
||||||
planCreationSuccessful: 'Plan creation successful!',
|
planCreationSuccessful: 'Plan creation successful!',
|
||||||
createPlanFailed: 'Failed to create plan!',
|
createPlanFailed: 'Failed to create plan!',
|
||||||
cancelCoursePublicationHint: 'This action will cancel the course publication application, is it OK?',
|
cancelCoursePublicationHint: 'This action will cancel the course publication application, is it OK?',
|
||||||
cancelTheSuccessfulApplicationOfTheCourseRelease: 'Cancel the successful application of the course release!',
|
cancelTheSuccessfulApplicationOfTheCourseRelease: 'Cancel the successful application of the course release!',
|
||||||
cancellationOfCoursePublicationApplicationFailed: 'Cancellation of course publication application failed!',
|
cancellationOfCoursePublicationApplicationFailed: 'Cancellation of course publication application failed!',
|
||||||
publishTheCourseHint: 'This operation will publish the course. Are you sure?',
|
publishTheCourseHint: 'This operation will publish the course. Are you sure?',
|
||||||
rejectedCourseReleaseApplicationSuccessful: 'Rejected course release application successful!',
|
rejectedCourseReleaseApplicationSuccessful: 'Rejected course release application successful!',
|
||||||
rejectedCourseReleaseApplicationFailed: 'Rejected course release application failed!',
|
rejectedCourseReleaseApplicationFailed: 'Rejected course release application failed!',
|
||||||
duplicatePlanFailedTips: 'The interval needs to be more than 30 seconds or the times is more than 1',
|
duplicatePlanFailedTips: 'The interval needs to be more than 30 seconds or the times is more than 1',
|
||||||
createSwitchPortion: 'The relevant turnout is not formed'
|
createSwitchPortion: 'The relevant turnout is not formed',
|
||||||
|
publishRunPlanTips:'This action will publish run plan, whether to continue?',
|
||||||
|
applyRunPlanTips:'This action will initiate a run plan release request,whether to continue?',
|
||||||
|
publishRunPlanSuccess:'Publish run plan success!',
|
||||||
|
publishRunPlanFail:'Publish run plan fail!',
|
||||||
|
applyRunPlanSuccess:'Submit run plan to publish success!',
|
||||||
|
applyRunPlanFail:'Submit run plan to publish fail!',
|
||||||
|
cancelRunPlanTips:'This action will revoke the run plan request, whether to continue?',
|
||||||
|
cancelRunPlanSuccess:'Revoke run plan success!',
|
||||||
|
cancelRunPlanFail:'Revoke run plan fail!'
|
||||||
};
|
};
|
||||||
|
@ -1,240 +1,243 @@
|
|||||||
export default {
|
export default {
|
||||||
updateStation: {
|
updateStation: {
|
||||||
level1: '等级一:',
|
level1: '等级一:',
|
||||||
level2: '等级二:',
|
level2: '等级二:',
|
||||||
level3: '等级三:',
|
level3: '等级三:',
|
||||||
level4: '等级四:',
|
level4: '等级四:',
|
||||||
level5: '等级五:',
|
level5: '等级五:',
|
||||||
updateData: '更新数据',
|
updateData: '更新数据',
|
||||||
pleaseInputLevel1: '请输入等级一',
|
pleaseInputLevel1: '请输入等级一',
|
||||||
pleaseInputLevel2: '请输入等级二',
|
pleaseInputLevel2: '请输入等级二',
|
||||||
pleaseInputLevel3: '请输入等级三',
|
pleaseInputLevel3: '请输入等级三',
|
||||||
pleaseInputLevel4: '请输入等级四',
|
pleaseInputLevel4: '请输入等级四',
|
||||||
pleaseInputLevel5: '请输入等级五',
|
pleaseInputLevel5: '请输入等级五',
|
||||||
systemOutPut: '系统输出框',
|
systemOutPut: '系统输出框',
|
||||||
selectPrintArea: '选择打印区域',
|
selectPrintArea: '选择打印区域',
|
||||||
selectDeleteRoute: '选择删除交路',
|
selectDeleteRoute: '选择删除交路',
|
||||||
routeSelect: '交路选择',
|
routeSelect: '交路选择',
|
||||||
quicklyAddTask: '快速增加任务',
|
quicklyAddTask: '快速增加任务',
|
||||||
quicklyAddLoop: '快速增加环路',
|
quicklyAddLoop: '快速增加环路',
|
||||||
deletePlanCar: '删除计划车'
|
deletePlanCar: '删除计划车'
|
||||||
},
|
},
|
||||||
openRunPlan: {
|
openRunPlan: {
|
||||||
selectRunplan: '选择运行图',
|
selectRunplan: '选择运行图',
|
||||||
delete: '删除',
|
delete: '删除',
|
||||||
modify: '修改',
|
modify: '修改',
|
||||||
runPlanList: '运行图列表',
|
runPlanList: '运行图列表',
|
||||||
getRunPlanListFail: '获取运行图列表失败',
|
getRunPlanListFail: '获取运行图列表失败',
|
||||||
confirmDeleteRunPlan: '您确认是否删除此运行图?',
|
confirmDeleteRunPlan: '您确认是否删除此运行图?',
|
||||||
deleteSuccess: '删除成功!',
|
deleteSuccess: '删除成功!',
|
||||||
pleaseSelectRunplan: '请选择运行图'
|
pleaseSelectRunplan: '请选择运行图'
|
||||||
},
|
},
|
||||||
modifying: {
|
modifying: {
|
||||||
tripNumber: '车次号:',
|
tripNumber: '车次号:',
|
||||||
pleaseSelect: '请选择',
|
pleaseSelect: '请选择',
|
||||||
manual: '手工',
|
manual: '手工',
|
||||||
defaultStopTime: '缺省停站时间:',
|
defaultStopTime: '缺省停站时间:',
|
||||||
serviceNumber: '表号:',
|
serviceNumber: '表号:',
|
||||||
clearGuest: '清客',
|
clearGuest: '清客',
|
||||||
continuationPlan: '延续计划',
|
continuationPlan: '延续计划',
|
||||||
firstTrain: '首班车',
|
firstTrain: '首班车',
|
||||||
serialNumber: '序列号:',
|
serialNumber: '序列号:',
|
||||||
defaultRunLevel: '缺省运行等级:',
|
defaultRunLevel: '缺省运行等级:',
|
||||||
startTime: '开始时间',
|
startTime: '开始时间',
|
||||||
selectTime: '选择时间',
|
selectTime: '选择时间',
|
||||||
inStock: '入库',
|
inStock: '入库',
|
||||||
outStock: '出库',
|
outStock: '出库',
|
||||||
lastTrain: '末班车',
|
lastTrain: '末班车',
|
||||||
route: '交路:',
|
route: '交路:',
|
||||||
// startingStation 起始站
|
// startingStation 起始站
|
||||||
// startSection 起始区段
|
// startSection 起始区段
|
||||||
// endStationTitle 终到站
|
// endStationTitle 终到站
|
||||||
// endSection 终到区段
|
// endSection 终到区段
|
||||||
// description 描述
|
// description 描述
|
||||||
detail: '详情:',
|
detail: '详情:',
|
||||||
station: '车站',
|
station: '车站',
|
||||||
section: '区段',
|
section: '区段',
|
||||||
stopTime: '停站时间',
|
stopTime: '停站时间',
|
||||||
runLevel: '运行等级',
|
runLevel: '运行等级',
|
||||||
arrivalTime: '到点',
|
arrivalTime: '到点',
|
||||||
departureTime: '发点',
|
departureTime: '发点',
|
||||||
showDefaultTime: '显示默认停站时间和运行等级',
|
showDefaultTime: '显示默认停站时间和运行等级',
|
||||||
automatic: '自动',
|
automatic: '自动',
|
||||||
default: '默认',
|
default: '默认',
|
||||||
modifyTask: '修改任务',
|
modifyTask: '修改任务',
|
||||||
setMessageTip1: '请先设置开始区段',
|
setMessageTip1: '请先设置开始区段',
|
||||||
setMessageTip2: '终到区段',
|
setMessageTip2: '终到区段',
|
||||||
setMessageTip3: '的站间运行时间',
|
setMessageTip3: '的站间运行时间',
|
||||||
modifyTaskSuccess: '修改任务成功!',
|
modifyTaskSuccess: '修改任务成功!',
|
||||||
modifyTaskFailed: '修改任务失败',
|
modifyTaskFailed: '修改任务失败',
|
||||||
|
|
||||||
startingStation: '起始站',
|
startingStation: '起始站',
|
||||||
startSection: '起始区段',
|
startSection: '起始区段',
|
||||||
endStation: '终点站',
|
endStation: '终点站',
|
||||||
endSection: '终点区段',
|
endSection: '终点区段',
|
||||||
direction: '方向',
|
direction: '方向',
|
||||||
distance: '距离',
|
distance: '距离',
|
||||||
operation: '操作',
|
operation: '操作',
|
||||||
edit: '编辑',
|
edit: '编辑',
|
||||||
save: '保存',
|
save: '保存',
|
||||||
cancelAndQuit: '取消&退出',
|
cancelAndQuit: '取消&退出',
|
||||||
modifySuccess: '修改成功!',
|
modifySuccess: '修改成功!',
|
||||||
modifyFailed: '修改失败',
|
modifyFailed: '修改失败',
|
||||||
modifyRunLevel: '修改运行等级',
|
modifyRunLevel: '修改运行等级',
|
||||||
|
|
||||||
startStationTips: '起始站发车时间不变',
|
startStationTips: '起始站发车时间不变',
|
||||||
endStationTips: '终到站到达时间不变',
|
endStationTips: '终到站到达时间不变',
|
||||||
startStationTitle: '起始站',
|
startStationTitle: '起始站',
|
||||||
startedStation: '起始站台',
|
startedStation: '起始站台',
|
||||||
endStationTitle: '终到站',
|
endStationTitle: '终到站',
|
||||||
endedStation: '终到站台',
|
endedStation: '终到站台',
|
||||||
description: '描述',
|
description: '描述',
|
||||||
modifyTaskRoute: '修改任务交路',
|
modifyTaskRoute: '修改任务交路',
|
||||||
time: '时间',
|
time: '时间',
|
||||||
|
|
||||||
modifyStartTime: '修改开始时间:',
|
modifyStartTime: '修改开始时间:',
|
||||||
modifyStartTimeTitle: '修改起始时间',
|
modifyStartTimeTitle: '修改起始时间',
|
||||||
search: '查找',
|
search: '查找',
|
||||||
modifyTwoStationTime: '修改两站之间的时间'
|
modifyTwoStationTime: '修改两站之间的时间'
|
||||||
},
|
},
|
||||||
editSmoothRun: {
|
editSmoothRun: {
|
||||||
trainProportion: '分车比例',
|
trainProportion: '分车比例',
|
||||||
allTheLoopTrainProportion: '所有时段使用相同大小环路分车比例',
|
allTheLoopTrainProportion: '所有时段使用相同大小环路分车比例',
|
||||||
sizeOfTheLoopTrainProportion: '大环路与小环路分车比例:',
|
sizeOfTheLoopTrainProportion: '大环路与小环路分车比例:',
|
||||||
pleaseSelect: '请选择',
|
pleaseSelect: '请选择',
|
||||||
startTime: '开始时间',
|
startTime: '开始时间',
|
||||||
stopTime: '结束时间',
|
stopTime: '结束时间',
|
||||||
runInterval: '运行间隔',
|
runInterval: '运行间隔',
|
||||||
add: '增加',
|
add: '增加',
|
||||||
delete: '删除',
|
delete: '删除',
|
||||||
modify: '修改',
|
modify: '修改',
|
||||||
editSmoothRunTime: '编辑平稳运行时段'
|
editSmoothRunTime: '编辑平稳运行时段'
|
||||||
},
|
},
|
||||||
buy: '购买',
|
buy: '购买',
|
||||||
offlineMappingSoftware: '离线编图软件',
|
offlineMappingSoftware: '离线编图软件',
|
||||||
lianPlanSystem: '城市轨道交通琏计划系统',
|
lianPlanSystem: '城市轨道交通琏计划系统',
|
||||||
lianPlanDescription: '琏计划是一款编图测试系统,能够真实模拟实现对新运行图的仿真运行测试,该系统能够实现编辑运行图、导入运行图并按照运行图标准模拟真实行车环境,解决了无法针对运行图更新进行测试的问题。能够及时找出新图中不合理的地方并且在图上实时作出调整,避免了新运行图在运营过程中发现问题需要调度员人工进行干预的情况,最大程度降低故障对地铁正常运营的影响。',
|
lianPlanDescription: '琏计划是一款编图测试系统,能够真实模拟实现对新运行图的仿真运行测试,该系统能够实现编辑运行图、导入运行图并按照运行图标准模拟真实行车环境,解决了无法针对运行图更新进行测试的问题。能够及时找出新图中不合理的地方并且在图上实时作出调整,避免了新运行图在运营过程中发现问题需要调度员人工进行干预的情况,最大程度降低故障对地铁正常运营的影响。',
|
||||||
loopName: '环路名',
|
loopName: '环路名',
|
||||||
startingStation: '起始站',
|
startingStation: '起始站',
|
||||||
terminal: '终点站',
|
terminal: '终点站',
|
||||||
planName: '计划名称',
|
planName: '计划名称',
|
||||||
fuzhouIconDescription: '福州图标说明',
|
fuzhouIconDescription: '福州图标说明',
|
||||||
upBeginTripNumber: '上行起始车次号',
|
upBeginTripNumber: '上行起始车次号',
|
||||||
downBeginTrain: '下行起始车次',
|
downBeginTrain: '下行起始车次',
|
||||||
minimumTrainInterval: '最小列车间隔',
|
minimumTrainInterval: '最小列车间隔',
|
||||||
maximumTrainInterval: '最大列车间隔',
|
maximumTrainInterval: '最大列车间隔',
|
||||||
trainGeneratesInitialLabel: '列车生成起始标号',
|
trainGeneratesInitialLabel: '列车生成起始标号',
|
||||||
minimumTurnbackTime: '最小折返时间',
|
minimumTurnbackTime: '最小折返时间',
|
||||||
trainDepot: '车辆段',
|
trainDepot: '车辆段',
|
||||||
startingPlatform: '起始站台',
|
startingPlatform: '起始站台',
|
||||||
endingPlatform: '终点站台',
|
endingPlatform: '终点站台',
|
||||||
station: '车站',
|
station: '车站',
|
||||||
modifyAttribute: '修改属性',
|
modifyAttribute: '修改属性',
|
||||||
generalParameters: '一般参数',
|
generalParameters: '一般参数',
|
||||||
editingStation: '编辑车站',
|
editingStation: '编辑车站',
|
||||||
editDepot: '编辑停车场/车辆段',
|
editDepot: '编辑停车场/车辆段',
|
||||||
editCrossRailway: '编辑交路',
|
editCrossRailway: '编辑交路',
|
||||||
editLoopRailway: '编辑环路',
|
editLoopRailway: '编辑环路',
|
||||||
application: '应 用(A)',
|
application: '应 用(A)',
|
||||||
parameter: '参数',
|
parameter: '参数',
|
||||||
numberOfTrainsAvailable: '可用列车数',
|
numberOfTrainsAvailable: '可用列车数',
|
||||||
continuousMinimumInterval: '连续出车最小间隔',
|
continuousMinimumInterval: '连续出车最小间隔',
|
||||||
continuousReturnMaximumInterval: '连续回车最大间隔',
|
continuousReturnMaximumInterval: '连续回车最大间隔',
|
||||||
afterTheTrainHasBackInterval: '有车回段后间隔',
|
afterTheTrainHasBackInterval: '有车回段后间隔',
|
||||||
secondsCanBeRunnedByTrain: '秒才能用列车出段',
|
secondsCanBeRunnedByTrain: '秒才能用列车出段',
|
||||||
defaultStopTime: '省缺停站时间:',
|
defaultStopTime: '省缺停站时间:',
|
||||||
defaultRunLevel: '省缺运行等级:',
|
defaultRunLevel: '省缺运行等级:',
|
||||||
stopTime: '停站时间',
|
stopTime: '停站时间',
|
||||||
runLevel: '运行等级',
|
runLevel: '运行等级',
|
||||||
platform: '站台',
|
platform: '站台',
|
||||||
modifyPlatformProperties: '修改站台属性',
|
modifyPlatformProperties: '修改站台属性',
|
||||||
file: '文件',
|
file: '文件',
|
||||||
openRunningDiagram: '打开运行图',
|
openRunningDiagram: '打开运行图',
|
||||||
createRunningDiagram: '创建运行图',
|
createRunningDiagram: '创建运行图',
|
||||||
modifyRunningDiagramName: '修改运行图名称',
|
modifyRunningDiagramName: '修改运行图名称',
|
||||||
modifyStationIntervalTime: '修改站间运行时间',
|
modifyStationIntervalTime: '修改站间运行时间',
|
||||||
deleteRunningDiagram: '删除运行图',
|
deleteRunningDiagram: '删除运行图',
|
||||||
view: '查看',
|
view: '查看',
|
||||||
tool: '工具',
|
tool: '工具',
|
||||||
validityCheck: '有效性检查',
|
validityCheck: '有效性检查',
|
||||||
testRunningDiagram: '测试运行图',
|
testRunningDiagram: '测试运行图',
|
||||||
modify: '修改',
|
modify: '修改',
|
||||||
addPlan: '增加计划',
|
addPlan: '增加计划',
|
||||||
deletePlan: '删除计划',
|
deletePlan: '删除计划',
|
||||||
duplicatePlan: '复制计划',
|
duplicatePlan: '复制计划',
|
||||||
addTask: '增加任务',
|
addTask: '增加任务',
|
||||||
deleteTask: '删除任务',
|
deleteTask: '删除任务',
|
||||||
modifyTask: '修改任务',
|
modifyTask: '修改任务',
|
||||||
option: '选项',
|
option: '选项',
|
||||||
help: '帮助',
|
help: '帮助',
|
||||||
implemented: '实现中......',
|
implemented: '实现中......',
|
||||||
server1: '服务器1',
|
server1: '服务器1',
|
||||||
server2: '服务器2',
|
server2: '服务器2',
|
||||||
frontMachine1: '前置机1',
|
frontMachine1: '前置机1',
|
||||||
frontMachine2: '前置机2',
|
frontMachine2: '前置机2',
|
||||||
mainDispatcher: '主调',
|
mainDispatcher: '主调',
|
||||||
dispatcher1: '调度台1',
|
dispatcher1: '调度台1',
|
||||||
dispatcher2: '调度台2',
|
dispatcher2: '调度台2',
|
||||||
dispatcher3: '调度台3',
|
dispatcher3: '调度台3',
|
||||||
bigScreen: '大屏',
|
bigScreen: '大屏',
|
||||||
maintenanceWorkstation: '维护工作站',
|
maintenanceWorkstation: '维护工作站',
|
||||||
runGraphShowManualStation: '运行图显示人工站',
|
runGraphShowManualStation: '运行图显示人工站',
|
||||||
jumpStop: '跳停',
|
jumpStop: '跳停',
|
||||||
detainTrain: '扣车',
|
detainTrain: '扣车',
|
||||||
trainAlarm: '列车报警',
|
trainAlarm: '列车报警',
|
||||||
serviceNumber: '表号',
|
serviceNumber: '表号',
|
||||||
tripNumber: '车次号',
|
tripNumber: '车次号',
|
||||||
stationName: '车站名称:',
|
stationName: '车站名称:',
|
||||||
stationKilometerMark: '车站公里标:',
|
stationKilometerMark: '车站公里标:',
|
||||||
arriveTime: '到站时间:',
|
arriveTime: '到站时间:',
|
||||||
serviceAndTripNumber: '表号车次',
|
serviceAndTripNumber: '表号车次',
|
||||||
testRunning: '测试运行',
|
testRunning: '测试运行',
|
||||||
serviceNumber2: '服务号',
|
serviceNumber2: '服务号',
|
||||||
addPlanTrain: '添加计划车',
|
addPlanTrain: '添加计划车',
|
||||||
trainRunningTimeInterval: '列车运行时间间隔',
|
trainRunningTimeInterval: '列车运行时间间隔',
|
||||||
sizeOfTheLoopTrainProportion: '大小环路分车比例',
|
sizeOfTheLoopTrainProportion: '大小环路分车比例',
|
||||||
applicationRouteSelection: '应用路线选择',
|
applicationRouteSelection: '应用路线选择',
|
||||||
bothway: '双向',
|
bothway: '双向',
|
||||||
up: '上行',
|
up: '上行',
|
||||||
down: '下行',
|
down: '下行',
|
||||||
runningInterval: '运行间隔',
|
runningInterval: '运行间隔',
|
||||||
distributionRatio: '分车比例',
|
distributionRatio: '分车比例',
|
||||||
addASmoothRunningTime: '添加平稳运行时段',
|
addASmoothRunningTime: '添加平稳运行时段',
|
||||||
addToTheFront: '加在最前',
|
addToTheFront: '加在最前',
|
||||||
addToTheEnd: '加在最后',
|
addToTheEnd: '加在最后',
|
||||||
crossRailway: '交路',
|
crossRailway: '交路',
|
||||||
startingSection: '起始区段',
|
startingSection: '起始区段',
|
||||||
endingSection: '终到区段',
|
endingSection: '终到区段',
|
||||||
description: '描述',
|
description: '描述',
|
||||||
section: '区段',
|
section: '区段',
|
||||||
departureTime: '发点',
|
departureTime: '发点',
|
||||||
showDefaultStopTimeAndRunLevel: '显示默认停站时间和运行等级',
|
showDefaultStopTimeAndRunLevel: '显示默认停站时间和运行等级',
|
||||||
automatic: '自动',
|
automatic: '自动',
|
||||||
default: '默认',
|
default: '默认',
|
||||||
addTaskHint1: '请先设置开始区段',
|
addTaskHint1: '请先设置开始区段',
|
||||||
addTaskHint2: '终到区段',
|
addTaskHint2: '终到区段',
|
||||||
addTaskHint3: '的站间运行时间',
|
addTaskHint3: '的站间运行时间',
|
||||||
normalNew: '正常新建',
|
normalNew: '正常新建',
|
||||||
runGraphName: '运行图名称',
|
runGraphName: '运行图名称',
|
||||||
createFromTheReleaseRunGraph: '从发布运行图创建',
|
createFromTheReleaseRunGraph: '从发布运行图创建',
|
||||||
releaseRunGraph: '发布运行图',
|
releaseRunGraph: '发布运行图',
|
||||||
newRunGraph: '新建运行图',
|
newRunGraph: '新建运行图',
|
||||||
deleteAllPreviousTasks: '删除以前所有任务(包含本任务)',
|
deleteAllPreviousTasks: '删除以前所有任务(包含本任务)',
|
||||||
deleteAllSubsequentTasks: '删除以后所有任务(包含本任务)',
|
deleteAllSubsequentTasks: '删除以后所有任务(包含本任务)',
|
||||||
forward: '向前',
|
forward: '向前',
|
||||||
backward: '向后',
|
backward: '向后',
|
||||||
frequency: '次数:',
|
frequency: '次数:',
|
||||||
intervals: '间隔时间:',
|
intervals: '间隔时间:',
|
||||||
duplicateTrain: '复制列车',
|
duplicateTrain: '复制列车',
|
||||||
commissioningTrain: '调试车',
|
commissioningTrain: '调试车',
|
||||||
task: '任务',
|
task: '任务',
|
||||||
startTime: '起始时间',
|
startTime: '起始时间',
|
||||||
endTime: '终到时间',
|
endTime: '终到时间',
|
||||||
editPlanningTrain: '编辑计划车',
|
editPlanningTrain: '编辑计划车',
|
||||||
tipOperationTime: '请先设置区段站间运行时间, 【文件】-> 【修改站间运行时间】',
|
tipOperationTime: '请先设置区段站间运行时间, 【文件】-> 【修改站间运行时间】',
|
||||||
serverTrainNum: '表号车次号',
|
serverTrainNum: '表号车次号',
|
||||||
explanation: '驳回说明',
|
explanation: '驳回说明',
|
||||||
creationDate: '创建日期',
|
creationDate: '创建日期',
|
||||||
load: '加载',
|
load: '加载',
|
||||||
modifyName: '修改名称'
|
modifyName: '修改名称',
|
||||||
|
applyRelease:'申请发布',
|
||||||
|
preview:'预览',
|
||||||
|
revoke:'撤回'
|
||||||
};
|
};
|
||||||
|
@ -1,210 +1,219 @@
|
|||||||
export default {
|
export default {
|
||||||
confirm: '确 定',
|
confirm: '确 定',
|
||||||
cancel: '取 消',
|
cancel: '取 消',
|
||||||
creatingSuccessful: '创建成功!',
|
creatingSuccessful: '创建成功!',
|
||||||
creatingFailed: '创建失败',
|
creatingFailed: '创建失败',
|
||||||
confirmDeletion: '是否确认删除?',
|
confirmDeletion: '是否确认删除?',
|
||||||
confirmBatchGeneration: '是否确认批量生成?',
|
confirmBatchGeneration: '是否确认批量生成?',
|
||||||
confirmBatchDelete: '是否确认批量删除?',
|
confirmBatchDelete: '是否确认批量删除?',
|
||||||
hint: '提示',
|
hint: '提示',
|
||||||
cancelledDelete: '已取消删除',
|
cancelledDelete: '已取消删除',
|
||||||
cancelGeneration: '已取消批量生成',
|
cancelGeneration: '已取消批量生成',
|
||||||
refreshFailure: '刷新失败',
|
refreshFailure: '刷新失败',
|
||||||
|
|
||||||
updateSuccessfully: '更新成功',
|
updateSuccessfully: '更新成功',
|
||||||
saveSuccessfully: '保存成功',
|
saveSuccessfully: '保存成功',
|
||||||
saveFailed: '保存失败',
|
saveFailed: '保存失败',
|
||||||
updateFailed: '更新失败',
|
updateFailed: '更新失败',
|
||||||
successfullyDelete: '删除成功',
|
successfullyDelete: '删除成功',
|
||||||
failDelete: '删除失败',
|
failDelete: '删除失败',
|
||||||
operationAbnormal: '操作异常',
|
operationAbnormal: '操作异常',
|
||||||
createSuccess: '创建成功',
|
createSuccess: '创建成功',
|
||||||
|
|
||||||
cannotCoincide: '起始坐标和结束坐标不能重合',
|
cannotCoincide: '起始坐标和结束坐标不能重合',
|
||||||
cannotMerged: '存在非物理区段,不能合并',
|
cannotMerged: '存在非物理区段,不能合并',
|
||||||
linkCannotMerged: '不在同一Link上的物理区段不能合并',
|
linkCannotMerged: '不在同一Link上的物理区段不能合并',
|
||||||
|
|
||||||
selectedSectionEmpty: '选择的区段为空',
|
selectedSectionEmpty: '选择的区段为空',
|
||||||
selectedStationEmpty: '选择的车站为空',
|
selectedStationEmpty: '选择的车站为空',
|
||||||
|
|
||||||
enterKeywordsFiltering: '输入关键字进行过滤',
|
enterKeywordsFiltering: '输入关键字进行过滤',
|
||||||
|
|
||||||
selectMap: '请先选择地图',
|
selectMap: '请先选择地图',
|
||||||
selectTrainType: '请选择查看的列车模型',
|
selectTrainType: '请选择查看的列车模型',
|
||||||
|
|
||||||
stationFont: '车站字体',
|
stationFont: '车站字体',
|
||||||
kilometerFont: '公里标字体',
|
kilometerFont: '公里标字体',
|
||||||
meter: '米',
|
meter: '米',
|
||||||
angle: '度',
|
angle: '度',
|
||||||
|
|
||||||
operationSuccessfully: '操作成功',
|
operationSuccessfully: '操作成功',
|
||||||
operationFailed: '操作失败',
|
operationFailed: '操作失败',
|
||||||
setupSuccessfully: '设置成功',
|
setupSuccessfully: '设置成功',
|
||||||
setupFailed: '设置失败',
|
setupFailed: '设置失败',
|
||||||
recoveryPrivilegesSuccessful: '回收权限成功',
|
recoveryPrivilegesSuccessful: '回收权限成功',
|
||||||
recoveryPrivilegesFailed: '回收权限失败',
|
recoveryPrivilegesFailed: '回收权限失败',
|
||||||
unpackingSuccessful: '解包成功',
|
unpackingSuccessful: '解包成功',
|
||||||
unpackingFailed: '解包失败',
|
unpackingFailed: '解包失败',
|
||||||
pleaseEnterNameQuery: '请输入名称查询',
|
pleaseEnterNameQuery: '请输入名称查询',
|
||||||
routeSameID: '相同ID的数据已存在',
|
routeSameID: '相同ID的数据已存在',
|
||||||
|
|
||||||
skinDeleteSuccessfully: '删除皮肤成功',
|
skinDeleteSuccessfully: '删除皮肤成功',
|
||||||
skinDeleteFailed: '删除皮肤失败',
|
skinDeleteFailed: '删除皮肤失败',
|
||||||
publishedOperationalGraphSuccessfully: '发布运行图成功',
|
publishedOperationalGraphSuccessfully: '发布运行图成功',
|
||||||
publishedOperationalGraphFailed: '发布运行图失败',
|
publishedOperationalGraphFailed: '发布运行图失败',
|
||||||
deleteOperationGraphFailed: '删除运行图失败',
|
deleteOperationGraphFailed: '删除运行图失败',
|
||||||
importOperationGraphSuccessfully: '导入运行图成功!',
|
importOperationGraphSuccessfully: '导入运行图成功!',
|
||||||
importOperationGraphFailed: '导入运行图失败!',
|
importOperationGraphFailed: '导入运行图失败!',
|
||||||
parsingOperationGraphFailed: '解析运行图失败!',
|
parsingOperationGraphFailed: '解析运行图失败!',
|
||||||
productCreationSuccessfully: '创建产品成功',
|
productCreationSuccessfully: '创建产品成功',
|
||||||
productCreationFailed: '创建产品失败',
|
productCreationFailed: '创建产品失败',
|
||||||
updateProductSuccessfully: '更新产品成功',
|
updateProductSuccessfully: '更新产品成功',
|
||||||
updateProductFailed: '更新产品失败',
|
updateProductFailed: '更新产品失败',
|
||||||
deleteProductSuccessfully: '删除产品成功',
|
deleteProductSuccessfully: '删除产品成功',
|
||||||
deleteProductFailed: '删除产品失败',
|
deleteProductFailed: '删除产品失败',
|
||||||
cannotDeleteProduct: '产品已被使用无法删除',
|
cannotDeleteProduct: '产品已被使用无法删除',
|
||||||
productCodeExists: '产品Code已存在',
|
productCodeExists: '产品Code已存在',
|
||||||
narrowScope: '不能缩小上次创建的实训列表的范围',
|
narrowScope: '不能缩小上次创建的实训列表的范围',
|
||||||
|
|
||||||
pathCreationSuccessful: '创建交路成功!',
|
pathCreationSuccessful: '创建交路成功!',
|
||||||
createRoutingFailed: '创建交路失败',
|
createRoutingFailed: '创建交路失败',
|
||||||
pathUpdataSuccessful: '更新交路成功!',
|
pathUpdataSuccessful: '更新交路成功!',
|
||||||
pathUpdataFailed: '更新交路失败',
|
pathUpdataFailed: '更新交路失败',
|
||||||
|
|
||||||
failedLoadMap: '加载地图数据失败',
|
failedLoadMap: '加载地图数据失败',
|
||||||
sectionPointsDeficiency: '区段坐标缺失',
|
sectionPointsDeficiency: '区段坐标缺失',
|
||||||
|
|
||||||
dataValidationFailed: '数据校验不通过',
|
dataValidationFailed: '数据校验不通过',
|
||||||
dataValidationSuccess: '数据校验通过!',
|
dataValidationSuccess: '数据校验通过!',
|
||||||
|
|
||||||
linkCheckList: '有 link 绘图不规范, 未生成区段',
|
linkCheckList: '有 link 绘图不规范, 未生成区段',
|
||||||
allLinkCreate: '所有link都有相关区段,所以未生成任何区段',
|
allLinkCreate: '所有link都有相关区段,所以未生成任何区段',
|
||||||
incidenceRelation: '可能是多余的,请检查关联关系',
|
incidenceRelation: '可能是多余的,请检查关联关系',
|
||||||
linkNoneSplit: '有问题,没有进行拆分',
|
linkNoneSplit: '有问题,没有进行拆分',
|
||||||
|
|
||||||
requestFailed: '请求失败',
|
requestFailed: '请求失败',
|
||||||
|
|
||||||
dataQuestion: '有问题数据',
|
dataQuestion: '有问题数据',
|
||||||
dataList: '数据列表',
|
dataList: '数据列表',
|
||||||
|
|
||||||
updateProductTip: '此操作将修改商品状态?',
|
updateProductTip: '此操作将修改商品状态?',
|
||||||
deleteProductTip: '此操作将删除该商品, 是否继续?',
|
deleteProductTip: '此操作将删除该商品, 是否继续?',
|
||||||
getQRCodeFailure: '获取打包权限二维码失败',
|
getQRCodeFailure: '获取打包权限二维码失败',
|
||||||
recoveryPrivilegeTip: '此操作将回收权限, 是否继续?',
|
recoveryPrivilegeTip: '此操作将回收权限, 是否继续?',
|
||||||
unpackingTip: '此操作将解包, 是否继续?',
|
unpackingTip: '此操作将解包, 是否继续?',
|
||||||
updatePrivilegeTip: '此操作将修改权限状态,是否继续?',
|
updatePrivilegeTip: '此操作将修改权限状态,是否继续?',
|
||||||
addOrganizationPrefix: '是否添加 "',
|
addOrganizationPrefix: '是否添加 "',
|
||||||
addOrganizationSuffix: '" 组织/企业条目信息?',
|
addOrganizationSuffix: '" 组织/企业条目信息?',
|
||||||
packagingFailed: '权限分发打包失败',
|
packagingFailed: '权限分发打包失败',
|
||||||
selectPackagingRecord: '请选择打包记录',
|
selectPackagingRecord: '请选择打包记录',
|
||||||
|
|
||||||
skinDeleteConfirmation: '此操作将永久删除该皮肤, 是否继续?',
|
skinDeleteConfirmation: '此操作将永久删除该皮肤, 是否继续?',
|
||||||
skinCodingExist: '地图皮肤编码已存在',
|
skinCodingExist: '地图皮肤编码已存在',
|
||||||
underImport: '正在导入中...',
|
underImport: '正在导入中...',
|
||||||
deleteTypeHint: '此操作将删除该类型, 是否继续?',
|
deleteTypeHint: '此操作将删除该类型, 是否继续?',
|
||||||
selectValidInterval: '请选择有效的区间',
|
selectValidInterval: '请选择有效的区间',
|
||||||
|
|
||||||
failedCourse: '获取课程信息失败',
|
failedCourse: '获取课程信息失败',
|
||||||
createSimulationFaild: '创建仿真失败',
|
createSimulationFaild: '创建仿真失败',
|
||||||
accessCourseNo: '无此课程权限, 请前往购买!',
|
accessCourseNo: '无此课程权限, 请前往购买!',
|
||||||
|
|
||||||
failedSubmitOrder: '提交订单失败',
|
failedSubmitOrder: '提交订单失败',
|
||||||
permissionsNumber: '请输入有效的权限个数',
|
permissionsNumber: '请输入有效的权限个数',
|
||||||
purchaseMonth: '请输入有效的购买月数',
|
purchaseMonth: '请输入有效的购买月数',
|
||||||
totalAmount: '获取总金额失败',
|
totalAmount: '获取总金额失败',
|
||||||
wxCodePayFailde: '获取微信支付二维码失败',
|
wxCodePayFailde: '获取微信支付二维码失败',
|
||||||
aliCodePayFailde: '获取支付宝支付二维码失败',
|
aliCodePayFailde: '获取支付宝支付二维码失败',
|
||||||
cancelOrderFailed: '取消订单失败',
|
cancelOrderFailed: '取消订单失败',
|
||||||
|
|
||||||
createRoomFailedHint: '每个用户只能创建一个综合演练房间, 是否进入房间?',
|
createRoomFailedHint: '每个用户只能创建一个综合演练房间, 是否进入房间?',
|
||||||
noPermissionHint: '您没有权限,请前往购买产品',
|
noPermissionHint: '您没有权限,请前往购买产品',
|
||||||
trainModelNameRepeat: '列车模型数据重复',
|
trainModelNameRepeat: '列车模型数据重复',
|
||||||
coursePublishSuccessful: '课程发布成功',
|
coursePublishSuccessful: '课程发布成功',
|
||||||
coursePublishFailed: '课程发布失败',
|
coursePublishFailed: '课程发布失败',
|
||||||
startOperationHint: '此操作将开始任务, 是否继续?',
|
startOperationHint: '此操作将开始任务, 是否继续?',
|
||||||
cancelsTaskHint: '此操作将取消任务, 是否继续?',
|
cancelsTaskHint: '此操作将取消任务, 是否继续?',
|
||||||
automaticGenerationTrainingSuccess: '自动生成实训成功',
|
automaticGenerationTrainingSuccess: '自动生成实训成功',
|
||||||
automaticGenerationTrainingFailure: '自动生成实训失败',
|
automaticGenerationTrainingFailure: '自动生成实训失败',
|
||||||
updateAutomaticGenerationTrainingSuccess: '更新自动生成实训成功',
|
updateAutomaticGenerationTrainingSuccess: '更新自动生成实训成功',
|
||||||
updateAutomaticGenerationTrainingFailure: '更新自动生成实训失败',
|
updateAutomaticGenerationTrainingFailure: '更新自动生成实训失败',
|
||||||
deleteAutomaticGenerationTrainingSuccess: '删除自动生成实训成功',
|
deleteAutomaticGenerationTrainingSuccess: '删除自动生成实训成功',
|
||||||
deleteAutomaticGenerationTrainingFailure: '删除自动生成实训失败',
|
deleteAutomaticGenerationTrainingFailure: '删除自动生成实训失败',
|
||||||
addTrainingSuccessfully: '添加实训成功!',
|
addTrainingSuccessfully: '添加实训成功!',
|
||||||
addTrainingFailed: '添加实训失败',
|
addTrainingFailed: '添加实训失败',
|
||||||
updateTrainingSuccessfully: '更新实训成功!',
|
updateTrainingSuccessfully: '更新实训成功!',
|
||||||
updateTrainingFailed: '更新实训失败',
|
updateTrainingFailed: '更新实训失败',
|
||||||
savedStepDataSuccessfully: '保存步骤数据成功',
|
savedStepDataSuccessfully: '保存步骤数据成功',
|
||||||
savedStepDataFailed: '保存步骤数据失败',
|
savedStepDataFailed: '保存步骤数据失败',
|
||||||
noCourseAuthority: '无此课程的考试权限,请前往购买!',
|
noCourseAuthority: '无此课程的考试权限,请前往购买!',
|
||||||
notWithinTheScopeOfTheExamination: '不在考试范围之内',
|
notWithinTheScopeOfTheExamination: '不在考试范围之内',
|
||||||
giveUpTheExamTip: '此操作将放弃本次考试, 是否继续?',
|
giveUpTheExamTip: '此操作将放弃本次考试, 是否继续?',
|
||||||
theNumberOfPermissionsAvailableIsZero: '可用的权限数量为0',
|
theNumberOfPermissionsAvailableIsZero: '可用的权限数量为0',
|
||||||
userRightsHaveBeenReclaimed: '用户权限已被收回',
|
userRightsHaveBeenReclaimed: '用户权限已被收回',
|
||||||
beKickedOut: '您被管理员踢出房间',
|
beKickedOut: '您被管理员踢出房间',
|
||||||
deleteListHint: '此操作将删除该列表, 是否继续?',
|
deleteListHint: '此操作将删除该列表, 是否继续?',
|
||||||
setUpASubscriptionMapSuccessfully: '设置订阅地图成功!',
|
setUpASubscriptionMapSuccessfully: '设置订阅地图成功!',
|
||||||
setUpASubscriptionMapFailed: '设置订阅地图失败!',
|
setUpASubscriptionMapFailed: '设置订阅地图失败!',
|
||||||
getMapStateDataException: '获取地图状态数据异常,请刷新页面重新加载。若多次遇到此类问题,请急时联系开发团队处理!',
|
getMapStateDataException: '获取地图状态数据异常,请刷新页面重新加载。若多次遇到此类问题,请急时联系开发团队处理!',
|
||||||
packagedSuccessfully: '打包成功',
|
packagedSuccessfully: '打包成功',
|
||||||
oneKeyGeneratedSuccessfully: '一键生成成功!',
|
oneKeyGeneratedSuccessfully: '一键生成成功!',
|
||||||
obtainedPermissionSuccessfully: '领取权限成功',
|
obtainedPermissionSuccessfully: '领取权限成功',
|
||||||
modifyTheUserPermissionStatus: '此操作将修改用户权限状态?',
|
modifyTheUserPermissionStatus: '此操作将修改用户权限状态?',
|
||||||
destroyRoomHint: '您将销毁房间,是否确定执行此操作',
|
destroyRoomHint: '您将销毁房间,是否确定执行此操作',
|
||||||
contentIsEmptyAndCannotBeSent: '内容为空,不可发送!',
|
contentIsEmptyAndCannotBeSent: '内容为空,不可发送!',
|
||||||
generateUserDailyRunGraphSuccessfully: '生成用户每日运行图成功',
|
generateUserDailyRunGraphSuccessfully: '生成用户每日运行图成功',
|
||||||
generateUserDailyRunGraphFailed: '生成用户每日运行图成失败',
|
generateUserDailyRunGraphFailed: '生成用户每日运行图成失败',
|
||||||
createRunChartPlanSuccessfully: '创建运行图计划成功',
|
createRunChartPlanSuccessfully: '创建运行图计划成功',
|
||||||
createRunChartPlanFailed: '创建运行图计划失败',
|
createRunChartPlanFailed: '创建运行图计划失败',
|
||||||
deleteTheRunningGraphLoadedTheNextDay: '此操作将删除次日加载的运行图, 是否继续?',
|
deleteTheRunningGraphLoadedTheNextDay: '此操作将删除次日加载的运行图, 是否继续?',
|
||||||
commandFailed: '命令下达失败',
|
commandFailed: '命令下达失败',
|
||||||
releaseTip: '请点击“下达”按钮,下达命令!',
|
releaseTip: '请点击“下达”按钮,下达命令!',
|
||||||
firstConfirmTip: '请点击“确认1”按钮,确认命令!',
|
firstConfirmTip: '请点击“确认1”按钮,确认命令!',
|
||||||
executionSucceed: '执行成功',
|
executionSucceed: '执行成功',
|
||||||
executionFailed: '执行失败',
|
executionFailed: '执行失败',
|
||||||
executionException: '执行异常',
|
executionException: '执行异常',
|
||||||
secondConfirmTip: '请点击“确认2”按钮,确认命令!',
|
secondConfirmTip: '请点击“确认2”按钮,确认命令!',
|
||||||
confirmedSuccess: '确认成功',
|
confirmedSuccess: '确认成功',
|
||||||
cancelSuccess: '取消成功',
|
cancelSuccess: '取消成功',
|
||||||
signalModeToManualModeTipPrefix: '取消以信号机',
|
signalModeToManualModeTipPrefix: '取消以信号机',
|
||||||
signalModeToManualModeTipSuffix: '为始端的进路,该进路即将由自动信号模式转为人工模式!',
|
signalModeToManualModeTipSuffix: '为始端的进路,该进路即将由自动信号模式转为人工模式!',
|
||||||
selectAPieceOfData: '请选择一条数据',
|
selectAPieceOfData: '请选择一条数据',
|
||||||
selectSpeedLimitValueTip: '请选择限速值后,点击“下达”按钮,下达命令!',
|
selectSpeedLimitValueTip: '请选择限速值后,点击“下达”按钮,下达命令!',
|
||||||
addTrainIdTip: '添加列车识别号:成功',
|
addTrainIdTip: '添加列车识别号:成功',
|
||||||
editTrainIdTip: '修改列车识别号:成功',
|
editTrainIdTip: '修改列车识别号:成功',
|
||||||
enterPrice: '请输入价格',
|
enterPrice: '请输入价格',
|
||||||
publishMap: '获取发布地图',
|
publishMap: '获取发布地图',
|
||||||
addPackage: '请添加权限',
|
addPackage: '请添加权限',
|
||||||
deletePlanSuccessfully: '删除计划成功',
|
deletePlanSuccessfully: '删除计划成功',
|
||||||
deletePlanFailed: '删除计划失败',
|
deletePlanFailed: '删除计划失败',
|
||||||
importRunGraphFailed: '导入运行图失败:',
|
importRunGraphFailed: '导入运行图失败:',
|
||||||
parseRunGraphFailed: '解析运行图失败:',
|
parseRunGraphFailed: '解析运行图失败:',
|
||||||
runGraphVerificationFailed: '运行图校验失败',
|
runGraphVerificationFailed: '运行图校验失败',
|
||||||
selectARunGraphFirst: '请先选择一个运行图',
|
selectARunGraphFirst: '请先选择一个运行图',
|
||||||
deleteTrainHint: '是否要删除列车',
|
deleteTrainHint: '是否要删除列车',
|
||||||
selectAPlan: '请选择一条计划',
|
selectAPlan: '请选择一条计划',
|
||||||
selectATrain: '请选择一个车次',
|
selectATrain: '请选择一个车次',
|
||||||
requestingStationDataFailed: '请求车站数据失败',
|
requestingStationDataFailed: '请求车站数据失败',
|
||||||
serviceNumberExistHint: '本表号已存在,是否强制设置?(强制设置程序可能会出现异常)',
|
serviceNumberExistHint: '本表号已存在,是否强制设置?(强制设置程序可能会出现异常)',
|
||||||
serviceNumberLengthHint: '长度应为两位数',
|
serviceNumberLengthHint: '长度应为两位数',
|
||||||
chooseToOpenTheRunGraph: '请选打开运行图',
|
chooseToOpenTheRunGraph: '请选打开运行图',
|
||||||
addTaskSuccessfully: '添加任务成功!',
|
addTaskSuccessfully: '添加任务成功!',
|
||||||
addTaskFailed: '添加任务失败!',
|
addTaskFailed: '添加任务失败!',
|
||||||
createAnEmptyRunGraphSuccessfully: '创建空运行图成功!',
|
createAnEmptyRunGraphSuccessfully: '创建空运行图成功!',
|
||||||
createARunGraphSuccessfully: '创建运行图成功!',
|
createARunGraphSuccessfully: '创建运行图成功!',
|
||||||
deleteTaskSuccessfully: '删除任务成功!',
|
deleteTaskSuccessfully: '删除任务成功!',
|
||||||
deleteTaskFailed: '删除任务失败!',
|
deleteTaskFailed: '删除任务失败!',
|
||||||
duplicatePlanSuccessful: '复制计划成功!',
|
duplicatePlanSuccessful: '复制计划成功!',
|
||||||
duplicatePlanFailed: '复制计划失败!',
|
duplicatePlanFailed: '复制计划失败!',
|
||||||
runGraphNameModifiedSuccessfully: '修改运行图名称成功!',
|
runGraphNameModifiedSuccessfully: '修改运行图名称成功!',
|
||||||
modifyRunGraphNameFailed: '修改运行图名称失败!',
|
modifyRunGraphNameFailed: '修改运行图名称失败!',
|
||||||
planCreationSuccessful: '创建计划成功!',
|
planCreationSuccessful: '创建计划成功!',
|
||||||
createPlanFailed: '创建计划失败!',
|
createPlanFailed: '创建计划失败!',
|
||||||
cancelCoursePublicationHint: '此操作将撤销课程发布申请,是否确定?',
|
cancelCoursePublicationHint: '此操作将撤销课程发布申请,是否确定?',
|
||||||
cancelTheSuccessfulApplicationOfTheCourseRelease: '撤销课程发布申请成功!',
|
cancelTheSuccessfulApplicationOfTheCourseRelease: '撤销课程发布申请成功!',
|
||||||
cancellationOfCoursePublicationApplicationFailed: '撤销课程发布申请失败!',
|
cancellationOfCoursePublicationApplicationFailed: '撤销课程发布申请失败!',
|
||||||
publishTheCourseHint: '此操作将发布课程,是否确定?',
|
publishTheCourseHint: '此操作将发布课程,是否确定?',
|
||||||
rejectedCourseReleaseApplicationSuccessful: '驳回课程发布申请成功!',
|
rejectedCourseReleaseApplicationSuccessful: '驳回课程发布申请成功!',
|
||||||
rejectedCourseReleaseApplicationFailed: '驳回课程发布申请失败!',
|
rejectedCourseReleaseApplicationFailed: '驳回课程发布申请失败!',
|
||||||
duplicatePlanFailedTips: '间隔时间需要大于30秒或次数大于1',
|
duplicatePlanFailedTips: '间隔时间需要大于30秒或次数大于1',
|
||||||
createSwitchPortion: '相关道岔未生成'
|
createSwitchPortion: '相关道岔未生成',
|
||||||
|
publishRunPlanTips:'此操作将发布运行图,是否继续?',
|
||||||
|
applyRunPlanTips:'此操作将发起运行图发布申请,是否继续?',
|
||||||
|
publishRunPlanSuccess:'发布运行图成功!',
|
||||||
|
publishRunPlanFail:'发布运行图失败!',
|
||||||
|
applyRunPlanSuccess:'提交运行图发布申请成功!',
|
||||||
|
applyRunPlanFail:'提交运行图发布申请失败!',
|
||||||
|
cancelRunPlanTips:'此操作将撤销发布运行图申请,是否继续?',
|
||||||
|
cancelRunPlanSuccess:'撤销运行图发布申请成功!',
|
||||||
|
cancelRunPlanFail:'撤销运行图发布申请失败!'
|
||||||
};
|
};
|
||||||
|
@ -60,3 +60,5 @@
|
|||||||
.el-radio{
|
.el-radio{
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.el-tooltip__popper{max-width:40%;line-height:160%;}
|
||||||
|
@ -221,7 +221,8 @@ export default {
|
|||||||
|
|
||||||
.card-box {
|
.card-box {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.steps {
|
.steps {
|
||||||
|
@ -196,6 +196,7 @@ export default {
|
|||||||
.card-box {
|
.card-box {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.steps {
|
.steps {
|
||||||
|
@ -140,10 +140,12 @@ export default {
|
|||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
.mainContext{
|
.mainContext{
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
.box{
|
.box{
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
display: -webkit-box;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -29,9 +29,9 @@
|
|||||||
<el-button size="mini" class="button_box" type="success" @click="handleConfirm(scope.row)" v-if="scope.row.status !=='1'">{{$t('planMonitor.load')}}</el-button>
|
<el-button size="mini" class="button_box" type="success" @click="handleConfirm(scope.row)" v-if="scope.row.status !=='1'">{{$t('planMonitor.load')}}</el-button>
|
||||||
<el-button size="mini" class="button_box" type="primary" @click="handleEdit(scope.row)" v-if="isCreate && scope.row.status !=='1'">{{$t('planMonitor.modifyName')}}</el-button>
|
<el-button size="mini" class="button_box" type="primary" @click="handleEdit(scope.row)" v-if="isCreate && scope.row.status !=='1'">{{$t('planMonitor.modifyName')}}</el-button>
|
||||||
<el-button size="mini" class="button_box" type="danger" @click="handleDelete(scope.row)" v-if="isCreate && scope.row.status !=='1'">{{$t('global.delete')}}</el-button>
|
<el-button size="mini" class="button_box" type="danger" @click="handleDelete(scope.row)" v-if="isCreate && scope.row.status !=='1'">{{$t('global.delete')}}</el-button>
|
||||||
<el-button size="mini" class="button_box" type="primary" @click="handlePublish(scope.row)" v-if="isCreate && scope.row.status ==='0'">{{hasRelease?$t('global.release'):'申请发布'}}</el-button>
|
<el-button size="mini" class="button_box" type="primary" @click="handlePublish(scope.row)" v-if="isCreate && scope.row.status ==='0'">{{hasRelease?$t('global.release'):$t('planMonitor.applyRelease')}}</el-button>
|
||||||
<el-button size="mini" class="button_box" type="primary" @click="handlePreview(scope.row)" v-if="scope.row.status === '1'">预览</el-button>
|
<el-button size="mini" class="button_box" type="primary" @click="handlePreview(scope.row)" v-if="scope.row.status === '1'">{{$t('planMonitor.preview')}}</el-button>
|
||||||
<el-button size="mini" class="button_box" type="danger" @click="handelRevert(scope.row)" v-if="scope.row.status === '1'" >撤销</el-button>
|
<el-button size="mini" class="button_box" type="danger" @click="handelRevert(scope.row)" v-if="scope.row.status === '1'" >{{$t('planMonitor.revoke')}}</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
@ -185,41 +185,41 @@ export default {
|
|||||||
}).catch(() => { });
|
}).catch(() => { });
|
||||||
},
|
},
|
||||||
handlePublish(row) {
|
handlePublish(row) {
|
||||||
this.$confirm(this.hasRelease? '此操作将发布运行图,是否继续?':'此操作将发起运行图发布申请,是否继续?',this.$t('tip.hint'),{
|
this.$confirm(this.hasRelease? this.$t('tip.publishRunPlanTips'):this.$t('tip.applyRunPlanTips'),this.$t('tip.hint'),{
|
||||||
confirmButtonText: this.$t('tip.confirm'),
|
confirmButtonText: this.$t('tip.confirm'),
|
||||||
cancelButtonText: this.$t('tip.cancel'),
|
cancelButtonText: this.$t('tip.cancel'),
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
if (this.hasRelease){
|
if (this.hasRelease){
|
||||||
publishRunPlan(row.id,{runPlanName: name}).then(resp => {
|
publishRunPlan(row.id,{runPlanName: name}).then(resp => {
|
||||||
this.$message.success('发布运行图成功!');
|
this.$message.success(this.$t('tip.publishRunPlanSuccess'));
|
||||||
this.refresh();
|
this.refresh();
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
this.$messageBox('发布运行图失败!');
|
this.$messageBox(this.$t('tip.publishRunPlanFail'));
|
||||||
this.refresh();
|
this.refresh();
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
releaseOrCancelRunPlan(row.id, '1').then(resp => {
|
releaseOrCancelRunPlan(row.id, '1').then(resp => {
|
||||||
this.$message.success('提交运行图发布申请成功!');
|
this.$message.success(this.$t('tip.applyRunPlanSuccess'));
|
||||||
this.refresh();
|
this.refresh();
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
this.$messageBox('提交运行图发布申请失败!');
|
this.$messageBox(this.$t('tip.applyRunPlanFail'));
|
||||||
this.refresh();
|
this.refresh();
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handelRevert(row) {
|
handelRevert(row) {
|
||||||
this.$confirm('此操作将撤销发布运行图申请,是否继续?',this.$t('tip.hint'),{
|
this.$confirm(this.$t('tip.cancelRunPlanTips'),this.$t('tip.hint'),{
|
||||||
confirmButtonText: this.$t('tip.confirm'),
|
confirmButtonText: this.$t('tip.confirm'),
|
||||||
cancelButtonText: this.$t('tip.cancel'),
|
cancelButtonText: this.$t('tip.cancel'),
|
||||||
type:'warning'
|
type:'warning'
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
releaseOrCancelRunPlan(row.id,'0').then(resp=> {
|
releaseOrCancelRunPlan(row.id,'0').then(resp=> {
|
||||||
this.$message.success('撤销运行图发布申请成功!');
|
this.$message.success(this.$t('tip.cancelRunPlanSuccess'));
|
||||||
this.refresh();
|
this.refresh();
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
this.$messageBox('撤销运行图发布申请失败!')
|
this.$messageBox(this.$t('tip.cancelRunPlanFail'))
|
||||||
this.refresh();
|
this.refresh();
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
@ -243,8 +243,7 @@ export default {
|
|||||||
return lessonStatus;
|
return lessonStatus;
|
||||||
},
|
},
|
||||||
handleTime(time) {
|
handleTime(time) {
|
||||||
let timeList = time.split("T");
|
return time.replace("T"," ");
|
||||||
return timeList[0] + ' ' +timeList[1];
|
|
||||||
},
|
},
|
||||||
handlePreview(row){
|
handlePreview(row){
|
||||||
previewRunPlan(row.id).then(resp => {
|
previewRunPlan(row.id).then(resp => {
|
||||||
@ -269,41 +268,10 @@ export default {
|
|||||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||||
@import "src/styles/mixin.scss";
|
@import "src/styles/mixin.scss";
|
||||||
|
|
||||||
// .title {
|
.el-button+.el-button{
|
||||||
// font-weight: bold
|
margin-top:5px;
|
||||||
// }
|
margin-left: 0px;
|
||||||
|
}
|
||||||
// .time-item {
|
|
||||||
// font-size: 24px;
|
|
||||||
// color: black !important;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// .time-label {
|
|
||||||
// display: -moz-inline-box;
|
|
||||||
// display: inline-block;
|
|
||||||
// text-align: right;
|
|
||||||
// margin-left: 14px;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// .time-elem {
|
|
||||||
// color: rgb(90, 89, 89) !important;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// .list-item {
|
|
||||||
// font-size: 16px;
|
|
||||||
// margin-bottom: 20px;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// .list-label {
|
|
||||||
// display: -moz-inline-box;
|
|
||||||
// display: inline-block;
|
|
||||||
// text-align: right;
|
|
||||||
// /* width: 160px; */
|
|
||||||
// }
|
|
||||||
|
|
||||||
// .list-elem {
|
|
||||||
// color: #808080 !important;
|
|
||||||
// }
|
|
||||||
|
|
||||||
.createRunPlan{
|
.createRunPlan{
|
||||||
display:inline-block;float:right;margin-right:20px;
|
display:inline-block;float:right;margin-right:20px;
|
||||||
|
Loading…
Reference in New Issue
Block a user