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.
108 lines
3.9 KiB
108 lines
3.9 KiB
import {
|
|
POST
|
|
} from './Request.js';
|
|
let app = getApp();
|
|
let base = app.globalData.url;
|
|
// 登录接口
|
|
export const userLogin = params => {
|
|
return POST('POST', `${base}/login/userLogin`, params).then(res => res.data);
|
|
}
|
|
//退出登录
|
|
export const logout = params => {
|
|
return POST('POST', `${base}/login/logout`, params).then(res => res.data);
|
|
}
|
|
//银行卡识别
|
|
export const recognizeBankCard = params => {
|
|
return POST('GET', `${base}/ocr/recognizeBankCard`, params).then(res => res.data);
|
|
}
|
|
//营业执照识别
|
|
export const recognizeBusinessLicense = params => {
|
|
return POST('GET', `${base}/ocr/recognizeBusinessLicense`, params).then(res => res.data);
|
|
}
|
|
// 身份证识别【正反面】
|
|
export const recognizeIdCard = params => {
|
|
return POST('GET', `${base}/ocr/recognizeIdCard`, params).then(res => res.data);
|
|
}
|
|
// 查询行业
|
|
export const getIndustry = params => {
|
|
return POST('GET', `${base}/common/getIndustry`, params).then(res => res.data);
|
|
}
|
|
// 上传商户图片
|
|
export const uploadFile = params => {
|
|
return POST('POST', `${base}/mer/uploadFile`, params).then(res => res.data);
|
|
}
|
|
|
|
//第一步上传商户信息
|
|
export const configMerAccount = params => {
|
|
return POST('POST', `${base}/mer/configMerAccount`, params).then(res => res.data);
|
|
}
|
|
//查询商户详情
|
|
export const getMerDetail = params => {
|
|
return POST('GET', `${base}/mer/getMerDetail`, params).then(res => res.data);
|
|
}
|
|
|
|
//第二步商户基本信息
|
|
export const configMerBasis = params => {
|
|
return POST('POST', `${base}/mer/configMerBasis`, params).then(res => res.data);
|
|
}
|
|
//第三步商户结算信息
|
|
export const configMerSettlement = params => {
|
|
return POST('POST', `${base}/mer/configMerSettlement`, params).then(res => res.data);
|
|
}
|
|
//第四步商户门店信心
|
|
export const configMerStore = params => {
|
|
return POST('POST', `${base}/mer/configMerStore`, params).then(res => res.data);
|
|
}
|
|
//业务员查询商户
|
|
export const getMerListBySalesman = params => {
|
|
return POST('GET', `${base}/mer/getMerListBySalesman`, params).then(res => res.data);
|
|
}
|
|
//业务员查询mcc
|
|
export const getLklMcc = params => {
|
|
return POST('GET', `${base}/common/getLklMcc`, params).then(res => res.data);
|
|
}
|
|
//业务员查询费率类型
|
|
export const getDictionaryByCodeType = params => {
|
|
return POST('GET', `${base}/common/getDictionaryByCodeType`, params).then(res => res.data);
|
|
}
|
|
|
|
//查询商户门店
|
|
export const getStoreListByMer = params => {
|
|
return POST('GET', `${base}/store/getStoreListByMer`, params).then(res => res.data);
|
|
}
|
|
//查询商户门店详情
|
|
export const getStoreDetailById = params => {
|
|
return POST('GET', `${base}/store/getStoreDetailById`, params).then(res => res.data);
|
|
}
|
|
//商户添加门店
|
|
export const configStore = params => {
|
|
return POST('POST', `${base}/store/configStore`, params).then(res => res.data);
|
|
}
|
|
//门店添加设备
|
|
export const configStoreDevice = params => {
|
|
return POST('POST', `${base}/storeDevice/configStoreDevice`, params).then(res => res.data);
|
|
}
|
|
//门店删除设备
|
|
export const delStoreDevice = params => {
|
|
return POST('POST', `${base}/storeDevice/delStoreDevice`, params).then(res => res.data);
|
|
}
|
|
//门店查看设备列表
|
|
export const getStoreDeviceList = params => {
|
|
return POST('GET', `${base}/storeDevice/getStoreDeviceList`, params).then(res => res.data);
|
|
}
|
|
//业务员查询统计
|
|
export const moveHomeCount = params => {
|
|
return POST('POST', `${base}/salesman/moveHomeCount`, params).then(res => res.data);
|
|
}
|
|
//商户查询统计
|
|
export const mermoveHomeCount = params => {
|
|
return POST('POST', `${base}/mer/moveHomeCount`, params).then(res => res.data);
|
|
}
|
|
//门店查询统计
|
|
export const storemoveHomeCount = params => {
|
|
return POST('POST', `${base}/store/moveHomeCount`, params).then(res => res.data);
|
|
}
|
|
// 查询交易订单列表
|
|
export const getTradeOrderList = params => {
|
|
return POST('GET', `${base}/tradeOrder/getTradeOrderList`, params).then(res => res.data);
|
|
} |