Files
waf-platform/EdgeAdmin/web/views/@default/settings/ip-library/upload.js
2026-02-04 20:27:13 +08:00

13 lines
242 B
JavaScript

Tea.context(function () {
this.success = NotifySuccess("上传成功", "/settings/ip-library")
this.isUploading = false
this.before = function () {
this.isUploading = true
}
this.done = function () {
this.isUploading = false
}
})