1
0
forked from dyf/APP

app网络请求封装修改

This commit is contained in:
fengerli
2025-07-07 18:59:34 +08:00
parent 1128114e73
commit e69ff064d5
8 changed files with 145 additions and 85 deletions

9
api/common/qrcode.js Normal file
View File

@ -0,0 +1,9 @@
import request from '@/utils/request'
// APP设备入库绑定
export function deviceBind(data) {
return request({
url: '/api/app/device/bind',
method: 'POST',
data: data
})
}