Blame view

src/api/jkfw.js 845 Bytes
蔡俊立 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
import request from '@/utils/request'
import SERVER from './config'

// 新增平台接口
export function addSysInterface(data) {
    return request({
      url: SERVER.SERVERAPI+"/rest/system/ptjk/addSysInterface",
      method: 'post',
      data
    })
  }
 
// 编辑平台接口
export function editSysInterface(data) {
    return request({
      url: SERVER.SERVERAPI+"/rest/system/ptjk/editSysInterface",
      method: 'post',
      data
    })
  }
// 接口调取
export function interfaceRetrieve(data) {
    return request({
      url: SERVER.SERVERAPI+"/rest/system/ptjk/interfaceRetrieve",
      method: 'post',
      data
    })
  }  

// 获取平台接口列表
export function getSysInterfaceList(data) {
  return request({
    url: SERVER.SERVERAPI+"/rest/system/ptjk/getSysInterfaceList",
    method: 'post',
    data
  })
}