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.
14 lines
402 B
14 lines
402 B
3 years ago
|
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);
|
||
|
}
|