feat: 添加积分日志页面

- 新增积分日志列表页面 src/views/user/integral/index.vue
- 新增积分相关 API src/api/integral.js
- 在路由中添加积分日志菜单
This commit is contained in:
scott
2026-03-20 10:56:53 +08:00
parent 6d3b50cebc
commit 09946536aa
4 changed files with 660 additions and 544 deletions

View File

@@ -0,0 +1,23 @@
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2025 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
import request from '@/utils/request';
/**
* 积分记录分页列表
* @param data
*/
export function integralListApi(data) {
return request({
url: '/admin/user/integral/list',
method: 'post',
data,
});
}