chuweiqiang hai 1 ano
pai
achega
65b3fe4e37
Modificáronse 2 ficheiros con 3 adicións e 5 borrados
  1. 2 4
      .idea/workspace.xml
  2. 1 1
      application/api/controller/Press.php

+ 2 - 4
.idea/workspace.xml

@@ -3,9 +3,7 @@
   <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/model/ArticleIntro.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/common/model/ArticleIntro.php" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/runtime/log/single.log" beforeDir="false" afterPath="$PROJECT_DIR$/runtime/log/single.log" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/runtime/log/single_sql.log" beforeDir="false" afterPath="$PROJECT_DIR$/runtime/log/single_sql.log" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/application/api/controller/Press.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/api/controller/Press.php" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -573,7 +571,7 @@
       <workItem from="1710817453185" duration="16334000" />
       <workItem from="1710896140284" duration="18662000" />
       <workItem from="1710981036861" duration="23494000" />
-      <workItem from="1711067530545" duration="9487000" />
+      <workItem from="1711067530545" duration="10561000" />
     </task>
     <servers />
   </component>

+ 1 - 1
application/api/controller/Press.php

@@ -243,7 +243,7 @@ class Press extends Base
     public function getPressDetail()
     {
         $sel_where[]  = ['id','=',input('get.id')];
-        $detail = \app\common\model\Press::field('id,images,goods_id,title,release_time,content,read_num,create_at,transmit_num,user_id,is_deleted,status,video_id,video_item,article_id,article_item,datum_id,datum_item')->where($sel_where)->find()->toArray();
+        $detail = \app\common\model\Press::field('id,images,supplier_id,goods_id,title,release_time,content,read_num,create_at,transmit_num,user_id,is_deleted,status,video_id,video_item,article_id,article_item,datum_id,datum_item')->where($sel_where)->find()->toArray();
         if($detail['is_deleted'] == 1 || $detail['status'] == 0) $this->error('该新闻已下架');
         $detail['comment_num'] = PressComment::where(['first_id'=>$detail['id'],'type'=>1,'is_deleted'=>0])->count();
         $detail['comment_num'] = numTransform($detail['comment_num']);