| | |
| | |
|
| | | public bool isLocationQuery { get; set; }
|
| | | public string locationGuid { get; set; }
|
| | | public string locationMyFocusGuid { get; set; }
|
| | | public bool isServerPrepare { get; private set; }
|
| | | public bool isAuctionWindowOpen { get; set; }
|
| | | public bool isQueryFront { get; set; }
|
| | | public bool queryFowardAble { get; set; }
|
| | | public bool queryAfterwardAble { get; set; }
|
| | | public DateTime queryTime = DateTime.Now;
|
| | | public DateTime locationMyFocusTime = DateTime.Now;
|
| | |
|
| | | int m_SelectClassifyId = 0;
|
| | | public int selectClassifyId
|
| | |
| | |
|
| | | public void ReceivePackage(HB506_tagGCAttentionAuctionItemInfo package)//拍卖行关注中的拍品信息
|
| | | {
|
| | | bool existLocationAuction = false;
|
| | |
|
| | | m_MyFocusAuctionItemGuids.Clear();
|
| | | for (int i = 0; i < package.AuctionItemCount; i++)
|
| | | {
|
| | |
| | | {
|
| | | m_MyFocusAuctionItemGuids.Add(guid);
|
| | | }
|
| | |
|
| | | if (guid.Equals(locationMyFocusGuid) &&
|
| | | (DateTime.Now - locationMyFocusTime).TotalSeconds < 5)
|
| | | {
|
| | | existLocationAuction = true;
|
| | | }
|
| | | }
|
| | | if (myFocusAuctionRefresh != null)
|
| | | {
|
| | | myFocusAuctionRefresh();
|
| | | }
|
| | |
|
| | | if (existLocationAuction)
|
| | | {
|
| | | WindowCenter.Instance.Open<AuctionHouseWin>(false, 3);
|
| | | }
|
| | | }
|
| | |
|
| | |
| | | SendLocationServerItem(guid);
|
| | | }
|
| | | }
|
| | |
|
| | | public void LocationMyFocusItem(string guid)
|
| | | {
|
| | | locationMyFocusGuid = guid;
|
| | | locationMyFocusTime = DateTime.Now;
|
| | | AuctionInquiry.Instance.SendQueryAttentionAuctionItem();
|
| | | }
|
| | | #endregion
|
| | |
|
| | | public void SetDayRemind()
|