shish 4 лет назад
Родитель
Сommit
320bbdb5b1
1 измененных файлов с 4 добавлено и 2 удалено
  1. 4 2
      app-hd/controllers/ConsoleController.php

+ 4 - 2
app-hd/controllers/ConsoleController.php

@@ -37,14 +37,16 @@ class ConsoleController extends BaseController
                     $num = ceil($remain / 86400);
                     $title = "您的试用期还有{$num}天,点此免费续期";
                 }
-                $notice = array_merge($notice, [['title' => $title, 'action' => '续期', 'page' => '/admin/recharge/renew']]);
+                //暂时关闭续期提示
+                //$notice = array_merge($notice, [['title' => $title, 'action' => '续期', 'page' => '/admin/recharge/renew']]);
             } else {
                 $title = '您的试用期已结束,请及时续费';
                 if ($remain > 0) {
                     $num = ceil($remain / 86400);
                     $title = "您的试用期还有{$num}天,请及时续费";
                 }
-                $notice = array_merge($notice, [['title' => $title, 'action' => '续期', 'page' => '/pagesClient/official/renewal']]);
+                //暂时关闭续期提示
+                //$notice = array_merge($notice, [['title' => $title, 'action' => '续期', 'page' => '/pagesClient/official/renewal']]);
             }
         }