From 8e75a78f55d60565eb48b25eafd4eb07939ce2cc Mon Sep 17 00:00:00 2001 From: zenglf <18502938215@163.com> Date: 星期四, 28 九月 2023 14:09:05 +0800 Subject: [PATCH] Merge branch 'master' into develop --- src/views/system/modules/QuartzJobDetails.vue | 75 +++++++++++++++++++++++++++++++++++++ 1 files changed, 75 insertions(+), 0 deletions(-) diff --git a/src/views/system/modules/QuartzJobDetails.vue b/src/views/system/modules/QuartzJobDetails.vue new file mode 100644 index 0000000..d96e548 --- /dev/null +++ b/src/views/system/modules/QuartzJobDetails.vue @@ -0,0 +1,75 @@ + +<template> + <a-modal :title="title" width="100%" :visible="visible" :maskClosable="false" @ok="handleOk" @cancel="handleCancel" + cancelText="鍏抽棴"> + <a-card :bordered="false"> + <div> + <pre> + {{textContent}} + </pre> + + </div> + </a-card> + </a-modal> +</template> + +<script> + + + export default { + name: 'QuartzJobDetails', + // mixins: [JeecgListMixin], + components: { + + }, + props: { + + }, + data() { + return { + title:'', + visible:false, + textContent:'', + + } + }, + created() { + + }, + watch: { + + }, + methods: { + showDetails(record){ + // console.log(record) + this.visible = true + this.textContent = record.exceptionDetail + }, + close() { + this.$emit('close') + this.visible = false + }, + handleCancel() { + this.close() + }, + handleOk() { + this.close() + }, + }, + } +</script> +<style> + @import '~@assets/less/common.less'; + + .frozenRowClass { + color: #c9c9c9; + } + + .success { + color: green; + } + + .error { + color: red; + } +</style> -- Gitblit v1.9.3