123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- import request from '../utils/request.js';
- export function test(data) {
- return request({
- method: 'post',
- data: data,
- url: '/test/post'
- })
- }
- export function revenueStatisticsUp(data) {
- return request({
- method: 'post',
- data: data,
- url: '/mobile/merchantApi/revenueStatisticsUp',
- })
- }
- export function revenueStatisticsDown(data) {
- return request({
- method: 'post',
- data: data,
- url: '/mobile/merchantApi/revenueStatisticsDown',
- })
- }
- export function merchantVehicleList(data) {
- return request({
- method: 'post',
- data: data,
- url: '/mobile/merchantApi/merchantVehicleList',
- })
- }
- export function profitList(data) {
- return request({
- method: 'post',
- data: data,
- url: '/mobile/merchantApi/profitList',
- })
- }
- export function vehicleShiftList(data) {
- return request({
- method: 'post',
- data: data,
- url: '/mobile/merchantApi/vehicleShiftList',
- })
- }
- export function vehicleShiftDetail(data) {
- return request({
- method: 'post',
- data: {
- id:data
- },
- url: '/mobile/merchantApi/vehicleShiftDetail',
- })
- }
- export function sellList(data) {
- return request({
- method: 'post',
- data: data,
- url: '/mobile/merchantApi/sellList',
- })
- }
- export function sellDetail(data) {
- return request({
- method: 'post',
- data: {
- id:data
- },
- url: '/mobile/merchantApi/sellDetail',
- })
- }
- export function myAccount(data) {
- return request({
- method: 'post',
- data:data,
- url: '/mobile/merchantApi/myAccount',
- })
- }
- export function withdrawalRecordList(data) {
- return request({
- method: 'post',
- data:data,
- url: '/mobile/merchantApi/withdrawalRecordList',
- })
- }
- export function withdrawalRecordDetail(data) {
- return request({
- method: 'post',
- data: {
- id:data
- },
- url: '/mobile/merchantApi/withdrawalRecordDetail',
- })
- }
- export function withdrawalSubmit(data) {
- return request({
- method: 'post',
- data:{
- amount:data
- },
- url: '/mobile/merchantApi/withdrawalSubmit',
- })
- }
|