new_shop_app/api/article.js
2024-03-12 18:06:08 +08:00

29 lines
935 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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
})