|
|
@@ -25,6 +25,8 @@ class NotifyClass extends BaseClass
|
|
|
$shopId = $refund->shopId ?? 0;
|
|
|
$title = '有新的售后申请';
|
|
|
$id = $refund->id;
|
|
|
+ $refundPrice = $refund->refundPrice;
|
|
|
+ $refundPrice = floatval($refundPrice);
|
|
|
$customId = $refund->customId;
|
|
|
$custom = CustomClass::getById($customId, true);
|
|
|
$customName = $custom->name ?? '';
|
|
|
@@ -39,7 +41,7 @@ class NotifyClass extends BaseClass
|
|
|
'title' => $title,
|
|
|
'type' => 0,
|
|
|
'read' => 0,
|
|
|
- 'content' => $customName . ' 申请售后',
|
|
|
+ 'content' => $customName . '申请退款' . $refundPrice . '元',
|
|
|
'page' => '/pagesOrder/refundDetail?id=' . $id,
|
|
|
];
|
|
|
self::add($data);
|