Files
hb_pqs_web/src/api/kingview.js

31 lines
517 B
JavaScript
Raw Normal View History

2025-01-09 19:02:44 +08:00
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 }