修改 app

This commit is contained in:
GGJ
2024-09-02 09:50:59 +08:00
parent 8214b40495
commit fd55306d1a
30 changed files with 2380 additions and 2091 deletions

13
common/api/accessBoot.js Normal file
View File

@@ -0,0 +1,13 @@
import request from '../js/request'
import config from '../js/config'
export function manualAccess(params) {
return request({
url: '/access-boot/device/manualAccess',
method: 'post',
params: params,
header: {
'Content-Type': 'application/json',
},
})
}