| | |
| | | [SerializeField] Text blessLVText; |
| | | [SerializeField] Button mailBtn; |
| | | |
| | | //其他功能入口 |
| | | [SerializeField] Button monthCardBtn; |
| | | //右侧功能 |
| | | [SerializeField] Button funcColBtn; |
| | | [SerializeField] RightFuncInHome rightFuncInHome; |
| | | |
| | | [SerializeField] Button FirstChargeBtn; |
| | | |
| | | /// <summary> |
| | |
| | | }); |
| | | |
| | | |
| | | monthCardBtn.AddListener(() => |
| | | { |
| | | InvestModel.Instance.BuyInvest(InvestModel.monthCardType); |
| | | }); |
| | | |
| | | |
| | | FirstChargeBtn.AddListener(() => |
| | | { |
| | |
| | | }); |
| | | |
| | | restBtn.AddListener(GotoRest); |
| | | funcColBtn.AddListener(()=> |
| | | { |
| | | rightFuncInHome.ShowFuncCol(true); |
| | | }); |
| | | } |
| | | |
| | | |