daoji_h5/api/modules/channel.js

38 lines
919 B
JavaScript
Raw Permalink Normal View History

2024-03-21 05:53:51 +00:00
import {
req
} from '../../utils/req.js';
export default {
// 渠道商下拉
channelCateSelect(param) {
return req.get("massage/app/IndexUser/channelCateSelect", param)
},
// 申请渠道商
applyChannel(param) {
return req.post("massage/app/IndexUser/applyChannel", param)
},
// 渠道商信息
channelInfo(param) {
return req.get("massage/app/IndexUser/channelInfo", param)
},
// 渠道商首页
index(param) {
return req.get("massage/app/IndexChannel/index", param)
},
// 渠道商二维码
channelQr(param) {
return req.get("massage/app/IndexChannel/channelQr", param)
},
// 订单列表
orderList(param) {
return req.get("massage/app/IndexChannel/orderList", param)
},
//申请提现
applyWallet(param) {
return req.post("massage/app/IndexChannel/applyWallet", param)
},
//提现记录
walletList(param) {
return req.get("massage/app/IndexChannel/walletList", param)
},
}