| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- import request from '@/utils/request'
- // 获取用户消费记录
- export function spreadCommission(data,state) {
- return request({
- url: '/api/spread/commission/'+state,
- method: 'get',
- data
- });
- }
- // 获取账户余额
- export function userBalance(data) {
- return request({
- url: '/api/user/balance',
- method: 'get',
- data
- });
- }
- // 提现
- export function extractCash(data) {
- return request({
- url: '/api/extract/cash',
- method: 'post',
- data
- });
- }
- // 提现信息
- export function extractBank(data) {
- return request({
- url: '/api/extract/bank',
- method: 'get',
- data
- });
- }
- // #ifdef H5
- // 公众号充值
- export function rechargeWechat(data) {
- return request({
- url: '/api/recharge/wechat',
- method: 'post',
- data
- });
- }
- // #endif
- // #ifdef MP
- // 小程序充值
- export function rechargeRoutine(data) {
- return request({
- url: '/api/recharge/routine',
- method: 'post',
- data
- });
- }
- // #endif
- // #ifdef APP-PLUS
- // App微信充值
- export function rechargeApp(data) {
- return request({
- url: '/api/recharge/app',
- method: 'post',
- data
- });
- }
- // App支付宝充值
- export function rechargeAli(data) {
- return request({
- url: '/api/recharge/ali',
- method: 'post',
- data
- });
- }
- // #endif
- // 账户余额
- export function balance(data) {
- return request({
- url: '/api/user/balance',
- method: 'get',
- data
- });
- }
- // 修改用户信息
- export function userEdit(data) {
- return request({
- url: '/api/user/edit',
- method: 'post',
- data
- });
- }
- export function xfjf(data,type) {
- return request({
- url:'/api/spread/point/' + type,
- method:'get',
- data
- })
- }
- export function integral(data) {
- return request({
- url:'/api/integral/list',
- method:'get',
- data
- })
- }
|