You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
340 B
16 lines
340 B
|
|
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)
|
|
}
|
|
|