This commit is contained in:
joylink_cuiweidong 2021-09-16 15:02:52 +08:00
commit 982f383981
2 changed files with 3 additions and 3 deletions

View File

@ -36,11 +36,11 @@ export function TdtList() {
let pos = stationData[k].mesh.position;
if(stationData[k].stands[i].right == true){
newmesh.rotation.y = -Math.PI/2;
newmesh.position.set(pos.x+75,0,pos.z+12.8);
newmesh.position.set(pos.x+72,0,pos.z+14.5);
}else{
newmesh.rotation.y = Math.PI/2;
newmesh.position.set(pos.x-75,0,pos.z-12.8);
newmesh.position.set(pos.x-72,0,pos.z-14.5);
}

View File

@ -675,7 +675,7 @@ const map = {
((item.stationCodeList.includes(stationCode) && item.elementList.includes(deviceCode)) || !stationCode)
) {
flag = true;
} else if (store.state.training.prdType === '02' && item.type === 'CENTER' && item.elementList.includes(deviceCode)) {
} else if (['02', '04', '05'].includes(store.state.training.prdType) && item.type === 'CENTER' && item.elementList.includes(deviceCode)) {
flag = true;
} else if (store.state.training.prdType === '09' && item.type === 'DEPOT_IL' && item.stationCodeList.includes(stationCode) && item.elementList.includes(deviceCode)) {
flag = true;