Compare commits

..

1 Commits

Author SHA1 Message Date
kk 81bec5ba3b 开门增加来源
Uni-app H5 Deploy (Prod + Staging) / deploy (release) Successful in 45s
2026-07-15 17:02:07 +08:00
+3 -1
View File
@@ -131,6 +131,7 @@
<script> <script>
import { get, post } from '@/utils/request.js'; import { get, post } from '@/utils/request.js';
import { detectPlatform } from '@/utils/env.js';
export default { export default {
props: { props: {
@@ -163,7 +164,8 @@ export default {
const res = await post('/device-scan/open', { const res = await post('/device-scan/open', {
device_id: this.deviceId, device_id: this.deviceId,
door_index: 0, door_index: 0,
user_id: uid user_id: uid,
platform: detectPlatform()
}); });
const ret = res.data || {}; const ret = res.data || {};