李红攀:V2.6.969,客户管理、销售订单

This commit is contained in:
2026-06-18 17:51:39 +08:00
parent 4c09ffdf00
commit d0ce2f2b55
9 changed files with 1992 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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')
}