Jelajahi Sumber

个人信息修改页面取消主部门必填校验

luoaoxuan 1 tahun lalu
induk
melakukan
c6db85235d
1 mengubah file dengan 2 tambahan dan 1 penghapusan
  1. 2 1
      src/views/platform/org/employee/edit/index.vue

+ 2 - 1
src/views/platform/org/employee/edit/index.vue

@@ -336,7 +336,8 @@ export default {
                 ActionUtils.warning('请选择部门')
                 return
             }
-            if (vo.positionVoList.filter(i => i.isMainPost === true).length === 0) {
+            // 个人信息修改页面取消主部门必填校验
+            if (this.formType !== 'part' && vo.positionVoList.filter(i => i.isMainPost === true).length === 0) {
                 ActionUtils.warning('请设置主部门')
                 return
             }