租房小程序前端代码
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

"use strict";
const common_vendor = require("./vendor.js");
const { http } = common_vendor.index.$uv;
console.info(`http`, http);
const fetchMenu = (params, config = {}) => http.get("/applet/index/getRecommendDocs", params, config);
const appletLogin = (params) => http.get("/houserent-admin/login_common/appletLogin", { params });
const getConfig = (params) => http.get("/houserent-admin/config_common/getConfig", { params });
exports.appletLogin = appletLogin;
exports.fetchMenu = fetchMenu;
exports.getConfig = getConfig;