29 lines
935 B
JavaScript
29 lines
935 B
JavaScript
// import request from "@/utils/request.js";
|
||
import request from "@/utils/request.js";
|
||
// import http from "@/utils/http.js";
|
||
// export const postShopInfo = (params, config = {}) => request.post('/edcapi/Shop_shopDeatil', params, config)
|
||
// // get请求,获取菜单,注意:get请求的配置等,都在第二个参数中,详见前面解释
|
||
/**
|
||
*
|
||
*/
|
||
|
||
export const getCitys = (data) => request.get('city/get_city', data, {
|
||
noAuth: true
|
||
})
|
||
|
||
export const getArea = (data) => request.get('city/get_area', data, {
|
||
noAuth: true
|
||
})
|
||
export const getStreet = (data) => request.get('city/get_street', data, {
|
||
noAuth: true
|
||
})
|
||
export const getVillage = (data) => request.get('city/get_village', data, {
|
||
noAuth: true
|
||
})
|
||
export const getbrigadeAPI = (data) => request.get('common/get_brigade', data, {
|
||
noAuth: true
|
||
})
|
||
export const postBindingAPI = (data) => request.post('Userinfo/Binding', data, {
|
||
noAuth: true,
|
||
noVerify: true
|
||
}) |