租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
525 B

1 year ago
1 year ago
1 year ago
1 year ago
  1. "use strict";
  2. const common_vendor = require("./vendor.js");
  3. const { http } = common_vendor.index.$uv;
  4. console.info(`http`, http);
  5. const fetchMenu = (params, config = {}) => http.get("/applet/index/getRecommendDocs", params, config);
  6. const appletLogin = (params) => http.get("/houserent-admin/login_common/appletLogin", { params });
  7. const getConfig = (params) => http.get("/houserent-admin/config_common/getConfig", { params });
  8. exports.appletLogin = appletLogin;
  9. exports.fetchMenu = fetchMenu;
  10. exports.getConfig = getConfig;