82a19101a8
- 创建 rui-frontend 前端仓库 - 迁移 admin-ui 管理后台 - 创建 cashier-mobile 和 customer-mobile 占位项目 - 配置 pnpm workspace
14 lines
277 B
TypeScript
14 lines
277 B
TypeScript
import { BaseService } from '../BaseService'
|
|
|
|
/**
|
|
* 用户等级日志服务
|
|
*/
|
|
class LevelLogService extends BaseService {
|
|
constructor() {
|
|
super('/user/admin/level-log')
|
|
}
|
|
}
|
|
|
|
/** 用户等级日志服务单例 */
|
|
export const levelLogService = new LevelLogService()
|