fix:多平台兼容

This commit is contained in:
2026-03-16 11:52:27 +08:00
parent b3836b8bf2
commit a79cf10bd4
18 changed files with 358 additions and 295 deletions
+3 -2
View File
@@ -50,13 +50,14 @@ export const transformDeviceData = (device) => {
}
// 立即租借
export const rentPowerBank = (deviceNo, phone) => {
export const rentPowerBank = (deviceNo, phone,payway) => {
return request({
url: `/app/device/rentPowerBank?deviceNo=${deviceNo}`,
method: 'post',
data: {
// deviceNo,
phone
phone,
payway
}
})
}