Commit 5cc88147 authored by 周远喜's avatar 周远喜

异常日志功能开发。

parent 3e77715f
import Api from '@/plugins/request' import Api from '@/plugins/request'
export default { export default {
index:`${systemUrl}/runlog/paged`, index: `${systemUrl}/runlog/paged`,
paged(params){ paged(params) {
return Api.post(`${systemUrl}/runlog/paged`,params); return Api.post(`${systemUrl}/runlog/paged`, params);
}, },
get(params){ get(params) {
return Api.get(`${systemUrl}/runlog/get`,params); return Api.get(`${systemUrl}/runlog/get`, params);
}, },
create(params){ create(params) {
return Api.post(`${systemUrl}/runlog/create`,params); return Api.post(`${systemUrl}/runlog/create`, params);
}, },
update(params){ update(params) {
return Api.post(`${systemUrl}/runlog/update`,params); return Api.post(`${systemUrl}/runlog/update`, params);
}, },
delete(id) { delete(id) {
return Api.delete(`${systemUrl}/runlog/delete`,{params:{id:id}}); return Api.delete(`${systemUrl}/runlog/delete`, {
params: {
id: id
}
});
// return Api.post(`${systemUrl}/runlog/delete`,{params:{id:id}}); // return Api.post(`${systemUrl}/runlog/delete`,{params:{id:id}});
}, },
deletes(params) { deleteAll(end) {
return Api.post(`${systemUrl}/runlog/batchdelete`,params); return Api.post(`${systemUrl}/runlog/deletebefore`, {
} dateTime: end
} });
\ No newline at end of file }
}
...@@ -2,16 +2,16 @@ ...@@ -2,16 +2,16 @@
<div class="detail"> <div class="detail">
<Row> <Row>
<Filed :span="12" :name="l('creationTime')">{{entity.creationTime}}</Filed> <!-- <Filed :span="12" :name="l('creationTime')">{{entity.creationTime}}</Filed>
<Filed :span="12" :name="l('creatorUserId')">{{entity.creatorUserId}}</Filed> <Filed :span="12" :name="l('creatorUserId')">{{entity.creatorUserId}}</Filed>
<Filed :span="12" :name="l('lastModificationTime')">{{entity.lastModificationTime}}</Filed> <Filed :span="12" :name="l('lastModificationTime')">{{entity.lastModificationTime}}</Filed>
<Filed :span="12" :name="l('lastModifierUserId')">{{entity.lastModifierUserId}}</Filed> <Filed :span="12" :name="l('lastModifierUserId')">{{entity.lastModifierUserId}}</Filed>
<Filed :span="12" :name="l('isDeleted')">{{entity.isDeleted}}</Filed> <Filed :span="12" :name="l('isDeleted')">{{entity.isDeleted}}</Filed>
<Filed :span="12" :name="l('deletionTime')">{{entity.deletionTime}}</Filed> <Filed :span="12" :name="l('deletionTime')">{{entity.deletionTime}}</Filed>
<Filed :span="12" :name="l('deleterUserId')">{{entity.deleterUserId}}</Filed> <Filed :span="12" :name="l('deleterUserId')">{{entity.deleterUserId}}</Filed> -->
<Filed :span="12" :name="l('timestamp')">{{entity.timestamp}}</Filed> <Filed :span="12" :name="l('timestamp')">{{entity.timestamp}}</Filed>
<Filed :span="12" :name="l('level')">{{entity.level}}</Filed> <Filed :span="12" :name="l('level')">{{entity.level}}</Filed>
<Filed :span="12" :name="l('messageTemplate')">{{entity.messageTemplate}}</Filed> <!-- <Filed :span="12" :name="l('messageTemplate')">{{entity.messageTemplate}}</Filed> -->
<Filed :span="12" :name="l('renderedMessage')">{{entity.renderedMessage}}</Filed> <Filed :span="12" :name="l('renderedMessage')">{{entity.renderedMessage}}</Filed>
<Filed :span="12" :name="l('clientIpAddress')">{{entity.clientIpAddress}}</Filed> <Filed :span="12" :name="l('clientIpAddress')">{{entity.clientIpAddress}}</Filed>
<Filed :span="12" :name="l('loginName')">{{entity.loginName}}</Filed> <Filed :span="12" :name="l('loginName')">{{entity.loginName}}</Filed>
...@@ -20,9 +20,8 @@ ...@@ -20,9 +20,8 @@
<Filed :span="12" :name="l('status')">{{entity.status}}</Filed> <Filed :span="12" :name="l('status')">{{entity.status}}</Filed>
<Filed :span="12" :name="l('requestUrl')">{{entity.requestUrl}}</Filed> <Filed :span="12" :name="l('requestUrl')">{{entity.requestUrl}}</Filed>
<Filed :span="12" :name="l('requestParam')">{{entity.requestParam}}</Filed> <Filed :span="12" :name="l('requestParam')">{{entity.requestParam}}</Filed>
<Filed :span="12" :name="l('exception')">{{entity.exception}}</Filed> <Filed :span="24" :name="l('exception')">{{entity.exception}}</Filed>
</Row> </Row>
</div> </div>
</template> </template>
<script> <script>
......
<template> <template>
<div> <div>
<DataGrid :columns="columns" ref="grid" :action="action"><template slot="easySearch"><Form ref="formInline" :model="easySearch" inline><FormItem prop="keys"><Input placeholder="请输入关键字登录账号/租户编号" v-model="easySearch.keys.value" /> </FormItem> <DataGrid :columns="columns" ref="grid" :action="action">
<FormItem><Button type="primary" @click="search">查询</Button></FormItem> <template slot="easySearch">
</Form></template> <Form ref="formInline" :model="easySearch" inline>
<template slot="searchForm"> <FormItem prop="keys">
<Search /> <Input placeholder="请输入关键字登录账号/租户编号" v-model="easySearch.keys.value" v-width="300"/>
</template> </FormItem>
<template slot="buttons"> <FormItem>
<!-- <Button type="primary" @click="add">新增</Button> --> <Button type="primary" @click="search">查询</Button>
</template> </FormItem>
</DataGrid> </Form>
<Modal v-model="modal" :title="title" width="1200" footer-hide> </template>
<component :is="detail" :eid="curId" @on-close="cancel" @on-ok="ok" /> <template slot="searchForm">
</Modal> <Search />
</div> </template>
<template slot="buttons">
<DatePicker type="date" v-model="end" placeholder="选择终止日期" style="width: 150px"></DatePicker>
<Button type="error" @click="clear">清理</Button>
</template>
</DataGrid>
<Modal v-model="modal" :title="title" fullscreen footer-hide>
<component :is="detail" :eid="curId" @on-close="cancel" @on-ok="ok" />
</Modal>
</div>
</template> </template>
<script> <script>
import Api from './api' import Api from "./api";
import Search from './search' import Search from "./search";
export default { export default {
name: 'list', name: "list",
components:{ components: {
Search Search,
}, },
head: { head: {
title: "系统异常日志", title: "系统异常日志",
author: "henq", author: "henq",
description: "run_log 7/23/2020 10:55:35 AM", description: "run_log 7/23/2020 10:55:35 AM",
}, },
data() { data() {
return { return {
action: Api.index, action: Api.index,
easySearch: { easySearch: {
keys:{op:"loginName,tanentCode",value:null} keys: { op: "loginName,tanentCode", value: null },
}, },
modal: false, end:null,
title:"新增", modal: false,
detail:null, title: "新增",
curId: 0, detail: null,
curId: 0,
columns: [ columns: [
{ key:"id",title:this.$t("id") ,hide:true ,align:"left" ,high:true }, {
// { key:"creationTime",title:this.l("creationTime") ,align:"left" ,high:true }, key: "id",
// { key:"creatorUserId",title:this.l("creatorUserId") ,align:"left" ,high:true }, title: this.$t("id"),
// { key:"lastModificationTime",title:this.l("lastModificationTime") ,align:"left" ,high:true }, hide: true,
// { key:"lastModifierUserId",title:this.l("lastModifierUserId") ,align:"left" ,high:true }, align: "left",
// { key:"isDeleted",title:this.l("isDeleted") ,align:"left" ,high:true }, high: true,
// { key:"deletionTime",title:this.l("deletionTime") ,align:"left" ,high:true }, },
// { key:"deleterUserId",title:this.l("deleterUserId") ,align:"left" ,high:true }, // { key:"creationTime",title:this.l("creationTime") ,align:"left" ,high:true },
// { key:"creatorUserId",title:this.l("creatorUserId") ,align:"left" ,high:true },
{ key:"level",title:this.l("level") ,align:"left" ,high:true ,width:100 }, // { key:"lastModificationTime",title:this.l("lastModificationTime") ,align:"left" ,high:true },
{ key:"requestUrl",title:this.l("requestUrl") ,align:"left" ,width:300 ,high:true ,tooltip:true }, // { key:"lastModifierUserId",title:this.l("lastModifierUserId") ,align:"left" ,high:true },
// { key:"messageTemplate",title:this.l("messageTemplate") ,align:"left" ,high:true }, // { key:"isDeleted",title:this.l("isDeleted") ,align:"left" ,high:true },
{ key:"renderedMessage",title:this.l("renderedMessage") ,align:"left" ,high:true ,tooltip:true }, // { key:"deletionTime",title:this.l("deletionTime") ,align:"left" ,high:true },
{ key:"timestamp",title:this.l("timestamp") ,align:"left" ,high:true ,width:200 }, // { key:"deleterUserId",title:this.l("deleterUserId") ,align:"left" ,high:true },
{ key:"clientIpAddress",title:this.l("clientIpAddress") ,align:"left" ,width:150 ,high:true },
{ key:"loginName",title:this.l("loginName") ,align:"left" ,easy:true ,high:true ,width:150 }, {
{ key:"tanentCode",title:this.l("tanentCode") ,align:"left" ,easy:true ,high:true ,width:80 }, key: "level",
{ key:"host",title:this.l("host") ,align:"left",hide:true ,high:true }, title: this.l("level"),
// { key:"status",title:this.l("status") ,align:"left" ,high:true }, align: "left",
high: true,
{ key:"requestParam",title:this.l("requestParam") ,hide:true ,align:"left" ,high:true }, width: 100,
// { key:"exception",title:this.l("exception") ,align:"left" ,high:true }, },
{ {
title: '操作', key: "requestUrl",
key: 'action', title: this.l("requestUrl"),
width: 140, align: "left",
align: 'center', width: 300,
render: (h, params) => { high: true,
return h('div', { class: "action" }, [ tooltip: true,
h('op', { attrs: { oprate: 'detail' }, on: { click: () => this.view(params.row.id) } }, '查看'), },
//h('op', { attrs: { oprate: 'copy' }, on: { click: () => this.copy(params.row.id) } }, '克隆'), // { key:"messageTemplate",title:this.l("messageTemplate") ,align:"left" ,high:true },
// h('op', { attrs: { oprate: 'edit'}, on: { click: () => this.edit(params.row.id) } }, '编辑'), {
h('op', { attrs: { oprate: 'delete' }, on: { click: () => this.remove(params.row.id) } }, '删除') key: "renderedMessage",
]) title: this.l("renderedMessage"),
} align: "left",
high: true,
tooltip: true,
},
{
key: "timestamp",
title: this.l("timestamp"),
align: "left",
high: true,
width: 200,
},
{
key: "clientIpAddress",
title: this.l("clientIpAddress"),
align: "left",
width: 150,
high: true,
},
{
key: "loginName",
title: this.l("loginName"),
align: "left",
easy: true,
high: true,
width: 150,
},
{
key: "tanentCode",
title: this.l("tanentCode"),
align: "left",
easy: true,
high: true,
width: 80,
},
{
key: "host",
title: this.l("host"),
align: "left",
hide: true,
high: true,
},
// { key:"status",title:this.l("status") ,align:"left" ,high:true },
{
key: "requestParam",
title: this.l("requestParam"),
hide: true,
align: "left",
high: true,
},
// { key:"exception",title:this.l("exception") ,align:"left" ,high:true },
{
title: "操作",
key: "action",
width: 140,
align: "center",
render: (h, params) => {
return h("div", { class: "action" }, [
h(
"op",
{
attrs: { oprate: "detail" },
on: { click: () => this.view(params.row.id) },
},
"查看"
),
//h('op', { attrs: { oprate: 'copy' }, on: { click: () => this.copy(params.row.id) } }, '克隆'),
// h('op', { attrs: { oprate: 'edit'}, on: { click: () => this.edit(params.row.id) } }, '编辑'),
h(
"op",
{
attrs: { oprate: "delete" },
on: { click: () => this.remove(params.row.id) },
},
"删除"
),
]);
}, },
] },
} ],
};
}, },
mounted(){ mounted() {
var date=new Date().getTime()-24*60*60*1000*5;
this.end=new Date(date);
console.log(this); console.log(this);
}, },
async fetch({ store, params }) { async fetch({ store, params }) {
await store.dispatch('loadDictionary') // 加载数据字典 await store.dispatch("loadDictionary"); // 加载数据字典
}, },
methods:{ methods: {
ok() { ok() {
this.$refs.grid.load() this.$refs.grid.load();
this.modal = false this.modal = false;
this.curId = 0; this.curId = 0;
}, },
search() { search() {
this.$refs.grid.reload(this.easySearch) this.$refs.grid.reload(this.easySearch);
}, },
add() { add() {
this.curId = 0; this.curId = 0;
this.title = "新增"; this.title = "新增";
this.detail =()=> import('./add') this.detail = () => import("./add");
this.modal = true; this.modal = true;
}, },
copy(id) { copy(id) {
this.curId = id; this.curId = id;
this.title = "克隆"; this.title = "克隆";
this.detail = () =>import('./add') this.detail = () => import("./add");
this.modal = true; this.modal = true;
}, },
view(id) { view(id) {
this.curId = id; this.curId = id;
this.title = "详情"; this.title = "详情";
this.detail = () =>import('./detail') this.detail = () => import("./detail");
this.modal = true; this.modal = true;
}, },
edit(id) { edit(id) {
this.curId = id; this.curId = id;
this.title = "编辑"; this.title = "编辑";
this.detail = () => import('./edit') this.detail = () => import("./edit");
this.modal = true; this.modal = true;
}, },
remove(id) { remove(id) {
Api.delete(id).then((r) => { Api.delete(id).then((r) => {
if (r.success) { if (r.success) {
this.$refs.grid.load(); this.$refs.grid.load();
this.$Message.success('删除成功') this.$Message.success("删除成功");
} }
}) });
}, },
cancel() { clear(){
this.curId = 0; this.$Modal.confirm({
this.modal = false title:"确认",
}, content:"确认要删除"+this.end+"以前的数据吗",
l(key) { onOk:()=>{
/* Api.deleteAll(this.end).then(r=>{
if(r.success){
this.$Message.success("删除成功")
this.$refs.grid.load();
}else{
this.$Message.error("出现异常")
}
})
}
})
},
cancel() {
this.curId = 0;
this.modal = false;
},
l(key) {
/*
run_log:{ run_log:{
creationTime:'创建时间', creationTime:'创建时间',
creatorUserId:'创建人', creatorUserId:'创建人',
...@@ -153,11 +259,11 @@ keys:{op:"loginName,tanentCode",value:null} ...@@ -153,11 +259,11 @@ keys:{op:"loginName,tanentCode",value:null}
exception:'异常详细信息', exception:'异常详细信息',
} }
*/ */
let vkey = "run_log" + "." + key; let vkey = "run_log" + "." + key;
return this.$t(vkey)||key return this.$t(vkey) || key;
} },
} },
} };
</script> </script>
<style lang="less"> <style lang="less">
</style> </style>
\ No newline at end of file
<template> <template>
<Form ref="form" :model="condition" :label-width="90"> <Form ref="form" :model="condition" :label-width="90">
<Row> <Row>
<Col :span="12" :v-if="condition.id.show"><FormItem :label="$t('id')" prop="id"> <Input v-model="condition.id.value"> </Input> <Col :span="12" :v-if="condition.id.show">
</FormItem></Col> <FormItem :label="$t('id')" prop="id">
<Col :span="12" :v-if="condition.creationTime.show"><FormItem :label="l('creationTime')" prop="creationTime"> <DatePicker type="daterange" v-model="condition.creationTime.value"></DatePicker> <Input v-model="condition.id.value"></Input>
</FormItem></Col> </FormItem>
<Col :span="12" :v-if="condition.creatorUserId.show"><FormItem :label="l('creatorUserId')" prop="creatorUserId"> <Input v-model="condition.creatorUserId.value"> </Input> </Col>
</FormItem></Col> <!-- <Col :span="12" :v-if="condition.creationTime.show">
<Col :span="12" :v-if="condition.lastModificationTime.show"><FormItem :label="l('lastModificationTime')" prop="lastModificationTime"> <DatePicker type="daterange" v-model="condition.lastModificationTime.value"></DatePicker> <FormItem :label="l('creationTime')" prop="creationTime">
</FormItem></Col> <DatePicker type="daterange" v-model="condition.creationTime.value"></DatePicker>
<Col :span="12" :v-if="condition.lastModifierUserId.show"><FormItem :label="l('lastModifierUserId')" prop="lastModifierUserId"> <Input v-model="condition.lastModifierUserId.value"> </Input> </FormItem>
</FormItem></Col> </Col>
<Col :span="12" :v-if="condition.deletionTime.show"><FormItem :label="l('deletionTime')" prop="deletionTime"> <DatePicker type="daterange" v-model="condition.deletionTime.value"></DatePicker> <Col :span="12" :v-if="condition.creatorUserId.show">
</FormItem></Col> <FormItem :label="l('creatorUserId')" prop="creatorUserId">
<Col :span="12" :v-if="condition.timestamp.show"><FormItem :label="l('timestamp')" prop="timestamp"> <DatePicker type="daterange" v-model="condition.timestamp.value"></DatePicker> <Input v-model="condition.creatorUserId.value"></Input>
</FormItem></Col> </FormItem>
<Col :span="12" :v-if="condition.level.show"><FormItem :label="l('level')" prop="level"> <Input v-model="condition.level.value"> </Input> </Col>
</FormItem></Col> <Col :span="12" :v-if="condition.lastModificationTime.show">
<Col :span="12" :v-if="condition.messageTemplate.show"><FormItem :label="l('messageTemplate')" prop="messageTemplate"> <Input v-model="condition.messageTemplate.value"> </Input> <FormItem :label="l('lastModificationTime')" prop="lastModificationTime">
</FormItem></Col> <DatePicker type="daterange" v-model="condition.lastModificationTime.value"></DatePicker>
<Col :span="12" :v-if="condition.renderedMessage.show"><FormItem :label="l('renderedMessage')" prop="renderedMessage"> <Input v-model="condition.renderedMessage.value"> </Input> </FormItem>
</FormItem></Col> </Col>
<Col :span="12" :v-if="condition.clientIpAddress.show"><FormItem :label="l('clientIpAddress')" prop="clientIpAddress"> <Input v-model="condition.clientIpAddress.value"> </Input> <Col :span="12" :v-if="condition.lastModifierUserId.show">
</FormItem></Col> <FormItem :label="l('lastModifierUserId')" prop="lastModifierUserId">
<Col :span="12" :v-if="condition.loginName.show"><FormItem :label="l('loginName')" prop="loginName"> <Input v-model="condition.loginName.value"> </Input> <Input v-model="condition.lastModifierUserId.value"></Input>
</FormItem></Col> </FormItem>
<Col :span="12" :v-if="condition.tanentCode.show"><FormItem :label="l('tanentCode')" prop="tanentCode"> <Input v-model="condition.tanentCode.value"> </Input> </Col>
</FormItem></Col> <Col :span="12" :v-if="condition.deletionTime.show">
<Col :span="12" :v-if="condition.host.show"><FormItem :label="l('host')" prop="host"> <Input v-model="condition.host.value"> </Input> <FormItem :label="l('deletionTime')" prop="deletionTime">
</FormItem></Col> <DatePicker type="daterange" v-model="condition.deletionTime.value"></DatePicker>
<Col :span="12" :v-if="condition.status.show"><FormItem :label="l('status')" prop="status"> <Input v-model="condition.status.value"> </Input> </FormItem>
</FormItem></Col> </Col> -->
<Col :span="12" :v-if="condition.requestUrl.show"><FormItem :label="l('requestUrl')" prop="requestUrl"> <Input v-model="condition.requestUrl.value"> </Input> <Col :span="12" :v-if="condition.timestamp.show">
</FormItem></Col> <FormItem :label="l('timestamp')" prop="timestamp">
<Col :span="12" :v-if="condition.requestParam.show"><FormItem :label="l('requestParam')" prop="requestParam"> <Input v-model="condition.requestParam.value"> </Input> <DatePicker type="daterange" v-model="condition.timestamp.value"></DatePicker>
</FormItem></Col> </FormItem>
<Col :span="12" :v-if="condition.exception.show"><FormItem :label="l('exception')" prop="exception"> <Input v-model="condition.exception.value"> </Input> </Col>
</FormItem></Col> <Col :span="12" :v-if="condition.level.show">
</Row> <FormItem :label="l('level')" prop="level">
</Form> <Input v-model="condition.level.value"></Input>
</FormItem>
</Col>
<!-- <Col :span="12" :v-if="condition.messageTemplate.show">
<FormItem :label="l('messageTemplate')" prop="messageTemplate">
<Input v-model="condition.messageTemplate.value"></Input>
</FormItem>
</Col> -->
<Col :span="12" :v-if="condition.renderedMessage.show">
<FormItem :label="l('renderedMessage')" prop="renderedMessage">
<Input v-model="condition.renderedMessage.value"></Input>
</FormItem>
</Col>
<Col :span="12" :v-if="condition.clientIpAddress.show">
<FormItem :label="l('clientIpAddress')" prop="clientIpAddress">
<Input v-model="condition.clientIpAddress.value"></Input>
</FormItem>
</Col>
<Col :span="12" :v-if="condition.loginName.show">
<FormItem :label="l('loginName')" prop="loginName">
<Input v-model="condition.loginName.value"></Input>
</FormItem>
</Col>
<Col :span="12" :v-if="condition.tanentCode.show">
<FormItem :label="l('tanentCode')" prop="tanentCode">
<Input v-model="condition.tanentCode.value"></Input>
</FormItem>
</Col>
<Col :span="12" :v-if="condition.host.show">
<FormItem :label="l('host')" prop="host">
<Input v-model="condition.host.value"></Input>
</FormItem>
</Col>
<Col :span="12" :v-if="condition.status.show">
<FormItem :label="l('status')" prop="status">
<Input v-model="condition.status.value"></Input>
</FormItem>
</Col>
<Col :span="12" :v-if="condition.requestUrl.show">
<FormItem :label="l('requestUrl')" prop="requestUrl">
<Input v-model="condition.requestUrl.value"></Input>
</FormItem>
</Col>
<Col :span="12" :v-if="condition.requestParam.show">
<FormItem :label="l('requestParam')" prop="requestParam">
<Input v-model="condition.requestParam.value"></Input>
</FormItem>
</Col>
<Col :span="12" :v-if="condition.exception.show">
<FormItem :label="l('exception')" prop="exception">
<Input v-model="condition.exception.value"></Input>
</FormItem>
</Col>
</Row>
</Form>
</template> </template>
<script> <script>
import Api from './api' import Api from "./api";
export default { export default {
name: 'Add', name: "Add",
data() { data() {
return { return {
condition: { condition: {
id:{op:"Equal",value:null,show:true}, id: { op: "Equal", value: null, show: true },
creationTime:{op:"Range",value:null,show:true}, creationTime: { op: "Range", value: null, show: true },
creatorUserId:{op:"Equal",value:null,show:true}, creatorUserId: { op: "Equal", value: null, show: true },
lastModificationTime:{op:"Range",value:null,show:true}, lastModificationTime: { op: "Range", value: null, show: true },
lastModifierUserId:{op:"Equal",value:null,show:true}, lastModifierUserId: { op: "Equal", value: null, show: true },
deletionTime:{op:"Range",value:null,show:true}, deletionTime: { op: "Range", value: null, show: true },
timestamp:{op:"Range",value:null,show:true}, timestamp: { op: "Range", value: null, show: true },
level:{op:"Equal",value:null,show:true}, level: { op: "Equal", value: null, show: true },
messageTemplate:{op:"Equal",value:null,show:true}, messageTemplate: { op: "Equal", value: null, show: true },
renderedMessage:{op:"Equal",value:null,show:true}, renderedMessage: { op: "Equal", value: null, show: true },
clientIpAddress:{op:"Equal",value:null,show:true}, clientIpAddress: { op: "Equal", value: null, show: true },
loginName:{op:"Equal",value:null,show:true}, loginName: { op: "Equal", value: null, show: true },
tanentCode:{op:"Equal",value:null,show:true}, tanentCode: { op: "Equal", value: null, show: true },
host:{op:"Equal",value:null,show:true}, host: { op: "Equal", value: null, show: true },
status:{op:"Equal",value:null,show:true}, status: { op: "Equal", value: null, show: true },
requestUrl:{op:"Equal",value:null,show:true}, requestUrl: { op: "Equal", value: null, show: true },
requestParam:{op:"Equal",value:null,show:true}, requestParam: { op: "Equal", value: null, show: true },
exception:{op:"Equal",value:null,show:true}, exception: { op: "Equal", value: null, show: true },
}, },
} };
}, },
methods: { methods: {
handleClose() { handleClose() {
this.$emit('on-close') this.$emit("on-close");
}, },
l(key) { l(key) {
key = "run_log" + "." + key; key = "run_log" + "." + key;
return this.$t(key) return this.$t(key);
} },
} },
} };
</script> </script>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment