| 1234567891011121314151617181920212223242526272829 | import request from '@/sheep/request';const WithdrawalApi = {  getWithdrawalPage: (params) => {    return request({      url: '/distri/application-for-withdrawal/page',      method: 'GET',      params,      custom: {        showLoading: false,        showError: false,      },    });  },  // 获得提现比例  getWithdrawalPercentage: (params) => {    return request({      url: '/distri/order-percentage/get',      method: 'GET',      params,      custom: {        showLoading: false,        showError: false,      },    });  },  };export default WithdrawalApi;
 |