mall_client/zyhs_app_java/zyhs3_uniapp/common/http/api.js

25 lines
481 B
JavaScript
Raw Normal View History

2026-03-13 07:50:35 +00:00
import http from './index'
// 发送请求
export const sendRequest = (method, url, data) => {
return http.request({
url: url,
method: method || "GET",
data,
header: {
"Content-Type": "application/x-www-form-urlencoded"
}
});
};
// 发送请求, application/json
export const sendRequestJson = (method, url, data) => {
return http.request({
url: url,
method: method || "GET",
data,
header: {
"Content-Type": "application/json;charset=UTF-8"
}
});
};