From 8509d53e6fed61a9217889225e49dd89052b5f11 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期四, 05 十二月 2024 05:42:56 +0800
Subject: [PATCH] 流程办理回显逻辑变更:处理当前节点只拉取上一个节点及本节点的表单数据,且无论提交数据还是审核都用一个页面

---
 src/components/Crontab/hour.vue |   10 ++--------
 1 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/src/components/Crontab/hour.vue b/src/components/Crontab/hour.vue
index 3216c33..4b1f1fc 100644
--- a/src/components/Crontab/hour.vue
+++ b/src/components/Crontab/hour.vue
@@ -51,16 +51,10 @@
 	methods: {
 		// 鍗曢�夋寜閽�煎彉鍖栨椂
 		radioChange() {
-			if (this.cron.min === '*') {
-			    this.$emit('update', 'min', '0', 'hour');
-			}
-			if (this.cron.second === '*') {
-			    this.$emit('update', 'second', '0', 'hour');
-			}
 			switch (this.radioValue) {
 				case 1:
-					this.$emit('update', 'hour', '*')
-					break;
+        	this.$emit('update', 'hour', '*')
+        	break;
 				case 2:
 					this.$emit('update', 'hour', this.cycleTotal);
 					break;

--
Gitblit v1.8.0