feat: 优化工单和用户管理功能
Build and Deploy Vue3 / build (push) Successful in 1m12s
Build and Deploy Vue3 / deploy (push) Successful in 5m2s

- 工单模块改为列表形式,支持点击进入详情页回复
- 新增工单列表页面(TicketList.vue)和详情页面(TicketDetail.vue)
- 工单详情页支持图片上传、快捷回复、定时刷新
- 消息按ID排序,时间显示优化(今天/昨天/星期/完整日期)
- 定时刷新时不显示loading,且只在数据变化时更新UI
- 用户列表直接使用API返回的cover字段作为头像,减少HTTP请求
- 修复用户余额页面balance_type参数undefined问题
This commit is contained in:
2025-12-16 11:29:52 +08:00
parent ab2df50c0d
commit 54f78e15fe
3 changed files with 189 additions and 45 deletions
+1
View File
@@ -187,6 +187,7 @@ const queryParams = reactive({
// 余额记录查询参数
const recordParams = reactive({
user_id: '',
balance_type: '', // 初始化为空字符串,避免 undefined
page: 1,
count: 10
})