5b78faab by 蔡俊立

系统监控弹窗修改

1 parent 15a8cb4c
......@@ -82,22 +82,12 @@ export default {
queryClick(){
this.fetchData();
},
viewDetail(e){
this.$popup({
title: "错误日志",
width: "50%",
btnShow: false,
editItem: "xtjk/cwrz/components/viewDialog",
height: "800px",
formData: {
item: e
},
cancel: function () { }, //取消事件的回调
confirm: function () {
that.loadBdcdylist();
}, //确认事件的回调
});
viewDetail(e){
this.$popup("错误日志", "xtjk/cwrz/components/viewDialog", {
formData: {
item: e
}
})
}
}
};
......
......@@ -80,21 +80,11 @@ export default {
this.fetchData();
},
viewDetail(e){
this.$popup({
title: "操作日志",
width: "50%",
btnShow: false,
editItem: "xtjk/czrz/components/viewDialog",
height: "800px",
this.$popup("操作日志", "xtjk/czrz/components/viewDialog", {
formData: {
item: e
},
cancel: function () { }, //取消事件的回调
confirm: function () {
that.loadBdcdylist();
}, //确认事件的回调
});
}
})
}
}
};
......