|
@@ -729,7 +729,6 @@ export class EditScence extends SGraphScene {
|
|
|
*/
|
|
|
deleiteItem(): void {
|
|
|
console.log("deleiteItem");
|
|
|
-
|
|
|
if (this.focusItem) {
|
|
|
if (
|
|
|
(this.focusItem instanceof SZoneLegendItem ||
|
|
@@ -1420,15 +1419,63 @@ export class EditScence extends SGraphScene {
|
|
|
// 4aa6051e025d4193a776a5b2d2604ed8 //冷却塔1
|
|
|
// ece9f93ffc754035bcec2e8f27d66a59 //冷却塔2
|
|
|
*/
|
|
|
-
|
|
|
- let equipmentItem = new SEquipmentItem(null, {
|
|
|
- 名称: "设备1",
|
|
|
- 温度: "25℃",
|
|
|
- });
|
|
|
+ let data = {
|
|
|
+ ID: uuid(), // ID
|
|
|
+ Name: "3#冷冻泵", // 名称
|
|
|
+ AttachObjectIds: ["Eq001", "Eq002"], // 返回工程信息化对象 ID 列表
|
|
|
+ Pos: { X: event.x, Y: event.y }, // 位置
|
|
|
+ Size: { Width: 80, Height: 80 }, // 大小
|
|
|
+ InfoList: [
|
|
|
+ {
|
|
|
+ Code: "", // 对应设备的信息点
|
|
|
+ Name: "温度", //信息点名称
|
|
|
+ X: 30,
|
|
|
+ Y: 20,
|
|
|
+ Width: 100,
|
|
|
+ Height: 25,
|
|
|
+ FontSize: 12,
|
|
|
+ Background: "#ffffff",
|
|
|
+ TextAlign: "",
|
|
|
+ Color: "#000000",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ Code: "", // 对应设备的信息点
|
|
|
+ Name: "湿度", //信息点名称
|
|
|
+ X: 40,
|
|
|
+ Y: 28,
|
|
|
+ Width: 100,
|
|
|
+ Height: 25,
|
|
|
+ FontSize: 12,
|
|
|
+ Background: "#ffffff",
|
|
|
+ TextAlign: "",
|
|
|
+ Color: "#000000",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ Properties: {
|
|
|
+ StatusImage: [
|
|
|
+ {
|
|
|
+ Status: "Running", // 运行
|
|
|
+ ImageKey: "14d978b7edd346f088d6cfb53ada4070",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ Status: "Stop", // 停止
|
|
|
+ ImageKey: "4aa6051e025d4193a776a5b2d2604ed8",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ Status: "Selected", // 选择
|
|
|
+ ImageKey: "ece9f93ffc754035bcec2e8f27d66a59",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ Status: "Warning", // 报警
|
|
|
+ ImageKey: "",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ }, // 由应用自己定义
|
|
|
+ };
|
|
|
+ let equipmentItem = new SEquipmentItem(null, data);
|
|
|
console.log(event.x, event.y);
|
|
|
- equipmentItem.moveTo(event.x, event.y);
|
|
|
- equipmentItem.imgKey = "4aa6051e025d4193a776a5b2d2604ed8";
|
|
|
- this.equipmentItem.push(equipmentItem);
|
|
|
+ equipmentItem.selectable = true;
|
|
|
+ this.Nodes.push(equipmentItem);
|
|
|
this.addItem(equipmentItem);
|
|
|
// this.grabItem = equipmentItem;
|
|
|
// this.focusItem = equipmentItem;
|