コード例 #1
0
        public IActionResult ChangeStation()
        {
            var stations = UserMgr.GetAllowedStations(UserSelf.DoctorId);

            ViewBag.Stations    = stations;
            ViewBag.StationTree = new Code.Managers.UserFrameManager().GetStationsTree(stations);
            ViewBag.Action      = "ReLogin";
            ViewBag.DoctorId    = UserSelf.DoctorId;
            return(View("selectStation", new HisLoginViewModel
            {
                IsReLogin = true
            }));
        }