2024-02-24 16:08:09 +08:00
|
|
|
|
// 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请求的配置等,都在第二个参数中,详见前面解释
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2024-03-12 18:06:08 +08:00
|
|
|
|
export const getCitys = (data) => request.get('city/get_city', data, {
|
|
|
|
|
noAuth: true
|
|
|
|
|
})
|
2024-02-24 16:08:09 +08:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
})
|