|
@@ -44,7 +44,12 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
legendObj: any = null;
|
|
|
// 静态服务器路径
|
|
|
public imgServeUrl: string = '';
|
|
|
-
|
|
|
+ // 联通方式
|
|
|
+ public uninType: object = {
|
|
|
+ wantou: '',
|
|
|
+ santong: '',
|
|
|
+ sitong: ''
|
|
|
+ }
|
|
|
constructor() {
|
|
|
super()
|
|
|
// 选择绑定选额item事件
|
|
@@ -160,7 +165,7 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
// 添加信息点
|
|
|
this.addInfoPoint(event, this.editCmd);
|
|
|
this.clearCmdStatus();
|
|
|
- }else if (this.editCmd == "") {
|
|
|
+ } else if (this.editCmd == "") {
|
|
|
super.onMouseDown(event);
|
|
|
}
|
|
|
}
|
|
@@ -191,12 +196,6 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
* @param cmd 命令
|
|
|
*/
|
|
|
addPipeUninTool(event: SMouseEvent, cmd: string): void {
|
|
|
- const cmdList = {
|
|
|
- 'wantou': 2,
|
|
|
- 'santong': 3,
|
|
|
- 'sitong': 4,
|
|
|
- }
|
|
|
-
|
|
|
const data = {
|
|
|
/** 名称 */
|
|
|
name: '基础管道接头',
|
|
@@ -209,19 +208,19 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
type: "BasePipeUninTool",
|
|
|
},
|
|
|
style: {
|
|
|
- uninToolType: cmdList[cmd] ? cmdList[cmd] : 2, //2,3,4 分别分二头连接器、三头连接器、四头连接器
|
|
|
+ uninToolType: cmd, //分别分二头连接器、三头连接器、四头连接器
|
|
|
default: {
|
|
|
strokecolor: "#c0ccda",
|
|
|
+ url: this.uninType[cmd]
|
|
|
}
|
|
|
}
|
|
|
};
|
|
|
|
|
|
const item = new SBasePipeUninTool(null, data);
|
|
|
- item.status = SItemStatus.Create;
|
|
|
+ item.url = this.imgServeUrl + this.uninType[cmd];
|
|
|
item.selectable = true;
|
|
|
item.moveable = true;
|
|
|
this.addItem(item);
|
|
|
- this.grabItem = item;
|
|
|
this.finishCreated(item)
|
|
|
item.connect("onContextMenu", this, this.getItem);
|
|
|
if (this.view) {
|
|
@@ -436,7 +435,7 @@ export class PTopoScene extends SBaseEditScene {
|
|
|
*/
|
|
|
save(isAll: boolean = true) {
|
|
|
if (!this.view) return;
|
|
|
- const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect', 'BaseArrowPolygon','InfoPoint'];
|
|
|
+ const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect', 'BaseArrowPolygon', 'InfoPoint', 'BasePipeUninTool'];
|
|
|
const NodeType: string[] = ['BaseEquipment'];
|
|
|
const RelationType: string[] = ["BasePipe"];
|
|
|
const markers: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
|