Blame view

src/api/ptjk.js 1.19 KB
1
/*
2
 * @Description: 平台接口
3
 * @Autor: renchao
4
 * @LastEditTime: 2023-05-16 15:56:15
5 6
 */

蔡俊立 committed
7
import request from '@/utils/request'
8
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
蔡俊立 committed
9

10 11 12 13 14
/**
 * @description: 新增平台接口
 * @param {*} data
 * @author: renchao
 */
15 16 17 18 19 20 21 22
export function addSysInterface (data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/system/ptjk/addSysInterface",
    method: 'post',
    data
  })
}

23 24 25 26 27
/**
 * @description: 编辑平台接口
 * @param {*} data
 * @author: renchao
 */
28 29 30 31 32 33 34
export function editSysInterface (data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/system/ptjk/editSysInterface",
    method: 'post',
    data
  })
}
35 36 37 38 39
/**
 * @description: 接口调取
 * @param {*} data
 * @author: renchao
 */
40 41 42 43 44 45 46
export function interfaceRetrieve (data) {
  return request({
    url: SERVER.SERVERAPI + "/rest/system/ptjk/interfaceRetrieve",
    method: 'post',
    data
  })
}
蔡俊立 committed
47

48 49 50 51 52
/**
 * @description: 获取平台接口列表
 * @param {*} data
 * @author: renchao
 */
53
export function getSysInterfaceList (data) {
蔡俊立 committed
54
  return request({
55
    url: SERVER.SERVERAPI + "/rest/system/ptjk/getSysInterfaceList",
蔡俊立 committed
56 57 58 59 60
    method: 'post',
    data
  })
}