From 11fc602abfc00455ae7302d3c185dcec18e7780e Mon Sep 17 00:00:00 2001
From: zhaowei <zhaowei>
Date: 星期五, 25 七月 2025 11:17:32 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
src/views/system/modules/QuartzJobDetails.vue | 43 +++++++++++++++++--------------------------
1 files changed, 17 insertions(+), 26 deletions(-)
diff --git a/src/views/system/modules/QuartzJobDetails.vue b/src/views/system/modules/QuartzJobDetails.vue
index db41484..86db0a1 100644
--- a/src/views/system/modules/QuartzJobDetails.vue
+++ b/src/views/system/modules/QuartzJobDetails.vue
@@ -1,13 +1,10 @@
-
<template>
- <a-modal :title="title" width="100%" :visible="visible" :maskClosable="false" @ok="handleOk" @cancel="handleCancel"
- cancelText="鍏抽棴">
+ <j-modal :title="title" width="100%" :visible="visible" :maskClosable="false" @ok="handleOk" @cancel="handleCancel"
+ :okButtonProps="{ class:{'jee-hidden': true} }" cancelText="鍏抽棴">
<a-card :bordered="false">
- <div>
- {{textContent}}
- </div>
+ <a-textarea :rows="3" v-model="textContent" readOnly/>
</a-card>
- </a-modal>
+ </j-modal>
</template>
<script>
@@ -16,32 +13,26 @@
export default {
name: 'QuartzJobDetails',
// mixins: [JeecgListMixin],
- components: {
-
- },
- props: {
-
- },
+ components: {},
+ props: {},
data() {
return {
- title:'',
- visible:false,
- textContent:'',
+ title: '',
+ visible: false,
+ textContent: ''
}
},
created() {
},
- watch: {
-
- },
+ watch: {},
methods: {
- showDetails(record){
- console.log(record)
- this.visible = true
- this.textContent = record.exceptionDetail
- },
+ showDetails(record) {
+ // console.log(record)
+ this.visible = true
+ this.textContent = record.exceptionDetail
+ },
close() {
this.$emit('close')
this.visible = false
@@ -51,8 +42,8 @@
},
handleOk() {
this.close()
- },
- },
+ }
+ }
}
</script>
<style>
--
Gitblit v1.9.3