初始化

This commit is contained in:
2025-07-01 21:36:08 +08:00
commit 5f904364bf
51 changed files with 18760 additions and 0 deletions

7
src/api/adb.js Normal file
View File

@@ -0,0 +1,7 @@
import { getAxios, postAxios, downFile } from '@/utils/axios.js'
export function getPhoneSize() {
return getAxios({ url: '/api/router/scrcpy/size' })
}
export function touchclick(data) {
return getAxios({ url: `/api/router/scrcpy/click?x=${data.x}&y=${data.y}&type=${data.type}`, })
}