From efaf783c954d5c026ab9c3fe57926f686d64d56b Mon Sep 17 00:00:00 2001
From: client_Zxw <826696702@qq.com>
Date: 星期三, 05 九月 2018 21:29:43 +0800
Subject: [PATCH] 3300 前端 添加任务跳转到日常的选中
---
System/MainInterfacePanel/HoistingWin.cs | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/System/MainInterfacePanel/HoistingWin.cs b/System/MainInterfacePanel/HoistingWin.cs
index c48f39e..6363a3d 100644
--- a/System/MainInterfacePanel/HoistingWin.cs
+++ b/System/MainInterfacePanel/HoistingWin.cs
@@ -32,6 +32,7 @@
PlayerTaskDatas taskmodel { get { return m_TaskModel ?? (m_TaskModel = ModelCenter.Instance.GetModel<PlayerTaskDatas>()); } }
WorldBossModel Worldmodel { get { return ModelCenter.Instance.GetModel<WorldBossModel>(); } }
+ DailyQuestModel dailyquestmodel { get { return ModelCenter.Instance.GetModel<DailyQuestModel>(); } }
#region Built-in
protected override void BindController()
{
@@ -43,6 +44,7 @@
FairyLandButton.AddListener(() =>
{
Close();
+ dailyquestmodel.currentDailyQuest = (int)DailyQuestType.FairyLand;
WindowJumpMgr.Instance.WindowJumpTo(JumpUIType.DailyQuestFunc1);
});
@@ -54,6 +56,7 @@
BountyTaskButton.AddListener(() =>
{
Close();
+ dailyquestmodel.currentDailyQuest = (int)DailyQuestType.BountyMission;
WindowJumpMgr.Instance.WindowJumpTo(JumpUIType.DailyQuestFunc1);
});
--
Gitblit v1.8.0