UNPKG

@tplc/business

Version:

27 lines (25 loc) 558 B
export interface ProductInfo { productImg: string productName: string address: string tags: string price: number priceSuffix: string addressIntro: string scoreAvg: number productType: string titleIcon: string distanceTips: string productTypeIcon: string searchResultTips: string link: { jumpUrl: string } productInfoId: string } export const getProductInfoFilteredPage = (params: { keywords?: string productTypeList?: string[] }) => { return uni.$lcb.http.post<ProductInfo[]>('/productInfo/filteredPage', params) }