소스 검색

登录人自己的机构类型也可以显示

zhulu 2 년 전
부모
커밋
2e78885888
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/views/core/edu/plan/index.vue

+ 1 - 1
src/views/core/edu/plan/index.vue

@@ -376,7 +376,7 @@ export default {
     console.log("computed allSysOrgTypes",this.dict.type.sys_org_type,this.$store.getters.orgType);
     let tempArry =[];
     this.dict.type.sys_org_type.forEach(x=>{
-      if(Number(x.value)>this.$store.getters.orgType)
+      if(Number(x.value)>=this.$store.getters.orgType)
       {
         tempArry.push(x);
       }