|
@@ -74,6 +74,8 @@ class TaskProc {
|
|
"store" => ctx()->store,
|
|
"store" => ctx()->store,
|
|
"reward" => StoreProc::$reward,
|
|
"reward" => StoreProc::$reward,
|
|
'reward_Gem' => StoreProc::$reward_Gem,
|
|
'reward_Gem' => StoreProc::$reward_Gem,
|
|
|
|
+ 'gold'=> ctx()->baseInfo->gold,
|
|
|
|
+ 'cash'=> ctx()->baseInfo->cash,
|
|
));
|
|
));
|
|
}
|
|
}
|
|
|
|
|
|
@@ -132,7 +134,9 @@ class TaskProc {
|
|
return Resp::ok(array("task" => ctx()->task,
|
|
return Resp::ok(array("task" => ctx()->task,
|
|
"store" => ctx()->store,
|
|
"store" => ctx()->store,
|
|
'reward' => StoreProc::$reward,
|
|
'reward' => StoreProc::$reward,
|
|
- 'reward_Gem' => StoreProc::$reward_Gem,
|
|
|
|
|
|
+ 'reward_Gem' => StoreProc::$reward_Gem,
|
|
|
|
+ 'gold'=> ctx()->baseInfo->gold,
|
|
|
|
+ 'cash'=> ctx()->baseInfo->cash,
|
|
));
|
|
));
|
|
}
|
|
}
|
|
|
|
|