hurx 6 giờ trước cách đây
mục cha
commit
6dbd90589f
1 tập tin đã thay đổi với 11 bổ sung0 xóa
  1. 11 0
      src/api/partner/merchant/index.ts

+ 11 - 0
src/api/partner/merchant/index.ts

@@ -47,3 +47,14 @@ export function exportPartnerMerchant(query: PartnerMerchantQuery) {
     data: query
   });
 }
+
+/**
+ * 根据名称模糊查询伙伴商信息
+ * @param partnerName
+ */
+export const getListByPartnerName = (partnerName: string): AxiosPromise<PartnerMerchantVO[]> => {
+  return request({
+    url: '/customer/partnerInfo/selectByPartnerName/' + partnerName,
+    method: 'get'
+  });
+};