Newer
Older
safe_production_front / src / api / monitor / realTime.ts
import request from '../index'

// 抓拍上传
export function pictureAdd(data: any) {
  return request({
    url: 'picture/upload',
    method: 'post',
    data,
    // headers: { 'Content-Type': 'multipart/form-data' },
    // responseType: 'blob',
  })
}

export function getPicListPage(params: any) {
  return request({
    url: 'picture/hisListPage',
    method: 'get',
    params,
    data: params,
  })
}