rabin 5 years ago
parent
commit
bfe0697870
1 changed files with 55 additions and 0 deletions
  1. 55 0
      main/src/Journal_v1.php

+ 55 - 0
main/src/Journal_v1.php

@@ -20,6 +20,61 @@ class Journal_v1 extends Core
         return $cate;
     }
 
+    # 根据分类获取小刊列表
+    public function getListNew()
+    {
+        if ($this->app) {
+            return $this->getAppList();
+        }
+        $data = array();
+
+        if ($data) {
+            return $data;
+        }
+
+        $cate = $this->getCate();
+
+        # 小刊列表
+        $where = array();
+        if (isset($cate['id'])) {
+            $where['cate_id'] = $cate['id'];
+        }
+        $where['publish'] = 1;
+        $this->data['button'] = array();
+
+        # 热门电子刊
+        $this->data['push'] = Dever::db('journal/info')->getHot($where);
+
+        if ($this->data['push']) {
+            foreach ($this->data['push'] as $k => $v) {
+                $this->data['push'][$k] = $this->info($v);
+                $this->data['push'][$k] = $this->getButton($this->data['push'][$k]);
+            }
+        }
+
+        $data = Dever::db('journal/info')->getAllByPage($where);
+
+        if ($data) {
+            foreach ($data as $k => $v) {
+                $data[$k] = $this->info($v);
+                $data[$k] = $this->getButton($data[$k]);
+            }
+            
+            $this->data['journal'] = $data;
+        } else {
+            $this->data['journal'] = array();
+        }
+
+        $this->data['end']['call'] = 'main/journal_v1.getList_noCache';
+
+        $this->data['code'] = 1;
+        if (checkVersion()->journal_buy == 2) {
+            $this->data['code'] = 2;
+        }
+
+        return $this->data;
+    }
+
     # 根据分类获取小刊列表
     public function getList()
     {