You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
323 lines
11 KiB
Vue
323 lines
11 KiB
Vue
<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="danger"
|
|
plain
|
|
icon="el-icon-delete"
|
|
size="mini"
|
|
:disabled="multiple"
|
|
@click="handleDelete"
|
|
v-hasPermi="['system:portLog:remove']"
|
|
>删除</el-button>
|
|
</el-col>
|
|
<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>
|