feat: draw card

This commit is contained in:
zzc
2026-01-19 18:05:36 +08:00
parent 693d9673b4
commit bff9a07ed4
11 changed files with 799 additions and 12 deletions

9
src/api/system/index.js Normal file
View File

@@ -0,0 +1,9 @@
import request from '@/utils/request'
export function getDeviceList(data) {
return request({
url: 'management/api/system/device/list',
method: 'get',
params: data,
})
}