/* * @Description: 平台接口 * @Autor: renchao * @LastEditTime: 2023-05-16 15:56:15 */ import request from '@/utils/request' let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) /** * @description: 新增平台接口 * @param {*} data * @author: renchao */ export function addSysInterface (data) { return request({ url: SERVER.SERVERAPI + "/rest/system/ptjk/addSysInterface", method: 'post', data }) } /** * @description: 编辑平台接口 * @param {*} data * @author: renchao */ export function editSysInterface (data) { return request({ url: SERVER.SERVERAPI + "/rest/system/ptjk/editSysInterface", method: 'post', data }) } /** * @description: 接口调取 * @param {*} data * @author: renchao */ export function interfaceRetrieve (data) { return request({ url: SERVER.SERVERAPI + "/rest/system/ptjk/interfaceRetrieve", method: 'post', data }) } /** * @description: 获取平台接口列表 * @param {*} data * @author: renchao */ export function getSysInterfaceList (data) { return request({ url: SERVER.SERVERAPI + "/rest/system/ptjk/getSysInterfaceList", method: 'post', data }) }