14 lines
306 B
TypeScript
14 lines
306 B
TypeScript
|
|
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')
|
||
|
|
}
|