代码调整

This commit is contained in:
joylink_cuiweidong 2020-03-10 20:24:24 +08:00
parent 27c8b0204e
commit 0db45c3956
3 changed files with 7 additions and 127 deletions

View File

@ -45,9 +45,6 @@ export default class Section extends Group {
this.creatRelease(); // 创建延时释放
this.createSeparator(); // 创建分隔符
this.createTurnBack(); // 创建成都三号线 折返箭头
// if (this.style.Section.trainPosition.display) {
// this.createTriangle(); // 创建成都一号线 列车精确位置
// }
if (model.type === '01' && model.type === '03') {
this.createAxles(); // 创建计轴
}
@ -652,121 +649,6 @@ export default class Section extends Group {
}
}
// updateTriangle(model) {
// if(model.offsetp)
// // if (model.right && model.points.length > 1) {
// // this.triangle.setModel([model.points[0].x + (model.points[1].x - model.points[0].x) * model.offsetp, model.points[0].y]);
// // }
// this.triangle.show();
// }
// createTriangle() {
// const model = this.model;
// this.triangleL = new ETriangle({
// style: this.style,
// zlevel: this.zlevel,
// z:10,
// right: 0,
// point:{x:model.points[model.points.length - 1].x, y:model.points[model.points.length - 1].y}
// });
// this.triangleR = new ETriangle({
// style: this.style,
// zlevel: this.zlevel,
// z:10,
// right: 1,
// point:{x:model.points[0].x, y:model.points[0].y}
// });
// this.add(this.triangleL);
// this.add(this.triangleR);
// }
// 成都一号线列车的精确位置
// updateTriangle() {
// const model = this.model;
// // debugger;
// // if (model.hideOld) {
// // // debugger;
// // if (model.right == 1) {
// // this.triangleR.hide();
// // } else {
// // this.triangleL.hide();
// // }
// // }
// if (model.right != undefined && model.offsetp != undefined && model.points.length > 1) {
// const newX = model.points[0].x + (model.points[1].x - model.points[0].x) * model.offsetp;
// const newY = model.points[0].y + (model.points[1].y - model.points[0].y) * model.offsetp;
// if (!model.oldX && !model.oldY) {
// model.oldX = this.triangleL.model.point.x;
// model.oldY = this.triangleL.model.point.y;
// }
// if (model.right == 1) {
// if (model.hideOld) {
// // debugger;
// this.triangleR.hide();
// }
// this.triangleL.hide();
// this.triangleR.show();
// this.triangleR.position = [newX - model.oldX, newY - model.oldY];
// // const runner = this.triangleR.animate('position', false).when(100, [newX - model.oldX, newY - model.oldY]);
// // runner.done(function() {
// // runner.stop();
// // data.hide();
// // model.oldX = newX;
// // model.oldY = newY;
// // }).start();
// } else {
// if (model.hideOld) {
// this.triangleL.hide();
// }
// this.triangleR.hide();
// this.triangleL.show();
// this.triangleL.position = [newX - model.oldX, newY - model.oldY];
// // const runner = this.triangleL.animate('position', false).when(100, [newX - model.oldX, newY - model.oldY]);
// // runner.done(function() {
// // // debugger;
// // runner.stop();
// // data.hide();
// // model.oldX = newX;
// // model.oldY = newY;
// // }).start();
// // stopAnimation(true)
// }
// // if (!model.hasTriangle) {
// // this.triangle = new ETriangle({
// // style: this.style,
// // zlevel: this.zlevel,
// // z:1000,
// // right: model.right,
// // point:{x:model.points[0].x + (model.points[1].x - model.points[0].x) * model.offsetp, y:model.points[0].y}
// // });
// // /** 添加视图*/
// // this.add(this.triangle);
// // model.hasTriangle = true;
// // } else {
// // // debugger;
// // console.log(2222222);
// // const newX = model.points[0].x + (model.points[1].x - model.points[0].x) * model.offsetp;
// // const newY = model.points[0].y;
// // // debugger;
// // if (this.triangle) {
// // if (model.offsetp >= 1) {
// // this.remove(this.triangle);
// // model.hasTriangle = false;
// // } else {
// // // this.remove(this.triangle);
// // // model.hasTriangle = false;
// // const runner = this.triangle.animate('position', true).when(100, [newX - this.triangle.model.point.x, newY - this.triangle.model.point.y]);
// // runner.start();
// // }
// // // this.triangle.position = [newX - this.triangle.model.point.x, newY - this.triangle.model.point.y];
// // // this.triangle.dirty();
// // }
// // }
// }
// }
/** 封锁 06*/
block() {
if (this.style.Section.block.special) {
@ -926,8 +808,6 @@ export default class Section extends Group {
}
/** 道岔保护区段锁闭 */
model.overlapLock && this.protectiveLock();
// /** 成都一号线列车精确位置 */
// model.offsetp && this.updateTriangle();
/** 空闲锁闭或者叫进路锁闭 */
model.routeLock && this.routeLock();
/** 轨道封锁 */

View File

@ -42,11 +42,11 @@ export default class ETriangle extends Group {
const data = [[model.x + 10 * trainRight, model.y], [model.x, model.y - 6], [model.x, model.y + 6]];
// this.angle.shape.points.push([model.x + 10 * trainRight, model.y]);
// this.angle.attr('shape', { points: this.angle.shape.points });
// this.angle.attr({
// shape: {
// points:data
// }
// });
this.angle.attr({
shape: {
points:data
}
});
// const object = this.angle;
this.angle.animateTo({
shape: {

View File

@ -3,9 +3,9 @@ export function getBaseUrl() {
let BASE_API;
if (process.env.NODE_ENV === 'development') {
// BASE_API = 'https://joylink.club/jlcloud';
// BASE_API = 'https://test.joylink.club/jlcloud';
BASE_API = 'https://test.joylink.club/jlcloud';
// BASE_API = 'http://192.168.3.5:9000'; // 袁琪
BASE_API = 'http://192.168.3.6:9000'; // 旭强
// BASE_API = 'http://192.168.3.6:9000'; // 旭强
// BASE_API = 'http://192.168.3.41:9000'; // 张赛
// BASE_API = 'http://192.168.3.82:9000'; // 杜康
// BASE_API = 'http://b29z135112.zicp.vip';