hurx 6 小時之前
父節點
當前提交
6dbd90589f
共有 1 個文件被更改,包括 11 次插入0 次删除
  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'
+  });
+};