You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{{template "header" }}
|
|
|
|
<div id="app" style="width:100%">
|
|
|
|
<template>
|
|
|
|
<el-container v-loading.fullscreen.lock="fullscreenLoading">
|
|
|
|
|
|
|
|
<el-main class="mainMain">
|
|
|
|
<el-table
|
|
|
|
:data="ipblackList"
|
|
|
|
border
|
|
|
|
style="width: 100%">
|
|
|
|
<el-table-column
|
|
|
|
prop="ip"
|
|
|
|
label="黑IP">
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="create_at"
|
|
|
|
label="添加时间">
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="id"
|
|
|
|
label="操作">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button @click="deleteIpblack(scope.row.ip)" type="danger" size="small" plain>删除</el-button>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-main>
|
|
|
|
|
|
|
|
</el-container>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
{{template "setting_bottom" .}}
|