| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- import https from '@/plugins/luch-request_0.0.7/request'
- export const showTotalBalance = data => {
- return https.get('/custom/show-total-balance', data)
- }
- export const setChange = data => {
- return https.post('/custom/set-change', data)
- }
- export const getGatheringCode = data => {
- return https.get('/custom/get-gathering-code', data)
- }
- export const getCustomBalanceChange = data => {
- return https.get('/custom-balance-change/list', data)
- }
- export const getCustomRechargeChange = data => {
- return https.get('/custom-recharge/list', data)
- }
- export const getCustomRechargeList = data => {
- return https.get('/custom-recharge/list', data)
- }
- export const rechargeFn = data => {
- return https.get('/custom/recharge', data)
- }
- export const modifySeatSnFn = data => {
- return https.get('/custom/modify-seat-sn', data)
- }
- export const createSeatSnFn = data => {
- return https.get('/custom/create-seat-sn', data)
- }
- export const modifyAddress = data => {
- return https.post('/custom/modify-address', data)
- }
- export const changeIsHd = data => {
- return https.get('/custom/change-is-hd', data)
- }
- export const modifyShortName = data => {
- return https.get('/custom/modify-short-name', data)
- }
- export const changeRiseRule = data => {
- return https.get('/custom/change-rise-rule', data)
- }
- export const modifyHomeParams = data => {
- return https.get('/custom/modify-home-amount', data)
- }
- export const modifyAllHomeParams = data => {
- return https.get('/custom/modify-all-home-amount', data)
- }
- export const changeWlName = data => {
- return https.get('/custom/change-wl-name', data)
- }
- export const changeWl = data => {
- return https.get('/custom/change-wl', data)
- }
- export const changeShowStock = data => {
- return https.get('/custom/change-show-stock', data)
- }
- export const toChangeHome = data => {
- return https.get('/custom/change-home', data)
- }
- export const changePassStatus = data => {
- return https.get('/custom/change-pass-status', data)
- }
- export const changeName = data => {
- return https.get('/custom/change-name', data)
- }
- export const addStaff = data => {
- return https.post('/custom/add-staff', data)
- }
- export const updateDebtLimit = data => {
- return https.get('/custom/update-debt-limit', data)
- }
- export const updateCustomBlack = data => {
- return https.get('/custom/set-black', data)
- }
- export const changeDiscount = data => {
- return https.get('/custom/change-discount', data)
- }
- export const changeLevel = data => {
- return https.get('/custom/change-level', data)
- }
- export const debtChangeList = data => {
- return https.get('/custom-debt-change/list', data)
- }
- export const createCumtomer = data => {
- return https.post('/custom/create-customers', data)
- }
- export const copyCumtomer = data => {
- return https.get('/custom/copy-customers', data)
- }
- export const changeDelStatus = data => {
- return https.get('/custom/change-del-status', data)
- }
- export const allCredit = data => {
- return https.get('/custom/all-credit', data)
- }
- export const allSetLookStock = data => {
- return https.get('/custom/all-set-look-stock', data)
- }
- export const allSetLookSale = data => {
- return https.get('/custom/all-set-look-sale', data)
- }
- export const changeDebtLimitPay = data => {
- return https.get('/custom/change-debt-limit-pay', data)
- }
- //拉取(刷新)客户累计消费
- export const refreshCustomBuyAmount = data => {
- return https.get('/custom/refresh-buyamount', data)
- }
|