14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
Tea.context(function () {
|
|
if (typeof this.apps == "undefined") {
|
|
this.apps = [];
|
|
}
|
|
|
|
this.createApp = function () {
|
|
teaweb.popup("/httpdns/apps/createPopup", {
|
|
height: "26em",
|
|
width: "48em",
|
|
title: "添加应用"
|
|
});
|
|
};
|
|
});
|