You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
441 B
24 lines
441 B
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
|
|
})
|
|
}
|