IP名单中的IP增加添加日期显示

This commit is contained in:
GoEdgeLab
2021-11-15 11:31:54 +08:00
parent 50334b9544
commit d0b5e99883
18 changed files with 79 additions and 15 deletions

View File

@@ -36,6 +36,9 @@ Vue.component("ip-list-table", {
<td>
<span v-if="item.type != 'all'"><keyword :v-word="keyword">{{item.ipFrom}}</keyword><span v-if="item.ipTo.length > 0"> - <keyword :v-word="keyword">{{item.ipTo}}</keyword></span></span>
<span v-else class="disabled">*</span>
<div v-if="item.createdTime != null">
<span class="small disabled">添加于 {{item.createdTime}}</span>
</div>
</td>
<td>
<span v-if="item.type.length == 0">IPv4</span>

View File

@@ -38,6 +38,7 @@
<div class="ui divider" style="margin-bottom: 0"></div>
<second-menu v-if="logs.length > 0">
<a href="" class="item" @click.prevent="updatePageRead()">[本页已读]</a>
<a href="" class="item" @click.prevent="updateAllRead()">[全部已读]</a>
</second-menu>
</div>

View File

@@ -18,12 +18,24 @@ Tea.context(function () {
let logIds = this.logs.map(function (v) {
return v.id
})
this.$post(".readLogs")
.params({
logIds: logIds
})
.success(function () {
teaweb.reload()
})
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()
})
})
}
})

View File

@@ -5,6 +5,7 @@
<second-menu v-if="logs.length > 0">
<a href="" class="item" @click.prevent="updatePageRead()">[本页已读]</a>
<a href="" class="item" @click.prevent="updateAllRead()">[全部已读]</a>
</second-menu>
<table class="ui table selectable celled" v-if="logs.length > 0">

View File

@@ -13,12 +13,24 @@ Tea.context(function () {
let logIds = this.logs.map(function (v) {
return v.id
})
this.$post(".readEvents")
.params({
logIds: logIds
})
.success(function () {
teaweb.reload()
})
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()
})
})
}
})

View File

@@ -40,7 +40,7 @@
</td>
<td>{{list.description}}</td>
<td class="center">
<span v-if="list.countItems > 0">{{list.countItems}}</span>
<a :href="'/servers/iplists/items?listId=' + list.id" v-if="list.countItems > 0">{{list.countItems}}</a>
<span v-else class="disabled">0</span>
</td>
<td>