This commit is contained in:
aozhiwei 2023-08-03 12:11:49 +08:00
parent 644917b1bf
commit 1d9bb3d09c

View File

@ -100,7 +100,11 @@ class DailySelectionController extends BaseAuthedController {
$this->save(); $this->save();
$propertyChgService = new PropertyChgService(); $propertyChgService = new PropertyChgService();
$propertyChgService->addUserChg(); $propertyChgService->addUserChg();
++$count;
$newCost = $count < $maxCount ? $arrCosts[$count] : -1;
myself()->_rspData(array( myself()->_rspData(array(
'cost' => $newCost,
'property_chg' => $propertyChgService->toDto() 'property_chg' => $propertyChgService->toDto()
)); ));
} }