1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

进出日志后台查询;小程序端进门;导出表格时日期转换

This commit is contained in:
2023-04-16 16:56:56 +08:00
parent c91b045430
commit 62ed92029c
19 changed files with 567 additions and 32 deletions

View File

@@ -13,3 +13,18 @@ export function getGateDetail(id) {
}
})
}
/** 进入大门 */
export function enterGate(gateId, type) {
let userInfo = wx.getStorageSync("userInfo")
console.log("userId, gateId, type", userInfo.id, gateId, type)
return send_request({
url: '/access/access-log/miniprogram/enterGate',
method: "GET",
data: {
userId: userInfo.id,
gateId,
type
}
})
}