mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-10 17:30:29 +08:00
36 lines
719 B
JavaScript
36 lines
719 B
JavaScript
Tea.context(function () {
|
|
this.updateRead = function (logId) {
|
|
this.$post(".readLogs")
|
|
.params({
|
|
logIds: [logId]
|
|
})
|
|
.success(function () {
|
|
teaweb.reload()
|
|
})
|
|
}
|
|
|
|
this.updatePageRead = function () {
|
|
let logIds = this.logs.map(function (v) {
|
|
return v.id
|
|
})
|
|
teaweb.confirm("确定要设置本页日志为已读吗?", function () {
|
|
this.$post(".readLogs")
|
|
.params({
|
|
logIds: logIds
|
|
})
|
|
.success(function () {
|
|
teaweb.reload()
|
|
})
|
|
})
|
|
}
|
|
|
|
this.updateAllRead = function () {
|
|
teaweb.confirm("确定要设置所有日志为已读吗?", function () {
|
|
this.$post(".readAllLogs")
|
|
.params({})
|
|
.success(function () {
|
|
teaweb.reload()
|
|
})
|
|
})
|
|
}
|
|
}) |