243 lines
6.9 KiB
Plaintext
243 lines
6.9 KiB
Plaintext
<template>
|
||
<view class="admin-page">
|
||
<view class="admin-sections">
|
||
<!-- 搜索栏 -->
|
||
<view class="admin-card filter-card">
|
||
<view class="filter-row">
|
||
<view class="filter-item">
|
||
<text class="label">选择时间:</text>
|
||
<view class="filter-date-range">
|
||
<input class="filter-input date-input" placeholder="开始日期" />
|
||
<text class="date-sep">-</text>
|
||
<input class="filter-input date-input" placeholder="结束日期" />
|
||
</view>
|
||
</view>
|
||
<view class="filter-item">
|
||
<text class="label">名称:</text>
|
||
<view class="filter-select">
|
||
<text class="select-placeholder">请选择</text>
|
||
<text class="arrow">▼</text>
|
||
</view>
|
||
</view>
|
||
<view class="filter-item">
|
||
<text class="label">链接:</text>
|
||
<input class="filter-input" placeholder="请输入链接" />
|
||
</view>
|
||
<view class="filter-item">
|
||
<text class="label">IP:</text>
|
||
<input class="filter-input" placeholder="请输入IP" />
|
||
</view>
|
||
<button class="btn primary" @click="onSearch">搜索</button>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 内容区 -->
|
||
<view class="admin-card content-card">
|
||
<!-- 表格 -->
|
||
<view class="table-container list-table">
|
||
<view class="table-header">
|
||
<view class="col col-id"><text>ID</text></view>
|
||
<view class="col col-user"><text>ID/名称</text></view>
|
||
<view class="col col-action"><text>操作</text></view>
|
||
<view class="col col-link"><text>链接</text></view>
|
||
<view class="col col-ip"><text>操作IP</text></view>
|
||
<view class="col col-type"><text>类型</text></view>
|
||
<view class="col col-time"><text>操作时间</text></view>
|
||
</view>
|
||
|
||
<view class="table-body">
|
||
<view v-for="item in dataList" :key="item.id" class="table-row">
|
||
<view class="col col-id"><text>{{ item.id }}</text></view>
|
||
<view class="col col-user"><text>{{ item.user }}</text></view>
|
||
<view class="col col-action"><text>{{ item.action }}</text></view>
|
||
<view class="col col-link"><text>{{ item.link }}</text></view>
|
||
<view class="col col-ip"><text>{{ item.ip }}</text></view>
|
||
<view class="col col-type"><text>{{ item.type }}</text></view>
|
||
<view class="col col-time"><text>{{ item.time }}</text></view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 分页 -->
|
||
<view class="pagination">
|
||
<text class="page-info">共 583387 条 15条/页</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script setup lang="uts">
|
||
import { ref } from 'vue'
|
||
|
||
const dataList = ref([
|
||
{ id: 585387, user: '5 / demo', action: '系统日志', link: 'system/log', ip: '223.104.72.77', type: 'system', time: '2026-02-11 18:49' },
|
||
{ id: 585386, user: '5 / demo', action: '系统日志管理员搜索条件', link: 'system/log/search_admin', ip: '223.104.72.77', type: 'system', time: '2026-02-11 18:49' },
|
||
{ id: 585385, user: '5 / demo', action: '自定义事件类型', link: 'system/event/mark', ip: '223.104.72.77', type: 'system', time: '2026-02-11 18:49' },
|
||
{ id: 585384, user: '5 / demo', action: '自定义事件列表', link: 'system/event/list', ip: '223.104.72.77', type: 'system', time: '2026-02-11 18:49' },
|
||
{ id: 585383, user: '5 / demo', action: '积分配置编辑表单', link: 'marketing/integral_config/edit_basics', ip: '223.104.72.77', type: 'system', time: '2026-02-11 18:48' },
|
||
{ id: 585382, user: '5 / demo', action: '基本配置编辑头部数据', link: 'setting/config/header_basics', ip: '223.104.72.77', type: 'system', time: '2026-02-11 18:48' },
|
||
{ id: 585381, user: '5 / demo', action: '保存权限菜单', link: 'setting/menus', ip: '223.104.72.77', type: 'system', time: '2026-02-11 18:48' },
|
||
{ id: 585380, user: '5 / demo', action: '定时任务类型', link: 'system/crontab/mark', ip: '223.104.72.77', type: 'system', time: '2026-02-11 18:47' },
|
||
{ id: 585379, user: '5 / demo', action: '定时任务列表', link: 'system/crontab/list', ip: '223.104.72.77', type: 'system', time: '2026-02-11 18:47' },
|
||
{ id: 585378, user: '5 / demo', action: '保存组合数据', link: 'setting/group', ip: '223.104.72.77', type: 'system', time: '2026-02-11 18:47' },
|
||
{ id: 585377, user: '5 / demo', action: '保存系统配置分类', link: 'setting/config_class', ip: '223.104.72.77', type: 'system', time: '2026-02-11 18:47' }
|
||
])
|
||
|
||
function onSearch() {
|
||
uni.showToast({ title: '搜索中...', icon: 'none' })
|
||
}
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.admin-page {
|
||
padding: 20px;
|
||
background-color: #f5f7f9;
|
||
min-height: 100vh;
|
||
}
|
||
|
||
.admin-card {
|
||
background-color: #fff;
|
||
border-radius: 4px;
|
||
padding: 20px;
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.filter-row {
|
||
display: flex;
|
||
flex-direction: row;
|
||
flex-wrap: wrap;
|
||
align-items: center;
|
||
gap: 16px;
|
||
}
|
||
|
||
.filter-item {
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
}
|
||
|
||
.label {
|
||
font-size: 14px;
|
||
color: #333;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.filter-date-range {
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
border: 1px solid #d9d9d9;
|
||
border-radius: 2px;
|
||
padding: 0 10px;
|
||
height: 32px;
|
||
}
|
||
|
||
.date-input {
|
||
width: 100px;
|
||
border: none;
|
||
height: 100%;
|
||
}
|
||
|
||
.date-sep {
|
||
margin: 0 8px;
|
||
color: #bfbfbf;
|
||
}
|
||
|
||
.filter-select {
|
||
width: 120px;
|
||
height: 32px;
|
||
border: 1px solid #d9d9d9;
|
||
border-radius: 2px;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding: 0 10px;
|
||
}
|
||
|
||
.select-placeholder {
|
||
color: #bfbfbf;
|
||
font-size: 14px;
|
||
}
|
||
|
||
.arrow {
|
||
font-size: 10px;
|
||
color: #bfbfbf;
|
||
}
|
||
|
||
.filter-input {
|
||
width: 150px;
|
||
height: 32px;
|
||
border: 1px solid #d9d9d9;
|
||
border-radius: 2px;
|
||
padding: 0 10px;
|
||
font-size: 14px;
|
||
}
|
||
|
||
.btn {
|
||
height: 32px;
|
||
padding: 0 20px;
|
||
border-radius: 2px;
|
||
font-size: 14px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
cursor: pointer;
|
||
border: 1px solid #d9d9d9;
|
||
background-color: #fff;
|
||
}
|
||
|
||
.btn.primary {
|
||
background-color: #1890ff;
|
||
border-color: #1890ff;
|
||
color: #fff;
|
||
}
|
||
|
||
.table-container {
|
||
width: 100%;
|
||
border: 1px solid #f0f0f0;
|
||
}
|
||
|
||
.table-header {
|
||
display: flex;
|
||
flex-direction: row;
|
||
background-color: #fafafa;
|
||
border-bottom: 1px solid #f0f0f0;
|
||
}
|
||
|
||
.table-row {
|
||
display: flex;
|
||
flex-direction: row;
|
||
border-bottom: 1px solid #f0f0f0;
|
||
}
|
||
|
||
.col {
|
||
padding: 12px 16px;
|
||
display: flex;
|
||
align-items: center;
|
||
font-size: 14px;
|
||
color: #333;
|
||
}
|
||
|
||
.col-id { width: 80px; }
|
||
.col-user { width: 120px; }
|
||
.col-action { flex: 2; }
|
||
.col-link { flex: 2; }
|
||
.col-ip { width: 150px; }
|
||
.col-type { width: 100px; }
|
||
.col-time { width: 180px; }
|
||
|
||
.pagination {
|
||
margin-top: 20px;
|
||
display: flex;
|
||
justify-content: flex-end;
|
||
}
|
||
|
||
.page-info {
|
||
font-size: 14px;
|
||
color: #999;
|
||
}
|
||
</style>
|
||
|