| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import https from '@/plugins/luch-request_0.0.7/request'
- export const bx = data => {
- return https.get('/expend/bx', data)
- }
- export const getUnBxList = data => {
- return https.get('/expend/un-bx-list', data)
- }
- export const getStat = data => {
- return https.get('/expend/stat', data)
- }
- export const getTypeList = data => {
- return https.get('/expend/get-type-list', data)
- }
- export const getSalaryList = data => {
- return https.get('/salary/list', data)
- }
- export const addSalary = data => {
- return https.post('/salary/add-salary', data)
- }
- export const addExpend = data => {
- return https.post('/expend/add-expend', data)
- }
- export const getExpendList = data => {
- return https.get('/expend/list', data)
- }
- export const deleteExpend = data => {
- return https.post('/expend/del-expend', data)
- }
- export const changePayTime = data => {
- return https.get('/expend/change-pay-time', data)
- }
|