hn-hlw-app/utils/ykf-api.js

10 lines
176 B
JavaScript
Raw Permalink Normal View History

2026-07-27 11:26:39 +08:00
import request from "./http";
export async function getCloudServiceData(data) {
return await request({
url: "/getCloudServiceData",
data: {
data
},
});
}