| | |
| | | var WeekPartyAction = model.WeekPartyActionDic[ID];
|
| | | int rewardNum = model.GetRewardNumber(model.SelectedNow, ID);//已领奖次数
|
| | | int carryOutNum = model.GetCarryOutNum(model.SelectedNow, ID);//已完成次数
|
| | | var config = Config.Instance.Get<WeekPartyConfig>(ID);
|
| | | if (config != null && config.ActionType == 13)
|
| | | {
|
| | |
|
| | | if (carryOutNum > 0)
|
| | | {
|
| | | str = "1/1";
|
| | | }
|
| | | else
|
| | | {
|
| | | str = "0/1";
|
| | | }
|
| | | return str;
|
| | | } |
| | | int TaypeNumber = 0;
|
| | | if (carryOutNum - rewardNum > 0)
|
| | | {
|
| | |
| | | {
|
| | | int type = carryOutNum % WeekPartyAction.SingleTimes;
|
| | | str = type + "/" + WeekPartyAction.SingleTimes;
|
| | | }
|
| | | var config = Config.Instance.Get<WeekPartyConfig>(ID);
|
| | | if (config != null && config.ActionType == 13)
|
| | | {
|
| | |
|
| | | if (carryOutNum > 0)
|
| | | {
|
| | | str = "1/1";
|
| | | }
|
| | | else
|
| | | {
|
| | | str = "0/1";
|
| | | }
|
| | | }
|
| | | return str;
|
| | | }
|