准备联调抄表记录

This commit is contained in:
2025-09-16 17:35:49 +08:00
194 changed files with 6560 additions and 1095 deletions

View File

@@ -13,7 +13,6 @@ export const userValidate = async function(data) {
// 获取用户邀请二维码
export const getWxCode = async function(id) {
console.log("id", id)
return await GET(`/wx/getWxCode?id=${id}`);
}
@@ -68,4 +67,9 @@ export const getPrivaciList = async function() {
// 获取常见问题
export const getQuestionList = async function(page) {
return await GET(`/wx/getQuestions?page=${page}&type=0`);
}
// 获取扫描二维码的列表
export const getBackApproveList = async function(tenement) {
return await GET(`/wx/getWorkUserList?tenement=${tenement}`);
}