This commit is contained in:
aozhiwei 2022-06-06 17:19:14 +08:00
parent 599bf181fe
commit 164f8e7fbd

View File

@ -243,19 +243,25 @@ class MissionController extends BaseAuthedController {
public function sendOfferRewardMission() public function sendOfferRewardMission()
{ {
$missionId = getReqVal('mission_id', 0); $missionId = getReqVal('mission_id', 0);
$this->missionService->sendOfferRewardMission($missionId, $this->propertyChgService); $this->missionService->sendOfferRewardMission(
$missionId,
$this->propertyChgService);
} }
public function offerRewardMissionPreview() public function offerRewardMissionPreview()
{ {
$missionId = getReqVal('mission_id', 0); $missionId = getReqVal('mission_id', 0);
$this->missionService->offerRewardMissionPreview($missionId, $this->propertyChgService); $this->missionService->offerRewardMissionPreview(
$missionId,
$this->propertyChgService);
} }
public function cancelOfferRewardMission() public function cancelOfferRewardMission()
{ {
$missionId = getReqVal('mission_id', 0); $missionId = getReqVal('mission_id', 0);
$this->missionService->cancelOfferRewardMission($missionId, $this->propertyChgService); $this->missionService->cancelOfferRewardMission(
$missionId,
$this->propertyChgService);
} }
public function boostOfferRewardMission() public function boostOfferRewardMission()