|
|
@@ -36,11 +36,11 @@ class ShopExtClass extends BaseClass
|
|
|
$reachPeriodName = dict::getDict('reachPeriodName');
|
|
|
$period = $reachPeriodName[$readPeriod] ?? '上午';
|
|
|
if ($reachDate == date("Y-m-d")) {
|
|
|
- $sound .= '今天' . $period . "送";
|
|
|
+ $sound .= ',今天' . $period . "送";
|
|
|
} elseif ($reachDate == date("Y-m-d", strtotime("+1 day"))) {
|
|
|
- $sound .= '明天' . $period . "送";
|
|
|
+ $sound .= ',明天' . $period . "送";
|
|
|
} elseif ($reachDate == date("Y-m-d", strtotime("+2 day"))) {
|
|
|
- $sound .= '后天' . $period . "送";
|
|
|
+ $sound .= ',后天' . $period . "送";
|
|
|
} else {
|
|
|
$sound .= date("d", strtotime($reachDate)) . '号' . $period . "送";
|
|
|
}
|