| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- import request from '@/utils/request'
- import {
- upFilse
- } from '@/utils/request'
- // 资金列表
- export function usercoin(data) {
- return request({
- url: '/User/usercoin',
- method: 'get',
- data
- });
- }
- // 我的总资金
- export function getallzhehe(data) {
- return request({
- url: '/User/getallzhehe',
- method: 'get',
- data
- });
- }
- // 充币列表
- export function czcoin(data) {
- return request({
- url: '/user/czcoin',
- method: 'get',
- data
- });
- }
- // 充币详情
- export function czpage(data) {
- return request({
- url: '/user/czpage',
- method: 'get',
- data
- });
- }
- //上传图片
- export function upload(data) {
- return upFilse({
- url: '/User/recharge_img',
- method: 'post',
- data
- });
- }
- // 充值
- export function paycoin(data) {
- return request({
- url: '/user/paycoin',
- method: 'get',
- data
- });
- }
- // 提幣列表
- export function txcoin(data) {
- return request({
- url: '/User/txcoin',
- method: 'get',
- data
- });
- }
- // 提幣詳情
- export function txpage(data) {
- return request({
- url: '/User/txpage',
- method: 'get',
- data
- });
- }
- // 提幣地址
- export function addresslist(data) {
- return request({
- url: '/User/addresslist',
- method: 'get',
- data
- });
- }
- // 添加提幣地址
- export function upplusaddress(data) {
- return request({
- url: '/User/upplusaddress',
- method: 'get',
- data
- });
- }
- // 刪除地址
- export function deladdress(data) {
- return request({
- url: '/User/deladdress',
- method: 'get',
- data
- });
- }
- // 提幣
- export function tbhandle(data) {
- return request({
- url: '/user/tbhandle',
- method: 'get',
- data
- });
- }
|