1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- import request from '@/utils/request'
- // 获取商户收款码
- export function receivedCollectionCode(data,id) {
- return request({
- url: '/api/received/collection_code',
- method: 'get',
- data
- });
- }
- // 获取付款码
- export function receivedPaymentCode(data,id) {
- return request({
- url: '/api/received/payment_code',
- method: 'get',
- data
- });
- }
- // 检测是否有效
- export function receivedCodeState(data,id) {
- return request({
- url: '/api/received/code_state',
- method: 'post',
- data
- });
- }
- // 创建订单
- export function receivedPaymentCreate(data,id) {
- return request({
- url: '/api/received/payment_create',
- method: 'post',
- data
- });
- }
- // 我的订单
- export function receivedLst(data,id) {
- return request({
- url: '/api/received/lst',
- method: 'get',
- data
- });
- }
- // 收款记录
- export function collectionLst(data,id) {
- return request({
- url: '/api/received/collection_lst',
- method: 'post',
- data
- });
- }
- // 已提醒
- export function collectionSetTip(data,id) {
- return request({
- url: '/api/received/collection_set_tip',
- method: 'post',
- data
- });
- }
|