diff --git a/src/api/system/portLog.js b/src/api/system/portLog.js new file mode 100644 index 0000000..a7e0212 --- /dev/null +++ b/src/api/system/portLog.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询MES接口日志列表 +export function listPortLog(query) { + return request({ + url: '/system/portLog/list', + method: 'get', + params: query + }) +} + +// 查询MES接口日志详细 +export function getPortLog(objId) { + return request({ + url: '/system/portLog/' + objId, + method: 'get' + }) +} + +// 新增MES接口日志 +export function addPortLog(data) { + return request({ + url: '/system/portLog', + method: 'post', + data: data + }) +} + +// 修改MES接口日志 +export function updatePortLog(data) { + return request({ + url: '/system/portLog', + method: 'put', + data: data + }) +} + +// 删除MES接口日志 +export function delPortLog(objId) { + return request({ + url: '/system/portLog/' + objId, + method: 'delete' + }) +} diff --git a/src/views/system/portLog/index.vue b/src/views/system/portLog/index.vue new file mode 100644 index 0000000..20a9af7 --- /dev/null +++ b/src/views/system/portLog/index.vue @@ -0,0 +1,312 @@ + + +