rabin 5 years ago
parent
commit
0b34542053
2 changed files with 3 additions and 3 deletions
  1. 2 2
      main/src/Journal.php
  2. 1 1
      main/src/Journal_v1.php

+ 2 - 2
main/src/Journal.php

@@ -526,11 +526,11 @@ class Journal extends Core
         }
         $id = $this->check();
 
+        $this->data['buy_desc'] = $this->data['info']['buy_content'];
         # 获取购买说明
         $buy = Dever::db('journal/buy')->one(array('id' => $id));
 
-        $this->data['buy_desc'] = '';
-        if ($buy) {
+        if ($buy && $buy['buy_content']) {
             $this->data['buy_desc'] = $buy['buy_content'];
         }
 

+ 1 - 1
main/src/Journal_v1.php

@@ -572,7 +572,7 @@ class Journal_v1 extends Core
         # 获取购买说明
         $buy = Dever::db('journal/buy')->one(array('id' => $id));
 
-        if ($buy) {
+        if ($buy && $buy['buy_content']) {
             $this->data['buy_desc'] = $buy['buy_content'];
         }