You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
703 B
41 lines
703 B
1 year ago
|
import request from '@/sheep/request';
|
||
|
|
||
|
export default {
|
||
|
order: (id) =>
|
||
|
request({
|
||
|
url: 'trade.order/detail',
|
||
|
method: 'GET',
|
||
|
params:{
|
||
|
id:id
|
||
|
},
|
||
|
custom: {
|
||
|
showLoading: false,
|
||
|
},
|
||
|
}),
|
||
|
orderLog: (params) =>
|
||
|
request({
|
||
|
url: 'trade.order',
|
||
|
method: 'GET',
|
||
|
params,
|
||
|
custom: {
|
||
|
showLoading: false,
|
||
|
},
|
||
|
}),
|
||
|
|
||
|
rechargeRules: () =>
|
||
|
request({
|
||
|
url: 'trade.order/rechargeRules',
|
||
|
method: 'GET',
|
||
|
custom: {
|
||
|
showError: false,
|
||
|
showLoading: false,
|
||
|
},
|
||
|
}),
|
||
|
recharge: (data) =>
|
||
|
request({
|
||
|
url: 'trade.order/recharge',
|
||
|
method: 'POST',
|
||
|
data,
|
||
|
}),
|
||
|
};
|