| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import https from '@/plugins/luch-request_0.0.7/request'
- export const rechargeClear = data => {
- return https.get('/custom/recharge-clear', 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 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 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)
- }
|