| 12345678910111213141516171819202122232425262728 |
- import https from '@/plugins/luch-request_0.0.7/request'
- export const changeLocationFn = data => {
- return https.get('/ghs/change-location', data)
- }
- export const changeGhsName = data => {
- return https.get('/ghs/modify-name', data)
- }
- /** *
- * 供货商列表 姜枫 2021.04.01 ghs/add
- */
- export const getList = data => {
- return https.get('/ghs/list', data)
- }
- /** *
- * 添加供货商 汪宁 2021.06.11
- */
- export const ghsAdd = data => {
- return https.post('/ghs/add', data)
- }
- export const getGhsDebtRecord = data => {
- return https.get('/ghs-debt-record/list', data)
- }
|