feat(customer-service): 新增客户服务问题反馈管理功能

- 重命名语言文件中相关关键字,统一改为 customer-service_feedbacks
- 新增客户服务反馈页面路由及组件导入,移除旧的 www_support_feedbacks 相关路由
- 实现客户服务反馈列表及详情查看,支持状态筛选、分页查询和消息对话展示
- 支持反馈状态变更,包括待处理、处理中和已解决状态切换
- 支持在对话中发送回复消息,且针对已解决状态自动停止轮询
- 优化状态标签样式,采用更易区分的颜色与视觉样式
- 组件及类型定义中新增 NCollapse 和 NCollapseItem 支持
- 移除旧的 www 支持反馈组件代码,清理无用路由及类型定义相关项
This commit is contained in:
eafonyang
2026-08-25 14:18:47 +08:00
parent 3702ad4163
commit f60255574e
10 changed files with 236 additions and 105 deletions
+4
View File
@@ -41,6 +41,8 @@ declare module 'vue' {
NButton: typeof import('naive-ui')['NButton']
NCard: typeof import('naive-ui')['NCard']
NCheckbox: typeof import('naive-ui')['NCheckbox']
NCollapse: typeof import('naive-ui')['NCollapse']
NCollapseItem: typeof import('naive-ui')['NCollapseItem']
NColorPicker: typeof import('naive-ui')['NColorPicker']
NDataTable: typeof import('naive-ui')['NDataTable']
NDatePicker: typeof import('naive-ui')['NDatePicker']
@@ -132,6 +134,8 @@ declare global {
const NButton: typeof import('naive-ui')['NButton']
const NCard: typeof import('naive-ui')['NCard']
const NCheckbox: typeof import('naive-ui')['NCheckbox']
const NCollapse: typeof import('naive-ui')['NCollapse']
const NCollapseItem: typeof import('naive-ui')['NCollapseItem']
const NColorPicker: typeof import('naive-ui')['NColorPicker']
const NDataTable: typeof import('naive-ui')['NDataTable']
const NDatePicker: typeof import('naive-ui')['NDatePicker']