视频播放

This commit is contained in:
2024-06-19 15:31:08 +08:00
parent 05e8da330a
commit 3e8696345e
164 changed files with 44570 additions and 1117 deletions

15
components/list/api/ip.js Normal file
View File

@@ -0,0 +1,15 @@
export function getIP (data) {
return new Promise((resolve, reject) => {
uni.request({
url: 'https://logger-data.csslcloud.net/api/detection',
data,
success: (res) => {
if (res.error) {
reject(res.data)
} else {
resolve(res.data)
}
}
})
})
}