Lin_Ye_Fang_Huo/public/widgets/plotGroupName/widget.js

52 lines
1.2 KiB
JavaScript
Raw Normal View History

2023-07-18 09:04:15 +08:00
(function (window, mars3d) {
2023-07-08 15:37:34 +08:00
//创建widget类需要继承BaseWidget
class MyWidget extends mars3d.widget.BaseWidget {
//外部资源配置
get resources() {
2023-07-18 09:04:15 +08:00
return ["view.css"];
2023-07-08 15:37:34 +08:00
}
//弹窗配置
get view() {
return {
2023-07-18 09:04:15 +08:00
type: "divwindow",
url: "view.html",
2023-07-08 15:37:34 +08:00
windowOptions: {
width: 250,
height: 100,
},
2023-07-18 09:04:15 +08:00
};
2023-07-08 15:37:34 +08:00
}
//每个窗口创建完成后调用
winCreateOK(opt, result) {
2023-07-18 09:04:15 +08:00
var that = this;
2023-07-08 15:37:34 +08:00
2023-07-18 09:04:15 +08:00
$("#txt_editName").val(this.config.data || "");
2023-07-08 15:37:34 +08:00
2023-07-18 09:04:15 +08:00
$("#btnEditNameOK").click(function () {
var name = $.trim($("#txt_editName").val());
2023-07-08 15:37:34 +08:00
if (that.config.checkName) {
2023-07-18 09:04:15 +08:00
var res = that.config.checkName(name);
2023-07-08 15:37:34 +08:00
if (res) {
2023-07-18 09:04:15 +08:00
haoutil.msg("存在同名分组,请修改");
return;
2023-07-08 15:37:34 +08:00
}
}
2023-07-18 09:04:15 +08:00
that.config.callback(name);
that.disableBase();
});
2023-07-08 15:37:34 +08:00
}
//激活插件
activate() {}
//释放插件
disable() {}
}
//注册到widget管理器中。
2023-07-18 09:04:15 +08:00
mars3d.widget.bindClass(MyWidget);
2023-07-08 15:37:34 +08:00
//每个widet之间都是直接引入到index.html中会存在彼此命名冲突所以闭包处理下。
2023-07-18 09:04:15 +08:00
})(window, mars3d);