13 lines
242 B
JavaScript
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
|
|
}
|
|
}) |