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.
13 lines
402 B
13 lines
402 B
import {
|
|
POST
|
|
} from './Request.js';
|
|
let app = getApp();
|
|
let base = app.globalData.url;
|
|
// 门店详情
|
|
export const getQrCodeDetail = params => {
|
|
return POST('POST', `${base}/payQrCode/getQrCodeDetail`, params).then(res => res.data);
|
|
}
|
|
//银行卡识别
|
|
export const recognizeBankCard = params => {
|
|
return POST('GET', `${base}/ocr/recognizeBankCard`, params).then(res => res.data);
|
|
}
|
|
|