mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-22 09:10:25 +08:00
增加IP级别和WAF动作
This commit is contained in:
@@ -1,26 +1,38 @@
|
||||
Tea.context(function () {
|
||||
this.updateAllRead = function () {
|
||||
let that = this
|
||||
teaweb.confirm("确定要设置所有的未读消息为已读吗?", function () {
|
||||
that.$post("/messages/readAll")
|
||||
.success(function () {
|
||||
window.location = "/messages"
|
||||
})
|
||||
})
|
||||
}
|
||||
this.updateAllRead = function () {
|
||||
let that = this
|
||||
teaweb.confirm("确定要设置所有的未读消息为已读吗?", function () {
|
||||
that.$post("/messages/readAll")
|
||||
.success(function () {
|
||||
// 刷新父级页面Badge
|
||||
if (window.parent.Tea != null && window.parent.Tea.Vue != null) {
|
||||
window.parent.Tea.Vue.checkMessagesOnce()
|
||||
}
|
||||
|
||||
this.updatePageRead = function () {
|
||||
let that = this
|
||||
teaweb.confirm("确定要设置当前页的未读消息为已读吗?", function () {
|
||||
let messageIds = []
|
||||
that.messages.forEach(function (v) {
|
||||
messageIds.push(v.id)
|
||||
})
|
||||
that.$post("/messages/readPage")
|
||||
.params({
|
||||
messageIds: messageIds
|
||||
})
|
||||
.refresh()
|
||||
})
|
||||
}
|
||||
window.location = "/messages"
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
this.updatePageRead = function () {
|
||||
let that = this
|
||||
teaweb.confirm("确定要设置当前页的未读消息为已读吗?", function () {
|
||||
let messageIds = []
|
||||
that.messages.forEach(function (v) {
|
||||
messageIds.push(v.id)
|
||||
})
|
||||
that.$post("/messages/readPage")
|
||||
.params({
|
||||
messageIds: messageIds
|
||||
})
|
||||
.success(function () {
|
||||
// 刷新父级页面Badge
|
||||
if (window.parent.Tea != null && window.parent.Tea.Vue != null) {
|
||||
window.parent.Tea.Vue.checkMessagesOnce()
|
||||
}
|
||||
|
||||
teaweb.reload()
|
||||
})
|
||||
})
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user