This commit is contained in:
GGJ
2025-01-09 19:02:44 +08:00
commit 92e7a7a5eb
2943 changed files with 1152283 additions and 0 deletions

31
src/api/kingview.js Normal file
View File

@@ -0,0 +1,31 @@
import request from '@/utils/request'
export function add(data) {
return request({
url: '/system-boot/king/addKingView',
method: 'post',
data
})
}
export function list() {
return request({
url: '/system-boot/king/getKingViewList',
method: 'get'
})
}
export function getById(data) {
return request({
url: '/system-boot/king/getKingViewById',
method: 'get',
params: { id: data },
})
}
export default { add, list, getById }