Files
sist_adminui/ebts-ui/src/api/tool/top.js
2021-12-27 18:00:02 +08:00

41 lines
677 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @author: Clay
* @date: 2021/7/23 21:40
* @descriptiontop
* @email: clay@hchyun.com
*/
import request from '@/utils/request'
// 查询万能查询详细
export function getQuery(id) {
return request({
url: '/top/' + id,
method: 'get'
})
}
// 查询万能查询详细
export function getTables() {
return request({
url: '/top/table',
method: 'get'
})
}
// 查询万能查询详细
export function updateQuery(data) {
return request({
url: '/top',
method: 'put',
data:data
})
}
// 查询万能查询详细
export function preview(data) {
return request({
url: '/top/preview',
method: 'post',
data:data
})
}