uni-Identify-quality/http/deposit.js

20 lines
325 B
JavaScript
Raw Permalink Normal View History

2023-09-22 06:35:58 +00:00
import http from "./interface";
// 地点
export const address = () => {
return http.request({
url: "/api/warehouse/address",
method: "POST",
});
};
2024-06-28 08:09:48 +00:00
const fddIsPass = () => {
return http.request({
url: "/api/wxuser/fdd/status/pass",
method: "POST",
});
};
2023-09-22 06:35:58 +00:00
export default {
address,
2024-06-28 08:09:48 +00:00
fddIsPass,
2023-09-22 06:35:58 +00:00
};