From dd0838214cd86dcdec93c89687a7e6f457b58dc2 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Mon, 02 Jan 2023 11:24:24 +0800
Subject: [PATCH] 修改时间选择变为范围选择;新增发起事务前需完善企业信息

---
 src/views/work/process/audit/form.vue |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/views/work/process/audit/form.vue b/src/views/work/process/audit/form.vue
index 032e807..c034384 100644
--- a/src/views/work/process/audit/form.vue
+++ b/src/views/work/process/audit/form.vue
@@ -25,6 +25,14 @@
   computed: {
     ...mapGetters(["permission", 'userInfo']),
   },
+  watch:{
+    'form.passTime':{
+      handler(newVal){
+        this.form.startPassTime = newVal[0]
+        this.form.endPassTime = newVal[1]
+      }
+    }
+  },
   created() {
     this.controlOption('open')
     this.processDefinitionId = this.$route.params.processDefinitionId;

--
Gitblit v1.9.3