CRM-合同:完善合同表单

(cherry picked from commit ed94205fa7)
This commit is contained in:
puhui999
2024-01-27 23:11:43 +08:00
committed by shizhong
parent 227f69c95d
commit 0ada34de16
7 changed files with 375 additions and 115 deletions

View File

@ -12,6 +12,12 @@ export interface ProductVO {
ownerUserId: number
}
export interface ProductExpandVO extends ProductVO {
count: number
discountPercent: number
totalPrice: number
}
// 查询产品列表
export const getProductPage = async (params) => {
return await request.get({ url: `/crm/product/page`, params })