| 1234567891011121314151617181920212223 |
- import https from '@/plugins/luch-request_0.0.7/request'
- //首页
- export const getMainIndex = data => {
- return https.get('/main/index', data)
- }
- // 我的
- export const mainMy = async (data) => {
- return https.get("/main/my", data);
- };
- //提现申请
- export const applyCash = async (data) => {
- return https.get("/cash/apply", data);
- };
- // 选客户
- export const customList = async (data) => {
- return https.get("/custom/list", data);
- };
- // 报损
- export const wastageCreateOrder = data => {
- return https.post('/wastage/create-order', data)
- }
|