|
|
@@ -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']]);
|
|
|
}
|
|
|
}
|
|
|
|