1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import request from '@/utils/request'
- // 查询离线数据分析列表
- export function listAnalysis(query) {
- return request({
- url: '/showInfo/analysis/list',
- method: 'get',
- params: query
- })
- }
- // 查询离线数据分析详细
- export function getAnalysis(id) {
- return request({
- url: '/showInfo/analysis/' + id,
- method: 'get'
- })
- }
- // 新增离线数据分析
- export function addAnalysis(data) {
- return request({
- url: '/showInfo/analysis',
- method: 'post',
- data: data
- })
- }
- // 修改离线数据分析
- export function updateAnalysis(data) {
- return request({
- url: '/showInfo/analysis',
- method: 'put',
- data: data
- })
- }
- // 删除离线数据分析
- export function delAnalysis(id) {
- return request({
- url: '/showInfo/analysis/' + id,
- method: 'delete'
- })
- }
|