Explorar el Código

提示语优化

shish hace 5 años
padre
commit
591ae6f5d3
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      app-hd/controllers/ConsoleController.php

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

@@ -32,14 +32,14 @@ class ConsoleController extends BaseController
             //是否有充值免费续期权限
             $hasRight = SjClass::hasRechargeRenewRight($sj, $this->sjExtend);
             if ($hasRight) {
-                $title = '您的试用期已,点此免费续期';
+                $title = '您的试用期已结束,点此免费续期';
                 if ($remain > 0) {
                     $num = ceil($remain / 86400);
                     $title = "您的试用期还有{$num}天,点此免费续期";
                 }
                 $notice = array_merge($notice, [['title' => $title, 'action' => '查看', 'page' => '/admin/recharge/renew']]);
             } else {
-                $title = '您的试用期已,请及时续费';
+                $title = '您的试用期已结束,请及时续费';
                 if ($remain > 0) {
                     $num = ceil($remain / 86400);
                     $title = "您的试用期还有{$num}天,请及时续费";