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

8 lines
361 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 wxLogin = (params) => http.get("/api/login/login", { params });
exports.fetchMenu = fetchMenu;
exports.wxLogin = wxLogin;