add - 接口日志

master
yinq 1 year ago
parent 6b572c7b1d
commit f6681700f7

@ -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'
})
}

@ -0,0 +1,312 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<!-- <el-form-item label="工厂编码" prop="factoryCode">-->
<!-- <el-input-->
<!-- v-model="queryParams.factoryCode"-->
<!-- placeholder="请输入工厂编码"-->
<!-- clearable-->
<!-- @keyup.enter.native="handleQuery"-->
<!-- />-->
<!-- </el-form-item>-->
<el-form-item label="接口标题" prop="logTitle">
<el-input
v-model="queryParams.logTitle"
placeholder="请输入接口标题"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="方法名称" prop="logMethod">
<el-input
v-model="queryParams.logMethod"
placeholder="请输入方法名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="操作时间">
<el-date-picker
v-model="daterangeOperationTime"
style="width: 340px"
value-format="yyyy-MM-dd HH:mm:ss"
type="datetimerange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
></el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery"></el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"></el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['system:portLog:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="portLogList" @selection-change="handleSelectionChange" >>
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="主键标识" align="center" prop="objId" v-if="columns[0].visible"/>
<el-table-column label="工厂编码" align="center" prop="factoryCode" v-if="columns[1].visible"/>
<el-table-column label="接口标题" align="center" prop="logTitle" v-if="columns[2].visible"/>
<el-table-column label="方法名称" align="center" prop="logMethod" v-if="columns[3].visible"/>
<el-table-column label="请求参数" align="center" prop="operationParam" v-if="columns[4].visible" :show-overflow-tooltip="true" />
<el-table-column label="返回消息" align="center" prop="resultOne" v-if="columns[5].visible" :show-overflow-tooltip="true"/>
<!-- <el-table-column label="返回消息二" align="center" prop="resultTwo" v-if="columns[6].visible" :show-overflow-tooltip="true" />-->
<!-- <el-table-column label="返回消息三" align="center" prop="resultThree" v-if="columns[7].visible" :show-overflow-tooltip="true" />-->
<el-table-column label="错误消息" align="center" prop="errorMsg" v-if="columns[8].visible" :show-overflow-tooltip="true" />
<el-table-column label="操作人" align="center" prop="operationUser" v-if="columns[9].visible"/>
<el-table-column label="操作时间" align="center" prop="operationTime" width="180" v-if="columns[10].visible">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.operationTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['system:portLog:edit']"
>查看明细</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改MES接口日志对话框 -->
<el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item label="工厂编码:" prop="factoryCode">
{{form.factoryCode}}
</el-form-item>
<el-form-item label="接口标题:" prop="logTitle">
{{form.logTitle}}
</el-form-item>
<el-form-item label="方法名称:" prop="logMethod">
{{form.logMethod}}
</el-form-item>
<el-form-item label="请求参数:">
{{form.operationParam}}
</el-form-item>
<el-form-item label="返回消息:" >
{{form.resultOne}}
</el-form-item>
<!-- <el-form-item label="返回消息二:">-->
<!-- {{form.resultTwo}}-->
<!-- </el-form-item>-->
<!-- <el-form-item label="返回消息三:">-->
<!-- {{form.resultThree}}-->
<!-- </el-form-item>-->
<el-form-item label="错误消息:">
{{form.errorMsg}}
</el-form-item>
<el-form-item label="操作人:">
{{form.operationUser}}
</el-form-item>
<el-form-item label="操作时间:">
{{form.operationTime}}
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<!-- <el-button type="primary" @click="submitForm"> </el-button>-->
<el-button type="primary" @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listPortLog, getPortLog, delPortLog, addPortLog, updatePortLog } from "@/api/system/portLog";
export default {
name: "PortLog",
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
// MES
portLogList: [],
//
title: "",
//
open: false,
//
daterangeOperationTime: [],
//
queryParams: {
pageNum: 1,
pageSize: 10,
factoryCode: null,
logTitle: null,
logMethod: null,
operationParam: null,
resultOne: null,
resultTwo: null,
resultThree: null,
errorMsg: null,
operationUser: null,
operationTime: null
},
//
form: {},
//
rules: {
},
columns: [
{ key: 0, label: `主键标识`, visible: false },
{ key: 1, label: `工厂编码`, visible: false },
{ key: 2, label: `接口标题`, visible: true },
{ key: 3, label: `方法名称`, visible: true },
{ key: 4, label: `请求参数`, visible: true },
{ key: 5, label: `返回消息一`, visible: true },
{ key: 6, label: `返回消息二`, visible: true },
{ key: 7, label: `返回消息三`, visible: true },
{ key: 8, label: `错误消息`, visible: true },
{ key: 9, label: `操作人`, visible: false },
{ key: 10, label: `操作时间`, visible: true },
]
};
},
created() {
this.getList();
},
methods: {
/** 查询MES接口日志列表 */
getList() {
this.loading = true;
this.queryParams.params = {};
if (null != this.daterangeOperationTime && '' != this.daterangeOperationTime) {
this.queryParams.params["beginOperationTime"] = this.daterangeOperationTime[0];
this.queryParams.params["endOperationTime"] = this.daterangeOperationTime[1];
}
listPortLog(this.queryParams).then(response => {
this.portLogList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
objId: null,
factoryCode: null,
logTitle: null,
logMethod: null,
operationParam: null,
resultOne: null,
resultTwo: null,
resultThree: null,
errorMsg: null,
operationUser: null,
operationTime: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.daterangeOperationTime = [];
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.objId)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加MES接口日志";
},
/** 明细按钮操作 */
handleUpdate(row) {
this.reset();
const objId = row.objId || this.ids
getPortLog(objId).then(response => {
this.form = response.data;
this.open = true;
this.title = "MES接口日志明细";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.objId != null) {
updatePortLog(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addPortLog(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const objIds = row.objId || this.ids;
this.$modal.confirm('是否确认删除MES接口日志编号为"' + objIds + '"的数据项?').then(function() {
return delPortLog(objIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('system/portLog/export', {
...this.queryParams
}, `portLog_${new Date().getTime()}.xlsx`)
}
}
};
</script>
Loading…
Cancel
Save