From 5806da03842c4841321062701ec6db3adca5df73 Mon Sep 17 00:00:00 2001
From: Your Name <123456>
Date: Thu, 13 Oct 2022 09:42:53 +0800
Subject: [PATCH] 更新
---
src/views/specialWorkSystem/workFlow/approveRule/components/approveLevelDialog.vue | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/src/views/specialWorkSystem/workFlow/approveRule/components/approveLevelDialog.vue b/src/views/specialWorkSystem/workFlow/approveRule/components/approveLevelDialog.vue
index 24d4154..412c57b 100644
--- a/src/views/specialWorkSystem/workFlow/approveRule/components/approveLevelDialog.vue
+++ b/src/views/specialWorkSystem/workFlow/approveRule/components/approveLevelDialog.vue
@@ -14,6 +14,13 @@
</el-select>
</el-form-item>
</el-col>
+ <el-col :span="24" style="margin-bottom: 24px" v-if="approveLevelForm.type === 2">
+ <el-form-item label="审批类型" prop="auditType">
+ <el-select v-model="approveLevelForm.auditType" placeholder="请选择审批类型" class="input-add">
+ <el-option v-for="item in auditTypeList" :key="item.id" :value="item.id" :label="item.name"></el-option>
+ </el-select>
+ </el-form-item>
+ </el-col>
<el-col :span="24" style="margin-bottom: 24px">
<el-form-item label="审批人" prop="unitList">
<el-select v-model="approveLevelForm.unitList" multiple placeholder="请选择审批人" class="input-add">
@@ -104,6 +111,7 @@
userList: [];
timeList: Array<type>;
typeList: Array<type>;
+ auditTypeList: Array<type>;
approveTypeList: Array<type>;
workLevelList: [];
standardList: Array<stand>;
@@ -122,6 +130,7 @@
stepName: null;
stepSerial: number | null;
type: number | null;
+ auditType: number | null;
continueTime: number | null;
continueTimeUnit: number | null;
unitList: Array<personType>;
@@ -150,6 +159,7 @@
stepName: null,
stepSerial: null,
type: null,
+ auditType: null,
continueTime: null,
continueTimeUnit: null,
unitList: [],
@@ -158,6 +168,7 @@
approveLevelFormRule: {
stepName: [{ required: true, message: '请填写层次名称', trigger: 'blur' }],
type: [{ required: true, message: '请选择审批层级', trigger: 'change' }],
+ auditType: [{ required: true, message: '请选择审批类型', trigger: 'change' }],
unitList: [{ required: true, message: '请选择审批人', trigger: 'change' }],
continueTime: [{ required: true, message: '请填写有效时间', trigger: 'blur' }]
},
@@ -172,6 +183,10 @@
{ id: 1, name: '单人' },
{ id: 2, name: '多人' },
{ id: 3, name: '分析人' }
+ ],
+ auditTypeList: [
+ { id: 1, name: '单审' },
+ { id: 2, name: '会审' },
],
approveTypeList: [
{ id: 1, name: '数值' },
@@ -196,6 +211,7 @@
stepName: null,
stepSerial: null,
type: null,
+ auditType: null,
continueTime: null,
continueTimeUnit: null,
unitList: [],
--
Gitblit v1.9.2