From 05b50dfb9565a874ea611c3149959cd9f7163623 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Mon, 02 Jan 2023 13:54:44 +0800
Subject: [PATCH] 新增通行证废止
---
src/views/work/process/audit/form.vue | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/src/views/work/process/audit/form.vue b/src/views/work/process/audit/form.vue
index 726eb72..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;
@@ -51,8 +59,8 @@
});
},
controlOption(arg) {
- const suggestion = this.findObject(this.option.column,"suggestion")
- const comment = this.findObject(this.option.column,"comment")
+ // const suggestion = this.findObject(this.option.column,"suggestion")
+ // const comment = this.findObject(this.option.column,"comment")
if (arg == 'open'){
//解除禁用状态
this.option.group.forEach(group=>{
--
Gitblit v1.9.3