82a19101a8
- 创建 rui-frontend 前端仓库 - 迁移 admin-ui 管理后台 - 创建 cashier-mobile 和 customer-mobile 占位项目 - 配置 pnpm workspace
13 lines
225 B
TypeScript
13 lines
225 B
TypeScript
import { BaseService } from '../BaseService'
|
|
|
|
/**
|
|
* 字典类型 Service
|
|
*/
|
|
class DictService extends BaseService {
|
|
constructor() {
|
|
super('/system/admin/dict/type')
|
|
}
|
|
}
|
|
|
|
export const dictService = new DictService()
|