diff --git a/apis/merchantApi.js b/apis/merchantApi.js new file mode 100644 index 0000000..9508f3c --- /dev/null +++ b/apis/merchantApi.js @@ -0,0 +1,24 @@ +import http from '@/utils/http/index.js' +/** + * 获取特约商户列表 + * @param {any} data + * @returns + */ +export function getMerchantList(data) { + return http.get({ + url: '/uec/get/supplier/apply/commercial/tenant/list', + data + }) +} + +/** + * 申请特约商户 + * @param {any} data + * @returns + */ +export function applyMerchant(data) { + return http.post({ + url: '/uec/submit/supplier/commercial/tenant/apply', + data + }) +} diff --git a/components/qn-select/qn-select.vue b/components/qn-select/qn-select.vue index 04d4695..7fe659d 100644 --- a/components/qn-select/qn-select.vue +++ b/components/qn-select/qn-select.vue @@ -1,14 +1,14 @@