fix: comprehensive security, quality and consistency fixes

Server:
- Block startup with default JWT secrets in production
- Make subscription verify admin-only (no payment integration yet)
- Add device ownership validation on command/result, event, treatment/sync
- Remove admin token from request body fallback
- Add pageParams boundary protection (pageSize capped at 100)
- Fix COS getObjectUrl to use callback-based Promise
- Add settings key whitelist matching frontend fields
- Add user existence check before subscription creation
- Fix firmware always returning has_update:true
- Replace hardcoded trial subscription with actual DB query
- Extract shared utilities (limitClause, toMysqlDate, formatDate)

Miniprogram:
- Replace fake PD random data with placeholder
- Mark client-timer treatment completions with source field
- Disable mock.js
- Fix BLE listener leaks (save refs, cleanup in onUnload)
- Fix ble.off clearing all listeners (pass specific callback)
- Add BLE disconnect detection via onBLEConnectionStateChange
- Fix subscription status type consistency (number not string)
- Fix scan callback accumulation in ble.js
- Fix history stats accumulation across pages
- Fix subscribe-success/treatment-done hardcoded values
- Fix profile subscription view logic
- Replace purchase flow with admin-contact modal
- Add error logging in command-sync report

Admin console:
- Fix AdminLayout logout (require->import, logout->clearToken)
- Remove all mock data from production request.js
- Replace dashboard fake data with real API calls
- Replace monthly_revenue with subscription_count
- Fix subscription stats fallback (|| -> ??)
- Add token expiry tracking (7 days)
- Unify device status map and subscription status text
- Fix user page record link navigation
- Fix subscription createForm.user_id type handling
- Add error feedback in all empty catch blocks
- Remove unused remember checkbox and uview-plus dependency
- Extract common CSS to shared stylesheet (-900 lines)
- Extract formatDate to shared utils/format.js
- Show real admin name in layout header
这个提交包含在:
Guoguo
2026-04-28 08:46:59 -07:00
父节点 543808b76e
当前提交 b80e872600
修改 42 个文件,包含 495 行新增1216 行删除
+8 -3
查看文件
@@ -20,7 +20,7 @@
<view class="top-header">
<text class="header-title">{{ pageTitle }}</text>
<view class="header-right">
<text class="header-user">👤 管理员</text>
<text class="header-user">👤 {{ adminName }}</text>
<text class="header-logout" @click="onLogout">退出</text>
</view>
</view>
@@ -32,6 +32,8 @@
</template>
<script>
import { useUserStore } from '../store/user'
export default {
props: {
currentPage: { type: String, default: '' }
@@ -53,6 +55,10 @@ export default {
pageTitle() {
const item = this.menuItems.find(m => m.path === this.currentPage)
return item ? `${item.icon} ${item.label}` : '光子美容仪管理后台'
},
adminName() {
const store = useUserStore()
return (store.adminInfo && store.adminInfo.real_name) || '管理员'
}
},
methods: {
@@ -60,9 +66,8 @@ export default {
uni.redirectTo({ url: path })
},
onLogout() {
const { useUserStore } = require('../store/user')
const store = useUserStore()
store.logout()
store.clearToken()
uni.reLaunch({ url: '/pages/login/index' })
}
}
+1
查看文件
@@ -1,5 +1,6 @@
const ENV = 'test'
// WARNING: Before deploying to production, replace the prod URL below with the real SCF endpoint.
const API_BASES = {
local: 'http://localhost:3000',
test: 'https://1426323813-ilxkhlxf4p.ap-guangzhou.tencentscf.com',
+35 -41
查看文件
@@ -5,25 +5,21 @@
<view class="stat-icon blue">📱</view>
<text class="stat-value">{{ stats.device_count || 0 }}</text>
<text class="stat-label">绑定设备数</text>
<text class="stat-trend blue-text"> 12%</text>
</view>
<view class="stat-card">
<view class="stat-icon green">👥</view>
<text class="stat-value">{{ stats.user_count || 0 }}</text>
<text class="stat-label">注册用户数</text>
<text class="stat-trend green-text"> 8%</text>
</view>
<view class="stat-card">
<view class="stat-icon pink">💆</view>
<text class="stat-value">{{ stats.treatment_count || 0 }}</text>
<text class="stat-label">护理次数</text>
<text class="stat-trend pink-text"> 15%</text>
</view>
<view class="stat-card">
<view class="stat-icon gold">💰</view>
<text class="stat-value">¥{{ stats.monthly_revenue || 0 }}</text>
<text class="stat-label">本月收入</text>
<text class="stat-trend gold-text"> 6%</text>
<view class="stat-icon gold">💳</view>
<text class="stat-value">{{ stats.subscription_count || 0 }}</text>
<text class="stat-label">活跃订阅</text>
</view>
</view>
@@ -46,17 +42,20 @@
</view>
<view class="t-body">
<view class="t-row" v-for="(item, idx) in recentTreatments" :key="idx">
<text class="t-td" style="flex:2">{{ item.user || '-' }}</text>
<text class="t-td" style="flex:2">{{ item.device || '-' }}</text>
<text class="t-td" style="flex:2">{{ item.nickname || item.user_id || '-' }}</text>
<text class="t-td" style="flex:2">{{ item.device_id || '-' }}</text>
<text class="t-td" style="flex:1">
<text class="badge badge-blue"> 智能模式</text>
</text>
<text class="t-td" style="flex:1">{{ item.duration || '-' }}</text>
<text class="t-td" style="flex:2">{{ item.time || '-' }}</text>
<text class="t-td" style="flex:1">{{ Math.floor((item.total_duration_ms || 0) / 60000) }}</text>
<text class="t-td" style="flex:2">{{ formatDate(item.start_time || item.started_at) }}</text>
<text class="t-td" style="flex:1">
<text class="badge badge-success">进行中</text>
<text class="badge badge-success">已完成</text>
</text>
</view>
<view v-if="recentTreatments.length === 0" class="empty-state">
<text class="empty-text">暂无护理记录</text>
</view>
</view>
</view>
</view>
@@ -99,13 +98,7 @@ export default {
data() {
return {
stats: {},
recentTreatments: [
{ user: '张三', device: 'GBM-2026-001', duration: '15分', time: '2026-04-22 14:30' },
{ user: '李四', device: 'GBM-2026-023', duration: '10分', time: '2026-04-22 14:15' },
{ user: '王五', device: 'GBM-2026-045', duration: '20分', time: '2026-04-22 13:50' },
{ user: '赵六', device: 'GBM-2026-067', duration: '12分', time: '2026-04-22 13:30' },
{ user: '孙七', device: 'GBM-2026-089', duration: '18分', time: '2026-04-22 13:10' }
]
recentTreatments: []
}
},
onShow() {
@@ -115,7 +108,19 @@ export default {
async loadDashboard() {
try {
this.stats = await get('/api/v1/admin/dashboard')
} catch (e) {}
} catch (e) {
uni.showToast({ title: '加载失败', icon: 'none' })
}
try {
const data = await get('/api/v1/admin/records', { page: 1, page_size: 5 })
this.recentTreatments = data.records || []
} catch (e) {
this.recentTreatments = []
}
},
formatDate(d) {
if (!d) return '--'
return String(d).slice(0, 19).replace('T', ' ')
},
onNav(path) {
uni.redirectTo({ url: path })
@@ -181,27 +186,6 @@ export default {
color: #999;
}
.stat-trend {
font-size: 12px;
font-weight: 500;
}
.blue-text {
color: #1890ff;
}
.green-text {
color: #52c41a;
}
.pink-text {
color: #E6508C;
}
.gold-text {
color: #faad14;
}
.main-row {
display: flex;
gap: 16px;
@@ -330,4 +314,14 @@ export default {
font-size: 18px;
color: #999;
}
.empty-state {
padding: 24px 0;
text-align: center;
}
.empty-text {
font-size: 14px;
color: #999;
}
</style>
@@ -102,6 +102,7 @@
<script>
import { get, post } from '../../utils/request'
import { formatDate as formatDateUtil } from '../../utils/format'
import AdminLayout from '../../components/AdminLayout.vue'
export default {
@@ -156,14 +157,14 @@ export default {
onCheckUpdate() {
uni.showToast({ title: '正在检查更新...', icon: 'none' })
},
formatDate(d) {
return d ? d.slice(0, 19).replace('T', ' ') : '-'
}
formatDate: formatDateUtil
}
}
</script>
<style scoped>
@import '../../styles/common.css';
.back-link {
color: #E6508C;
font-size: 14px;
@@ -171,13 +172,6 @@ export default {
cursor: pointer;
}
.page-card {
background: #fff;
border-radius: 8px;
padding: 20px;
margin-bottom: 16px;
}
.page-header {
display: flex;
justify-content: space-between;
@@ -226,62 +220,7 @@ export default {
margin-bottom: 16px;
}
.badge {
display: inline-block;
padding: 2px 8px;
border-radius: 4px;
font-size: 12px;
}
.badge-success {
background: #f6ffed;
color: #52c41a;
}
.badge-default {
background: #f5f5f5;
color: #999;
}
.data-table {
width: 100%;
}
.t-header {
background: #fafafa;
}
.t-row {
display: flex;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid #f0f0f0;
}
.t-th {
font-size: 14px;
color: #666;
font-weight: 500;
}
.t-td {
font-size: 14px;
color: #333;
}
.flex1 {
flex: 1;
}
.flex2 {
flex: 2;
}
.btn-primary {
background: #E6508C;
color: #fff;
border: none;
border-radius: 6px;
padding: 0 20px;
height: 36px;
font-size: 14px;
@@ -289,10 +228,6 @@ export default {
}
.btn-default {
background: #fff;
color: #333;
border: 1px solid #d9d9d9;
border-radius: 6px;
padding: 0 20px;
height: 36px;
font-size: 14px;
+7 -169
查看文件
@@ -61,6 +61,7 @@
<script>
import { get, post } from '../../utils/request'
import { exportCSV } from '../../utils/export'
import { formatDateShort } from '../../utils/format'
import AdminLayout from '../../components/AdminLayout.vue'
export default {
@@ -72,7 +73,7 @@ export default {
page: 1,
pageSize: 20,
keyword: '',
statusMap: { 1: '库存', 2: '在线', 3: '离线', 4: '故障' }
statusMap: { 1: '未激活', 2: '在线', 3: '离线', 4: '故障' }
}
},
computed: {
@@ -89,7 +90,9 @@ export default {
const data = await get('/api/v1/admin/devices', { page: this.page, page_size: this.pageSize, keyword: this.keyword })
this.devices = data.records || []
this.total = data.total || 0
} catch (e) {}
} catch (e) {
uni.showToast({ title: '加载失败', icon: 'none' })
}
},
onSearch() {
this.page = 1
@@ -124,9 +127,7 @@ export default {
const map = { 2: 'badge badge-success', 3: 'badge badge-warning', 1: 'badge badge-blue', 4: 'badge badge-error' }
return map[status] || 'badge badge-default'
},
formatDate(d) {
return d ? d.slice(0, 10) : '-'
},
formatDate: formatDateShort,
async onExport() {
try {
const data = await get('/api/v1/admin/devices', { page: 1, page_size: 9999, keyword: this.keyword })
@@ -147,172 +148,9 @@ export default {
</script>
<style scoped>
.toolbar {
background: #fff;
border-radius: 8px;
padding: 12px 20px;
margin-bottom: 16px;
display: flex;
justify-content: flex-end;
}
.header-actions {
display: flex;
align-items: center;
gap: 8px;
}
.page-card {
background: #fff;
border-radius: 8px;
padding: 20px;
}
.search-input {
width: 220px;
height: 32px;
border: 1px solid #d9d9d9;
border-radius: 6px;
padding: 0 12px;
font-size: 14px;
box-sizing: border-box;
}
.input-placeholder {
color: #bfbfbf;
}
.btn-primary {
background: #E6508C;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
}
.btn-default {
background: #fff;
color: #333;
border: 1px solid #d9d9d9;
border-radius: 6px;
cursor: pointer;
}
.btn-sm {
height: 32px;
padding: 0 16px;
font-size: 14px;
line-height: 32px;
}
.data-table {
width: 100%;
}
.t-header {
background: #fafafa;
}
.t-row {
display: flex;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid #f0f0f0;
}
.t-th {
font-size: 14px;
color: #666;
font-weight: 500;
}
.t-td {
font-size: 14px;
color: #333;
}
.flex1 {
flex: 1;
}
.flex2 {
flex: 2;
}
.badge {
display: inline-block;
padding: 2px 8px;
border-radius: 4px;
font-size: 12px;
}
.badge-success {
background: #f6ffed;
color: #52c41a;
}
.badge-warning {
background: #fffbe6;
color: #faad14;
}
.badge-error {
background: #fff2f0;
color: #ff4d4f;
}
.badge-default {
background: #f5f5f5;
color: #999;
}
.badge-blue {
background: #e6f7ff;
color: #1890ff;
}
.action-link {
color: #E6508C;
font-size: 14px;
margin-right: 12px;
cursor: pointer;
}
@import '../../styles/common.css';
.pagination {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 8px;
margin-top: 20px;
}
.btn-page {
width: 32px;
height: 32px;
border: 1px solid #d9d9d9;
border-radius: 6px;
background: #fff;
color: #333;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.btn-page.active {
background: #E6508C;
color: #fff;
border-color: #E6508C;
}
.btn-page[disabled] {
opacity: 0.4;
}
.page-info {
font-size: 13px;
color: #999;
margin-left: 8px;
}
</style>
+6 -108
查看文件
@@ -41,6 +41,7 @@
<script>
import { get } from '../../utils/request'
import { exportCSV } from '../../utils/export'
import { formatDate as formatDateUtil } from '../../utils/format'
import AdminLayout from '../../components/AdminLayout.vue'
export default {
@@ -71,7 +72,9 @@ export default {
const data = await get('/api/v1/admin/logs', params)
this.logs = data.records || []
this.total = data.total || 0
} catch (e) {}
} catch (e) {
uni.showToast({ title: '加载失败', icon: 'none' })
}
},
onSearch() {
this.page = 1
@@ -96,9 +99,7 @@ export default {
if (type === 2) return 'actor-system'
return 'actor-user'
},
formatDate(d) {
return d ? d.slice(0, 19).replace('T', ' ') : '-'
},
formatDate: formatDateUtil,
async onExport() {
try {
var params = { page: 1, page_size: 9999 }
@@ -121,63 +122,7 @@ export default {
</script>
<style scoped>
.toolbar {
background: #fff;
border-radius: 8px;
padding: 12px 20px;
margin-bottom: 16px;
display: flex;
justify-content: flex-end;
}
.header-actions {
display: flex;
align-items: center;
gap: 8px;
}
.page-card {
background: #fff;
border-radius: 8px;
padding: 20px;
}
.search-input {
width: 220px;
height: 32px;
border: 1px solid #d9d9d9;
border-radius: 6px;
padding: 0 12px;
font-size: 14px;
box-sizing: border-box;
}
.input-placeholder {
color: #bfbfbf;
}
.btn-primary {
background: #E6508C;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
}
.btn-default {
background: #fff;
color: #333;
border: 1px solid #d9d9d9;
border-radius: 6px;
cursor: pointer;
}
.btn-sm {
height: 32px;
padding: 0 16px;
font-size: 14px;
line-height: 32px;
}
@import '../../styles/common.css';
.log-list {
margin-top: 8px;
@@ -206,10 +151,6 @@ export default {
}
.badge {
display: inline-block;
padding: 2px 8px;
border-radius: 4px;
font-size: 12px;
width: fit-content;
}
@@ -218,11 +159,6 @@ export default {
color: #E6508C;
}
.badge-blue {
background: #e6f7ff;
color: #1890ff;
}
.badge-green {
background: #f6ffed;
color: #52c41a;
@@ -259,42 +195,4 @@ export default {
color: #333;
font-weight: 500;
}
.pagination {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-top: 20px;
}
.btn-page {
width: 32px;
height: 32px;
border: 1px solid #d9d9d9;
border-radius: 6px;
background: #fff;
color: #333;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.btn-page.active {
background: #E6508C;
color: #fff;
border-color: #E6508C;
}
.btn-page[disabled] {
opacity: 0.4;
}
.page-info {
font-size: 13px;
color: #999;
margin-left: 8px;
}
</style>
+2 -47
查看文件
@@ -26,15 +26,6 @@
/>
</view>
<view class="remember-row">
<view class="checkbox-wrap" @click="remember = !remember">
<view class="checkbox-box" :class="{ checked: remember }">
<text class="checkbox-icon" v-if="remember"></text>
</view>
<text class="remember-text">记住登录状态</text>
</view>
</view>
<button class="login-btn" :loading="loading" :disabled="loading" @click="onLogin">
</button>
@@ -51,8 +42,7 @@ export default {
data() {
return {
form: { username: 'admin', password: 'admin' },
loading: false,
remember: false
loading: false
}
},
methods: {
@@ -145,43 +135,8 @@ export default {
color: #bfbfbf;
}
.remember-row {
margin-bottom: 24px;
}
.checkbox-wrap {
display: flex;
align-items: center;
gap: 8px;
}
.checkbox-box {
width: 16px;
height: 16px;
border: 1px solid #d9d9d9;
border-radius: 3px;
display: flex;
align-items: center;
justify-content: center;
}
.checkbox-box.checked {
background: #E6508C;
border-color: #E6508C;
}
.checkbox-icon {
color: #fff;
font-size: 11px;
line-height: 16px;
}
.remember-text {
font-size: 14px;
color: #666;
}
.login-btn {
margin-top: 24px;
width: 100%;
height: 44px;
background: #E6508C;
+6 -152
查看文件
@@ -64,6 +64,7 @@
<script>
import { get } from '../../utils/request'
import { exportCSV } from '../../utils/export'
import { formatDate as formatDateUtil } from '../../utils/format'
import AdminLayout from '../../components/AdminLayout.vue'
var REGION_MAP = {
@@ -105,7 +106,9 @@ export default {
const data = await get('/api/v1/admin/records', params)
this.records = data.records || []
this.total = data.total || 0
} catch (e) {}
} catch (e) {
uni.showToast({ title: '加载失败', icon: 'none' })
}
},
onSearch() {
this.page = 1
@@ -124,9 +127,7 @@ export default {
}
return names.join(',') || '-'
},
formatDate(d) {
return d ? d.slice(0, 10) : '-'
},
formatDate: formatDateUtil,
async onExport() {
try {
const data = await get('/api/v1/admin/records', { page: 1, page_size: 9999, keyword: this.keyword, date_from: this.dateFrom, date_to: this.dateTo })
@@ -152,35 +153,10 @@ export default {
</script>
<style scoped>
.toolbar {
background: #fff;
border-radius: 8px;
padding: 12px 20px;
margin-bottom: 16px;
display: flex;
justify-content: flex-end;
}
.header-actions {
display: flex;
align-items: center;
gap: 8px;
}
.page-card {
background: #fff;
border-radius: 8px;
padding: 20px;
}
@import '../../styles/common.css';
.search-input {
width: 160px;
height: 32px;
border: 1px solid #d9d9d9;
border-radius: 6px;
padding: 0 12px;
font-size: 14px;
box-sizing: border-box;
}
.date-input {
@@ -191,126 +167,4 @@ export default {
color: #999;
font-size: 14px;
}
.input-placeholder {
color: #bfbfbf;
}
.btn-primary {
background: #E6508C;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
}
.btn-default {
background: #fff;
color: #333;
border: 1px solid #d9d9d9;
border-radius: 6px;
cursor: pointer;
}
.btn-sm {
height: 32px;
padding: 0 16px;
font-size: 14px;
line-height: 32px;
}
.data-table {
width: 100%;
}
.t-header {
background: #fafafa;
}
.t-row {
display: flex;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid #f0f0f0;
}
.t-th {
font-size: 14px;
color: #666;
font-weight: 500;
}
.t-td {
font-size: 14px;
color: #333;
}
.flex1 {
flex: 1;
}
.flex2 {
flex: 2;
}
.badge {
display: inline-block;
padding: 2px 8px;
border-radius: 4px;
font-size: 12px;
}
.badge-blue {
background: #e6f7ff;
color: #1890ff;
}
.badge-warning {
background: #fffbe6;
color: #faad14;
}
.action-link {
color: #E6508C;
font-size: 14px;
cursor: pointer;
}
.pagination {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-top: 20px;
}
.btn-page {
width: 32px;
height: 32px;
border: 1px solid #d9d9d9;
border-radius: 6px;
background: #fff;
color: #333;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.btn-page.active {
background: #E6508C;
color: #fff;
border-color: #E6508C;
}
.btn-page[disabled] {
opacity: 0.4;
}
.page-info {
font-size: 13px;
color: #999;
margin-left: 8px;
}
</style>
+3 -1
查看文件
@@ -136,7 +136,9 @@ export default {
if (data) {
Object.assign(this.settings, data)
}
} catch (e) {}
} catch (e) {
uni.showToast({ title: '加载失败', icon: 'none' })
}
},
async onSave() {
try {
+11 -155
查看文件
@@ -9,19 +9,19 @@
<view class="page-card">
<view class="stats-row">
<view class="stat-item">
<text class="stat-value">{{ stats.monthly_count || 486 }}</text>
<text class="stat-value">{{ stats.monthly_count ?? 0 }}</text>
<text class="stat-label">月卡会员</text>
</view>
<view class="stat-item">
<text class="stat-value">{{ stats.yearly_count || 1258 }}</text>
<text class="stat-value">{{ stats.yearly_count ?? 0 }}</text>
<text class="stat-label">年卡会员</text>
</view>
<view class="stat-item">
<text class="stat-value">{{ stats.trial_count || 856 }}</text>
<text class="stat-value">{{ stats.trial_count ?? 0 }}</text>
<text class="stat-label">试用中</text>
</view>
<view class="stat-item">
<text class="stat-value">¥{{ stats.monthly_revenue || 45890 }}</text>
<text class="stat-value">¥{{ stats.monthly_revenue ?? 0 }}</text>
<text class="stat-label">本月收入</text>
</view>
</view>
@@ -103,6 +103,7 @@
<script>
import { get, post } from '../../utils/request'
import { exportCSV } from '../../utils/export'
import { formatDateShort } from '../../utils/format'
import AdminLayout from '../../components/AdminLayout.vue'
export default {
@@ -135,7 +136,9 @@ export default {
this.subscriptions = data.records || []
this.total = data.total || 0
if (data.stats) this.stats = data.stats
} catch (e) {}
} catch (e) {
uni.showToast({ title: '加载失败', icon: 'none' })
}
},
onTabFilter(tab) {
this.activeTab = tab
@@ -150,7 +153,7 @@ export default {
this.creating = true
try {
await post('/api/v1/admin/subscriptions', {
user_id: parseInt(this.createForm.user_id),
user_id: String(this.createForm.user_id).trim(),
plan: this.createForm.plan,
days: parseInt(this.createForm.days)
})
@@ -175,9 +178,7 @@ export default {
const map = { 1: 'badge badge-success', 2: 'badge badge-warning', 3: 'badge badge-error' }
return map[status] || 'badge badge-default'
},
formatDate(d) {
return d ? d.slice(0, 10) : '-'
},
formatDate: formatDateShort,
async onExport() {
try {
const data = await get('/api/v1/admin/subscriptions', { page: 1, page_size: 9999, tab: this.activeTab })
@@ -200,27 +201,7 @@ export default {
</script>
<style scoped>
.toolbar {
background: #fff;
border-radius: 8px;
padding: 12px 20px;
margin-bottom: 16px;
display: flex;
justify-content: flex-end;
}
.header-actions {
display: flex;
align-items: center;
gap: 8px;
}
.page-card {
background: #fff;
border-radius: 8px;
padding: 20px;
margin-bottom: 16px;
}
@import '../../styles/common.css';
.stats-row {
display: flex;
@@ -270,133 +251,8 @@ export default {
font-weight: 500;
}
.data-table {
width: 100%;
}
.t-header {
background: #fafafa;
}
.t-row {
display: flex;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid #f0f0f0;
}
.t-th {
font-size: 14px;
color: #666;
font-weight: 500;
}
.t-td {
font-size: 14px;
color: #333;
}
.flex1 {
flex: 1;
}
.flex2 {
flex: 2;
}
.badge {
display: inline-block;
padding: 2px 8px;
border-radius: 4px;
font-size: 12px;
}
.badge-success {
background: #f6ffed;
color: #52c41a;
}
.badge-warning {
background: #fffbe6;
color: #faad14;
}
.badge-error {
background: #fff2f0;
color: #ff4d4f;
}
.badge-default {
background: #f5f5f5;
color: #999;
}
.action-link {
color: #E6508C;
font-size: 14px;
margin-right: 8px;
cursor: pointer;
}
.pagination {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-top: 20px;
}
.btn-page {
width: 32px;
height: 32px;
border: 1px solid #d9d9d9;
border-radius: 6px;
background: #fff;
color: #333;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.btn-page.active {
background: #E6508C;
color: #fff;
border-color: #E6508C;
}
.btn-page[disabled] {
opacity: 0.4;
}
.page-info {
font-size: 13px;
color: #999;
margin-left: 8px;
}
.btn-primary {
background: #E6508C;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
}
.btn-default {
background: #fff;
color: #333;
border: 1px solid #d9d9d9;
border-radius: 6px;
cursor: pointer;
}
.btn-sm {
height: 32px;
padding: 0 16px;
font-size: 14px;
line-height: 32px;
}
.modal-mask {
+4 -67
查看文件
@@ -82,6 +82,7 @@
<script>
import { get } from '../../utils/request'
import { formatDateShort } from '../../utils/format'
import AdminLayout from '../../components/AdminLayout.vue'
export default {
@@ -118,14 +119,14 @@ export default {
const map = { yearly: '年卡', monthly: '月卡', trial: '试用' }
return map[type] || '-'
},
formatDate(d) {
return d ? d.slice(0, 10) : '-'
}
formatDate: formatDateShort
}
}
</script>
<style scoped>
@import '../../styles/common.css';
.back-link {
color: #E6508C;
font-size: 14px;
@@ -133,13 +134,6 @@ export default {
cursor: pointer;
}
.page-card {
background: #fff;
border-radius: 8px;
padding: 20px;
margin-bottom: 16px;
}
.page-header {
display: flex;
justify-content: space-between;
@@ -191,18 +185,9 @@ export default {
}
.badge {
display: inline-block;
padding: 2px 8px;
border-radius: 4px;
font-size: 12px;
margin-top: 4px;
}
.badge-success {
background: #f6ffed;
color: #52c41a;
}
.stats-row {
display: flex;
gap: 16px;
@@ -266,40 +251,6 @@ export default {
color: #333;
}
.data-table {
width: 100%;
}
.t-header {
background: #fafafa;
}
.t-row {
display: flex;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid #f0f0f0;
}
.t-th {
font-size: 14px;
color: #666;
font-weight: 500;
}
.t-td {
font-size: 14px;
color: #333;
}
.flex1 {
flex: 1;
}
.flex2 {
flex: 2;
}
.view-all {
text-align: center;
margin-top: 16px;
@@ -311,18 +262,4 @@ export default {
cursor: pointer;
}
.btn-primary {
background: #E6508C;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
}
.btn-sm {
height: 32px;
padding: 0 16px;
font-size: 14px;
line-height: 32px;
}
</style>
+11 -165
查看文件
@@ -44,7 +44,7 @@
<text class="t-td flex2">{{ formatDate(item.created_at) }}</text>
<text class="t-td flex1">
<text class="action-link" @click="onDetail(item.user_id)">详情</text>
<text class="action-link" @click="onDetail(item.user_id)">记录</text>
<text class="action-link" @click="onViewRecords(item.user_id)">记录</text>
</text>
</view>
</view>
@@ -63,6 +63,7 @@
<script>
import { get } from '../../utils/request'
import { exportCSV } from '../../utils/export'
import { formatDateShort } from '../../utils/format'
import AdminLayout from '../../components/AdminLayout.vue'
export default {
@@ -90,7 +91,9 @@ export default {
const data = await get('/api/v1/admin/users', { page: this.page, page_size: this.pageSize, keyword: this.keyword })
this.users = data.records || []
this.total = data.total || 0
} catch (e) {}
} catch (e) {
uni.showToast({ title: '加载失败', icon: 'none' })
}
},
onSearch() {
this.page = 1
@@ -103,8 +106,11 @@ export default {
onDetail(userId) {
uni.navigateTo({ url: '/pages/user-detail/index?user_id=' + userId })
},
onViewRecords(userId) {
uni.navigateTo({ url: '/pages/record/index?user_id=' + userId })
},
subStatusText(status) {
const map = { yearly: '年卡', monthly: '月卡', trial: '试用中', none: '未订阅' }
const map = { yearly: '年卡会员', monthly: '月卡会员', trial: '试用中', none: '未订阅' }
return map[status] || '未订阅'
},
subBadge(status) {
@@ -116,9 +122,7 @@ export default {
}
return map[status] || 'badge badge-default'
},
formatDate(d) {
return d ? d.slice(0, 10) : '-'
},
formatDate: formatDateShort,
async onExport() {
try {
const data = await get('/api/v1/admin/users', { page: 1, page_size: 9999, keyword: this.keyword })
@@ -139,97 +143,7 @@ export default {
</script>
<style scoped>
.toolbar {
background: #fff;
border-radius: 8px;
padding: 12px 20px;
margin-bottom: 16px;
display: flex;
justify-content: flex-end;
}
.header-actions {
display: flex;
align-items: center;
gap: 8px;
}
.page-card {
background: #fff;
border-radius: 8px;
padding: 20px;
}
.search-input {
width: 220px;
height: 32px;
border: 1px solid #d9d9d9;
border-radius: 6px;
padding: 0 12px;
font-size: 14px;
box-sizing: border-box;
}
.input-placeholder {
color: #bfbfbf;
}
.btn-primary {
background: #E6508C;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
}
.btn-default {
background: #fff;
color: #333;
border: 1px solid #d9d9d9;
border-radius: 6px;
cursor: pointer;
}
.btn-sm {
height: 32px;
padding: 0 16px;
font-size: 14px;
line-height: 32px;
}
.data-table {
width: 100%;
}
.t-header {
background: #fafafa;
}
.t-row {
display: flex;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid #f0f0f0;
}
.t-th {
font-size: 14px;
color: #666;
font-weight: 500;
}
.t-td {
font-size: 14px;
color: #333;
}
.flex1 {
flex: 1;
}
.flex2 {
flex: 2;
}
@import '../../styles/common.css';
.user-cell {
display: flex;
@@ -249,75 +163,7 @@ export default {
flex-shrink: 0;
}
.badge {
display: inline-block;
padding: 2px 8px;
border-radius: 4px;
font-size: 12px;
}
.badge-success {
background: #f6ffed;
color: #52c41a;
}
.badge-warning {
background: #fffbe6;
color: #faad14;
}
.badge-blue {
background: #e6f7ff;
color: #1890ff;
}
.badge-default {
background: #f5f5f5;
color: #999;
}
.action-link {
color: #E6508C;
font-size: 14px;
margin-right: 12px;
cursor: pointer;
}
.pagination {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 8px;
margin-top: 20px;
}
.btn-page {
width: 32px;
height: 32px;
border: 1px solid #d9d9d9;
border-radius: 6px;
background: #fff;
color: #333;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.btn-page.active {
background: #E6508C;
color: #fff;
border-color: #E6508C;
}
.btn-page[disabled] {
opacity: 0.4;
}
.page-info {
font-size: 13px;
color: #999;
margin-left: 8px;
}
</style>
+9 -1
查看文件
@@ -9,12 +9,14 @@ export const useUserStore = defineStore('user', () => {
function setToken(val) {
token.value = val
uni.setStorageSync('admin_token', val)
uni.setStorageSync('admin_token_expiry', Date.now() + 7 * 24 * 3600 * 1000)
}
function clearToken() {
token.value = ''
adminInfo.value = null
uni.removeStorageSync('admin_token')
uni.removeStorageSync('admin_token_expiry')
}
async function login(credentials) {
@@ -30,7 +32,13 @@ export const useUserStore = defineStore('user', () => {
}
function isLoggedIn() {
return !!token.value
if (!token.value) return false
const expiry = uni.getStorageSync('admin_token_expiry') || 0
if (Date.now() > expiry) {
clearToken()
return false
}
return true
}
return { token, adminInfo, setToken, clearToken, login, isLoggedIn }
+173
查看文件
@@ -0,0 +1,173 @@
.data-table {
width: 100%;
}
.t-header {
background: #fafafa;
}
.t-row {
display: flex;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid #f0f0f0;
}
.t-th {
font-size: 14px;
color: #666;
font-weight: 500;
}
.t-td {
font-size: 14px;
color: #333;
}
.flex1 {
flex: 1;
}
.flex2 {
flex: 2;
}
.flex3 {
flex: 3;
}
.badge {
display: inline-block;
padding: 2px 8px;
border-radius: 4px;
font-size: 12px;
}
.badge-success {
background: #f6ffed;
color: #52c41a;
}
.badge-warning {
background: #fffbe6;
color: #faad14;
}
.badge-error {
background: #fff2f0;
color: #ff4d4f;
}
.badge-default {
background: #f5f5f5;
color: #999;
}
.badge-blue {
background: #e6f7ff;
color: #1890ff;
}
.btn-primary {
background: #E6508C;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
}
.btn-default {
background: #fff;
color: #333;
border: 1px solid #d9d9d9;
border-radius: 6px;
cursor: pointer;
}
.btn-sm {
height: 32px;
padding: 0 16px;
font-size: 14px;
line-height: 32px;
}
.action-link {
color: #E6508C;
font-size: 14px;
margin-right: 12px;
cursor: pointer;
}
.pagination {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-top: 20px;
}
.btn-page {
width: 32px;
height: 32px;
border: 1px solid #d9d9d9;
border-radius: 6px;
background: #fff;
color: #333;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.btn-page.active {
background: #E6508C;
color: #fff;
border-color: #E6508C;
}
.btn-page[disabled] {
opacity: 0.4;
}
.page-info {
font-size: 13px;
color: #999;
margin-left: 8px;
}
.page-card {
background: #fff;
border-radius: 8px;
padding: 20px;
margin-bottom: 16px;
}
.toolbar {
background: #fff;
border-radius: 8px;
padding: 12px 20px;
margin-bottom: 16px;
display: flex;
justify-content: flex-end;
}
.header-actions {
display: flex;
align-items: center;
gap: 8px;
}
.search-input {
width: 220px;
height: 32px;
border: 1px solid #d9d9d9;
border-radius: 6px;
padding: 0 12px;
font-size: 14px;
box-sizing: border-box;
}
.input-placeholder {
color: #bfbfbf;
}
+9
查看文件
@@ -0,0 +1,9 @@
export function formatDate(d) {
if (!d) return '--'
return String(d).slice(0, 19).replace('T', ' ')
}
export function formatDateShort(d) {
if (!d) return '--'
return String(d).slice(0, 10)
}
-89
查看文件
@@ -1,97 +1,8 @@
import env from '../config/env'
const BASE_URL = env.API_BASE
const USE_MOCK = false
const MOCK_DATA = {
'/api/v1/admin/devices/AABBCCDDEEFF0011': {
device_id: 'AABBCCDDEEFF0011', bound_user: 'user_001', battery: 85, fw_version: '1.0.0',
activated_at: '2025-03-15T10:00:00Z', status: 2, total_usage: '45h', last_online: '2025-04-22T14:30:00Z',
binding_history: [
{ nickname: '张小姐', bound_at: '2025-03-15T10:00:00Z', unbound_at: null, status: 1 }
]
},
'/api/v1/admin/dashboard': {
device_count: 12,
user_count: 86,
treatment_count: 1234,
subscription_count: 52
},
'/api/v1/admin/devices': {
records: [
{ device_id: 'AABBCCDDEEFF0011', bound_user: 'user_001', battery: 85, fw_version: '1.0.0', activated_at: '2025-03-15T10:00:00Z', status: 2 },
{ device_id: '1122334455667788', bound_user: 'user_002', battery: 60, fw_version: '1.0.0', activated_at: '2025-03-20T14:00:00Z', status: 2 },
{ device_id: 'A1B2C3D4E5F60011', bound_user: null, battery: null, fw_version: '1.0.0', activated_at: '2025-03-10T08:00:00Z', status: 1 }
],
total: 3
},
'/api/v1/admin/users': {
records: [
{ _id: 'u1', openid: 'oXXXX1', nickname: '张小姐', phone: '138****1234', created_at: '2025-03-01T08:00:00Z', subscription_status: 'yearly' },
{ _id: 'u2', openid: 'oXXXX2', nickname: '李女士', phone: '139****5678', created_at: '2025-03-05T10:00:00Z', subscription_status: 'monthly' },
{ _id: 'u3', openid: 'oXXXX3', nickname: '王先生', phone: '137****9012', created_at: '2025-03-10T12:00:00Z', subscription_status: 'trial' }
],
total: 3
},
'/api/v1/admin/users/u1': {
_id: 'u1', openid: 'oXXXX1', nickname: '张小姐', phone: '138****1234',
created_at: '2025-03-01T08:00:00Z', subscription_type: 'yearly', subscription_status: 'active',
subscription_expire: '2026-03-01T08:00:00Z', treatment_count: 28, total_duration: '14h',
total_spent: 899, devices: [{ device_id: 'AABBCCDDEEFF0011', device_name: '我的光面膜' }],
recent_treatments: [
{ started_at: '2025-04-20T10:00:00Z', total_duration_ms: 1200000, device_id: 'AABBCCDDEEFF0011' },
{ started_at: '2025-04-18T09:00:00Z', total_duration_ms: 900000, device_id: 'AABBCCDDEEFF0011' }
]
},
'/api/v1/admin/subscriptions': {
records: [
{ id: 's1', user_id: 'user_001', plan: 'yearly', amount: 899, started_at: '2025-03-01T00:00:00Z', expired_at: '2026-03-01T00:00:00Z', status: 1 },
{ id: 's2', user_id: 'user_002', plan: 'monthly', amount: 99, started_at: '2025-04-01T00:00:00Z', expired_at: '2025-05-01T00:00:00Z', status: 1 },
{ id: 's3', user_id: 'user_003', plan: 'trial', amount: '-', started_at: '2025-03-10T00:00:00Z', expired_at: '2025-03-17T00:00:00Z', status: 3 }
],
total: 3,
stats: { monthly_count: 15, yearly_count: 30, trial_count: 7, monthly_revenue: 45890 }
},
'/api/v1/admin/records': {
records: [
{ started_at: '2025-04-20T10:00:00Z', total_duration_ms: 1200000, device_id: 'AABBCCDDEEFF0011', openid: 'oXXXX1' },
{ started_at: '2025-04-19T15:00:00Z', total_duration_ms: 900000, device_id: '1122334455667788', openid: 'oXXXX2' }
],
total: 2
},
'/api/v1/admin/logs': {
records: [
{ created_at: '2025-04-20T10:05:00Z', action: 'treatment_complete', detail: '用户张小姐完成护理', openid: 'oXXXX1' },
{ created_at: '2025-04-20T09:00:00Z', action: 'device_bind', detail: '设备AABBCCDDEEFF0011绑定', openid: 'oXXXX1' }
],
total: 2
}
}
function getMockData(url, data) {
if (url.includes('/api/v1/admin/login')) {
if (data && data.username === 'admin' && data.password === 'admin123') {
return { token: 'mock_token_admin', admin_id: 'admin_001', username: 'admin', real_name: '管理员', role: 'admin' }
}
throw { code: 1001, message: '用户名或密码错误' }
}
if (url.startsWith('/api/v1/admin/users/') && !url.includes('users?')) {
const id = url.split('/').pop()
return MOCK_DATA['/api/v1/admin/users/u1'] || { _id: id, nickname: '未知用户' }
}
for (const key of Object.keys(MOCK_DATA)) {
if (url.includes(key)) return MOCK_DATA[key]
}
return {}
}
function request(options) {
if (USE_MOCK) {
return new Promise(resolve => {
setTimeout(() => resolve(getMockData(options.url, options.data)), 200)
})
}
const token = uni.getStorageSync('admin_token')
return new Promise((resolve, reject) => {