Files
crm_uiapp/src/api/erp/account/index.ts

14 lines
306 B
TypeScript
Raw Normal View History

import type { PageParam, PageResult } from '@/http/types'
import { http } from '@/http/http'
/** 账户信息 */
export interface Account {
id?: number
name?: string
}
/** 获取账户精简列表 */
export function getAccountSimpleList() {
return http.get<Account[]>('/erp/account/simple-list')
}