index.js 442 B

1234567891011121314151617181920
  1. import https from '@/plugins/luch-request_0.0.7/request'
  2. /** *
  3. * 供应商列表 姜枫 2021.04.01
  4. */
  5. export const getList = data => {
  6. return https.get('/ghs/list', data)
  7. }
  8. export const getGhsDataApi = data => {
  9. return https.get('/ghs/detail', data)
  10. }
  11. export const ghsInfo = data => {
  12. return https.get('/ghs/info', data)
  13. }
  14. //获取客户等级
  15. export const getCustomLevel = data => {
  16. return https.get('/ghs/get-custom-level', data)
  17. }