主要更新: - 添加 MySQL 触发器实现 task_status 表到其他表的状态级联 - 移除控制器中的多表状态检查代码 - 完善做同款功能,支持参数传递 - 支付宝 USD 转 CNY 汇率转换 - 修复状态枚举映射问题 注意: 触发器仅在 task_status 更新时触发,部分代码仍直接更新业务表
355 lines
13 KiB
HTML
355 lines
13 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN" xmlns:th="http://www.thymeleaf.org" th:fragment="layout(title, content)">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title th:replace="${title}">AIGC Demo</title>
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Font Awesome -->
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
|
|
<!-- Custom CSS -->
|
|
<style>
|
|
:root {
|
|
--primary-color: #0d6efd;
|
|
--secondary-color: #6c757d;
|
|
--success-color: #198754;
|
|
--danger-color: #dc3545;
|
|
--warning-color: #ffc107;
|
|
--info-color: #0dcaf0;
|
|
--light-color: #f8f9fa;
|
|
--dark-color: #212529;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: 600;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.navbar-nav .nav-link {
|
|
font-weight: 500;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.navbar-nav .nav-link:hover {
|
|
color: var(--primary-color) !important;
|
|
}
|
|
|
|
.main-content {
|
|
min-height: calc(100vh - 200px);
|
|
padding: 2rem 0;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
|
transition: box-shadow 0.15s ease-in-out;
|
|
}
|
|
|
|
.card:hover {
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.btn {
|
|
font-weight: 500;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn:hover {
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.footer {
|
|
background-color: var(--dark-color);
|
|
color: white;
|
|
padding: 2rem 0;
|
|
margin-top: auto;
|
|
}
|
|
|
|
.sidebar {
|
|
background: white;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
|
padding: 1.5rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.sidebar .nav-link {
|
|
color: var(--secondary-color);
|
|
padding: 0.75rem 1rem;
|
|
border-radius: 0.375rem;
|
|
margin-bottom: 0.25rem;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.sidebar .nav-link:hover,
|
|
.sidebar .nav-link.active {
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
.stats-card {
|
|
background: linear-gradient(135deg, var(--primary-color), #0056b3);
|
|
color: white;
|
|
border-radius: 1rem;
|
|
padding: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.stats-card .stats-icon {
|
|
font-size: 2.5rem;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.table {
|
|
background: white;
|
|
border-radius: 0.5rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.table thead th {
|
|
background-color: var(--light-color);
|
|
border-bottom: 2px solid var(--primary-color);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.alert {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.form-control:focus {
|
|
border-color: var(--primary-color);
|
|
box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
|
|
}
|
|
|
|
.loading {
|
|
display: none;
|
|
}
|
|
|
|
.loading.show {
|
|
display: block;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.main-content {
|
|
padding: 1rem 0;
|
|
}
|
|
|
|
.sidebar {
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<!-- Page specific styles -->
|
|
<th:block th:fragment="page-styles">
|
|
<!-- Additional page-specific styles -->
|
|
</th:block>
|
|
</head>
|
|
<body>
|
|
<!-- Navigation -->
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
|
|
<div class="container">
|
|
<a class="navbar-brand" th:href="@{/}">
|
|
<i class="fas fa-rocket me-2"></i>AIGC Demo
|
|
</a>
|
|
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav me-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link" th:href="@{/}" th:classappend="${#httpServletRequest != null && #httpServletRequest.requestURI == '/'} ? 'active' : ''">
|
|
<i class="fas fa-home me-1"></i>首页
|
|
</a>
|
|
</li>
|
|
<li class="nav-item" sec:authorize="hasRole('ADMIN')">
|
|
<a class="nav-link" th:href="@{/settings}" th:classappend="${#httpServletRequest != null && #strings.startsWith(#httpServletRequest.requestURI, '/settings')} ? 'active' : ''">
|
|
<i class="fas fa-gear me-1"></i>系统设置
|
|
</a>
|
|
</li>
|
|
<li class="nav-item" sec:authorize="hasRole('ADMIN')">
|
|
<a class="nav-link" th:href="@{/users}" th:classappend="${#httpServletRequest != null && #strings.startsWith(#httpServletRequest.requestURI, '/users')} ? 'active' : ''">
|
|
<i class="fas fa-users me-1"></i>用户管理
|
|
</a>
|
|
</li>
|
|
<li class="nav-item" sec:authorize="isAuthenticated()">
|
|
<a class="nav-link" th:href="@{/payment/create}" th:classappend="${#httpServletRequest != null && #strings.startsWith(#httpServletRequest.requestURI, '/payment')} ? 'active' : ''">
|
|
<i class="fas fa-credit-card me-1"></i>支付管理
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<ul class="navbar-nav">
|
|
<li class="nav-item dropdown" sec:authorize="isAuthenticated()">
|
|
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown">
|
|
<i class="fas fa-user me-1"></i>
|
|
<span sec:authentication="name">用户</span>
|
|
</a>
|
|
<ul class="dropdown-menu">
|
|
<li><a class="dropdown-item" th:href="@{/payment/history}">
|
|
<i class="fas fa-history me-2"></i>支付记录
|
|
</a></li>
|
|
<li><hr class="dropdown-divider"></li>
|
|
<li>
|
|
<form th:action="@{/logout}" method="post" class="d-inline">
|
|
<button type="submit" class="dropdown-item">
|
|
<i class="fas fa-sign-out-alt me-2"></i>退出登录
|
|
</button>
|
|
</form>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
<li class="nav-item" sec:authorize="!isAuthenticated()">
|
|
<a class="nav-link" th:href="@{/login}">
|
|
<i class="fas fa-sign-in-alt me-1"></i>登录
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Main Content -->
|
|
<div class="main-content">
|
|
<div class="container">
|
|
<!-- Breadcrumb -->
|
|
<nav aria-label="breadcrumb" th:if="${breadcrumbs}">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item" th:each="crumb, iterStat : ${breadcrumbs}"
|
|
th:classappend="${iterStat.last} ? 'active' : ''">
|
|
<a th:if="${!iterStat.last}" th:href="${crumb.url}" th:text="${crumb.name}"></a>
|
|
<span th:if="${iterStat.last}" th:text="${crumb.name}"></span>
|
|
</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
<!-- Page Header -->
|
|
<div class="row mb-4" th:if="${pageTitle}">
|
|
<div class="col-12">
|
|
<div class="d-flex justify-content-between align-items-center">
|
|
<h1 class="h3 mb-0" th:text="${pageTitle}">页面标题</h1>
|
|
<div th:fragment="page-actions">
|
|
<!-- Page specific action buttons -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Alerts -->
|
|
<div th:if="${success}" class="alert alert-success alert-dismissible fade show" role="alert">
|
|
<i class="fas fa-check-circle me-2"></i>
|
|
<span th:text="${success}"></span>
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
</div>
|
|
|
|
<div th:if="${error}" class="alert alert-danger alert-dismissible fade show" role="alert">
|
|
<i class="fas fa-exclamation-triangle me-2"></i>
|
|
<span th:text="${error}"></span>
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
</div>
|
|
|
|
<div th:if="${info}" class="alert alert-info alert-dismissible fade show" role="alert">
|
|
<i class="fas fa-info-circle me-2"></i>
|
|
<span th:text="${info}"></span>
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
</div>
|
|
|
|
<!-- Page Content -->
|
|
<div th:replace="${content}">
|
|
<!-- Page specific content will be inserted here -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<h5><i class="fas fa-rocket me-2"></i>AIGC Demo</h5>
|
|
<p class="mb-0">现代化的Spring Boot应用演示</p>
|
|
</div>
|
|
<div class="col-md-6 text-md-end">
|
|
<p class="mb-0">
|
|
<i class="fas fa-code me-1"></i>
|
|
基于 Spring Boot 3.5.6 + JDK 21
|
|
</p>
|
|
<small class="text-muted">© 2024 AIGC Demo. All rights reserved.</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<!-- Custom JavaScript -->
|
|
<script>
|
|
// Global JavaScript functions
|
|
function showLoading(element) {
|
|
const loading = element.querySelector('.loading');
|
|
if (loading) {
|
|
loading.classList.add('show');
|
|
}
|
|
}
|
|
|
|
function hideLoading(element) {
|
|
const loading = element.querySelector('.loading');
|
|
if (loading) {
|
|
loading.classList.remove('show');
|
|
}
|
|
}
|
|
|
|
function confirmAction(message, callback) {
|
|
if (confirm(message)) {
|
|
callback();
|
|
}
|
|
}
|
|
|
|
// Auto-hide alerts after 5 seconds
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const alerts = document.querySelectorAll('.alert');
|
|
alerts.forEach(function(alert) {
|
|
setTimeout(function() {
|
|
const bsAlert = new bootstrap.Alert(alert);
|
|
bsAlert.close();
|
|
}, 5000);
|
|
});
|
|
});
|
|
|
|
// Form validation
|
|
function validateForm(form) {
|
|
const requiredFields = form.querySelectorAll('[required]');
|
|
let isValid = true;
|
|
|
|
requiredFields.forEach(function(field) {
|
|
if (!field.value.trim()) {
|
|
field.classList.add('is-invalid');
|
|
isValid = false;
|
|
} else {
|
|
field.classList.remove('is-invalid');
|
|
}
|
|
});
|
|
|
|
return isValid;
|
|
}
|
|
</script>
|
|
|
|
<!-- Page specific scripts -->
|
|
<th:block th:fragment="page-scripts">
|
|
<!-- Additional page-specific scripts -->
|
|
</th:block>
|
|
</body>
|
|
</html>
|
|
|