import { get, post } from '@/api/axios' export function getConfig () { return get('static/config.json', null, { baseURL: './' }) } // get接口例子 export function debug (params) { return get('api/tall/v1.0/debug', params) } // post接口例子 export function switchLabel (params) { return post('/goods/switchLabel', params) }