chuweiqiang il y a 11 mois
Parent
commit
1a2b75121e
2 fichiers modifiés avec 4 ajouts et 3 suppressions
  1. 2 1
      .idea/workspace.xml
  2. 2 2
      application/common/service/CheckPower.php

+ 2 - 1
.idea/workspace.xml

@@ -2,6 +2,7 @@
 <project version="4">
   <component name="ChangeListManager">
     <list default="true" id="1a36929e-c054-4875-a943-593a74e55fa4" name="Default Changelist" comment="">
+      <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/application/common/service/CheckPower.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/common/service/CheckPower.php" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
@@ -589,7 +590,7 @@
       <workItem from="1712968426089" duration="7869000" />
       <workItem from="1713141319788" duration="25005000" />
       <workItem from="1713228029820" duration="12598000" />
-      <workItem from="1713313957989" duration="8828000" />
+      <workItem from="1713313957989" duration="8843000" />
     </task>
     <servers />
   </component>

+ 2 - 2
application/common/service/CheckPower.php

@@ -73,7 +73,7 @@ class CheckPower
                 if($first_id != 0) {
                     $parent = ArticleIntro::where('id', $first_id)->where('status', 1)->where('is_deleted', 0)->find();
                     if (!$parent) return 0;
-                    if(!isset($parent) && $parent->type == 1)
+                    if(isset($parent) && $parent->type == 1)
                     {
                         $cate = ArticleCate::where('id','in',[$parent->first_classify,$parent->second_classify])
                             ->where('status',1)->where('is_deleted',0)->count();
@@ -96,7 +96,7 @@ class CheckPower
                     $parent = DatumIntro::where('id', $first_id)->where('status', 1)->where('is_deleted', 0)->find();
                     if (!$parent) return 0;
                 }
-                if(isset($parent) || !$parent->datum_cate) return 1;
+                if(!isset($parent) || !$parent->datum_cate) return 1;
                 $cate = DatumCate::where('id','in',[$parent->datum_cate])
                     ->where('status',1)->where('is_deleted',0)->count();
                 //if($cate != 1) return 0;