diff --git a/src/components/drawer/approverDrawer.vue b/src/components/drawer/approverDrawer.vue
index 07962fd..ba36bf8 100644
--- a/src/components/drawer/approverDrawer.vue
+++ b/src/components/drawer/approverDrawer.vue
@@ -156,6 +156,26 @@
return
}
}
+
+ // 某级主管
+ else if (approverConfig.value.settype === 6) {
+ // if (!approverConfig.value.examineEndDirectorLevel) {
+ if (!approverConfig.value.directorLevel) {
+ ElMessage({
+ message: '请选择审批终点',
+ type: 'warning',
+ })
+ return
+ }
+ if (!approverConfig.value.tempExamineMode) {
+ ElMessage({
+ message: '请选择审批方式',
+ type: 'warning',
+ })
+ return
+ }
+ }
+
// 审批人自选
else if (approverConfig.value.settype === 4) {
if (!approverConfig.value.tempExamineMode) {
@@ -254,6 +274,9 @@