|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | [Route("Web/MenuList")] | 
|---|
|  |  |  | [HttpGet] | 
|---|
|  |  |  | public object MenuList(string HMakeName) | 
|---|
|  |  |  | public object MenuList(string HMakeName, string HType) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | try | 
|---|
|  |  |  | { | 
|---|
|  |  |  | List<MenuLoad> mu = new List<MenuLoad>();                       //以父子级结构存放菜单清单信息 | 
|---|
|  |  |  | SQLHelper.ClsCN oCn = new SQLHelper.ClsCN();            //数据库操作工具 | 
|---|
|  |  |  | string sql = "select HItemID,HPartentID,HNumber,HName,HLevel,Hurl,HType,HPicNum from Gy_MenuDefineSet where HMakeName = '" + HMakeName + "' order by HPosition"; | 
|---|
|  |  |  | string sql = "select HItemID,HPartentID,HNumber,HName,HLevel,Hurl,HType,HPicNum from Gy_MenuDefineSet where HMakeName = '" + HMakeName + "' and HType = '" + HType + "' order by HPosition"; | 
|---|
|  |  |  | ds = oCn.RunProcReturn(sql, "Gy_MenuDefineSet");        //查询当前用户的自定义菜单数据 | 
|---|
|  |  |  | if (ds.Tables[0]==null || ds.Tables[0].Rows.Count == 0) //判断当前用户是否有设置过自定义信息,若记录数为0,则没有设置过,加载所有的菜单信息 | 
|---|
|  |  |  | { | 
|---|
|  |  |  | sql = "Select * from Gy_Menu_1 Order by HPosition "; | 
|---|
|  |  |  | sql = "Select * from Gy_Menu_1 where HType = '" + HType + "' Order by HPosition "; | 
|---|
|  |  |  | ds = oCn.RunProcReturn(sql, "Gy_Menu"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | //自定义菜单:获取树组件数据 | 
|---|
|  |  |  | [Route("Web/MenuDefineSet")] | 
|---|
|  |  |  | [HttpGet] | 
|---|
|  |  |  | public object MenuDefineSet(string HMakeName) | 
|---|
|  |  |  | public object MenuDefineSet(string HMakeName, string HType) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | try | 
|---|
|  |  |  | { | 
|---|
|  |  |  | 
|---|
|  |  |  | List<MenuInit> menuInitList = new List<MenuInit>();                     //用以获取Gy_Menu_1中的所有菜单信息,以及对应节点是否被选中需要加载显示 | 
|---|
|  |  |  |  | 
|---|
|  |  |  | SQLHelper.ClsCN oCn = new SQLHelper.ClsCN(); | 
|---|
|  |  |  | ds = oCn.RunProcReturn("Select * from Gy_Menu_1 Order by HItemID ", "Gy_Menu");     //获取Gy_Menu_1中的所有菜单信息,用于为menuInitList列表充实数据 | 
|---|
|  |  |  | ds = oCn.RunProcReturn("Select * from Gy_Menu_1 where HType = '" +HType + "' Order by HItemID ", "Gy_Menu");     //获取Gy_Menu_1中的所有菜单信息,用于为menuInitList列表充实数据 | 
|---|
|  |  |  |  | 
|---|
|  |  |  | DataSet ds1 = new DataSet(); | 
|---|
|  |  |  | for (int i = 0; i < ds.Tables[0].Rows.Count; i++)                                   //将Gy_Menu_1中的菜单信息及选中情况保存到menuInitList列表中, | 
|---|
|  |  |  | 
|---|
|  |  |  | string[] sArray = msg.Split(new string[] { ";" }, StringSplitOptions.RemoveEmptyEntries); | 
|---|
|  |  |  | string HMakeName = sArray[1].ToString(); | 
|---|
|  |  |  | string saveData = sArray[0].ToString(); | 
|---|
|  |  |  | string HTypes = sArray[1].ToString(); | 
|---|
|  |  |  | List<SaveDefineMenu> saveDataList = Newtonsoft.Json.JsonConvert.DeserializeObject<List<SaveDefineMenu>>(saveData); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //声明数据库操作工具 | 
|---|
|  |  |  | 
|---|
|  |  |  | oCN.BeginTran(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //删除当前用户的自定义数据 | 
|---|
|  |  |  | string sql = "delete from Gy_MenuDefineSet where HMakeName = '" + HMakeName + "'"; | 
|---|
|  |  |  | string sql = "delete from Gy_MenuDefineSet where HMakeName = '" + HMakeName + "' and HType = '" + HTypes + "'"; | 
|---|
|  |  |  | oCN.RunProc(sql); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //插入当前用户最新的自定义数据 | 
|---|
|  |  |  | 
|---|
|  |  |  | string HType = ds.Tables[0].Rows[0]["HType"].ToString(); | 
|---|
|  |  |  | string HPicNum = ds.Tables[0].Rows[0]["HPicNum"].ToString(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | if(HPartentID == "0" || HPartentID == ds.Tables[0].Rows[0]["HItemID"]) | 
|---|
|  |  |  | if(HPartentID == "0" || HPartentID == ds.Tables[0].Rows[0]["HItemID"].ToString()) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | string HPosition = ds.Tables[0].Rows[0]["HPosition"].ToString(); | 
|---|
|  |  |  | sql = "insert into Gy_MenuDefineSet(HItemID,HPartentID,HNumber,HName,HLevel,Hurl,HType,HMakeName,HPicNum,HPosition) values('" + saveDataList[i].HItemID + "','" + HPartentID + "','" + HNumber + "','" + saveDataList[i].HName + "'," + HLevel + ",'" + Hurl + "','" + HType + "','" + HMakeName + "','" + HPicNum + "','" + HPosition + "')"; | 
|---|
|  |  |  | 
|---|
|  |  |  | //快捷方式自定义菜单:获取树组件数据 | 
|---|
|  |  |  | [Route("Web/Xt_UserFastMenu_Display")] | 
|---|
|  |  |  | [HttpGet] | 
|---|
|  |  |  | public object Xt_UserFastMenu_Display(string HMakeName) | 
|---|
|  |  |  | public object Xt_UserFastMenu_Display(string HMakeName, string HType) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | try | 
|---|
|  |  |  | { | 
|---|
|  |  |  | 
|---|
|  |  |  | List<MenuInit> menuInitList = new List<MenuInit>();                     //用以获取Gy_Menu_1中的所有菜单信息,以及对应节点是否被选中需要加载显示 | 
|---|
|  |  |  |  | 
|---|
|  |  |  | SQLHelper.ClsCN oCn = new SQLHelper.ClsCN(); | 
|---|
|  |  |  | ds = oCn.RunProcReturn("Select * from Gy_Menu_1 Order by HItemID ", "Gy_Menu");     //获取Gy_Menu_1中的所有菜单信息,用于为menuInitList列表充实数据 | 
|---|
|  |  |  | ds = oCn.RunProcReturn("Select * from Gy_Menu_1 where HType = '" + HType + "' Order by HItemID ", "Gy_Menu");     //获取Gy_Menu_1中的所有菜单信息,用于为menuInitList列表充实数据 | 
|---|
|  |  |  |  | 
|---|
|  |  |  | DataSet ds1 = new DataSet(); | 
|---|
|  |  |  | for (int i = 0; i < ds.Tables[0].Rows.Count; i++)                                   //将Gy_Menu_1中的菜单信息及选中情况保存到menuInitList列表中, | 
|---|
|  |  |  | 
|---|
|  |  |  | string[] sArray = msg.Split(new string[] { ";" }, StringSplitOptions.RemoveEmptyEntries); | 
|---|
|  |  |  | string HMakeName = sArray[1].ToString(); | 
|---|
|  |  |  | string saveData = sArray[0].ToString(); | 
|---|
|  |  |  | string HTypes = sArray[2].ToString(); | 
|---|
|  |  |  | List<SaveDefineMenu> saveDataList = Newtonsoft.Json.JsonConvert.DeserializeObject<List<SaveDefineMenu>>(saveData); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //声明数据库操作工具 | 
|---|
|  |  |  | 
|---|
|  |  |  | oCN.BeginTran(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //删除当前用户的自定义数据 | 
|---|
|  |  |  | string sql = "delete from Xt_UserFastMenu where HUserID = '" + HMakeName + "'"; | 
|---|
|  |  |  | string sql = "delete from Xt_UserFastMenu where HUserID = '" + HMakeName + "' and HType = '" + HTypes + "'"; | 
|---|
|  |  |  | oCN.RunProc(sql); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //插入当前用户最新的自定义数据 | 
|---|
|  |  |  | 
|---|
|  |  |  | string HUserID = HMakeName; | 
|---|
|  |  |  | string HSubFuncID = ds.Tables[0].Rows[0]["HItemID"].ToString(); | 
|---|
|  |  |  | string HCaption = ds.Tables[0].Rows[0]["HName"].ToString(); | 
|---|
|  |  |  | string HType = ds.Tables[0].Rows[0]["HType"].ToString(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | sql = "insert into Xt_UserFastMenu(HUserID,HSubFuncID,HCaption) values('" + HUserID + "','" + HSubFuncID + "','" + HCaption + "')"; | 
|---|
|  |  |  | sql = "insert into Xt_UserFastMenu(HUserID,HSubFuncID,HCaption,HType) values('" + HUserID + "','" + HSubFuncID + "','" + HCaption + "','" + HType + "')"; | 
|---|
|  |  |  | oCN.RunProc(sql); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | //快捷方式自定义菜单:获取树组件数据 | 
|---|
|  |  |  | [Route("Web/Xt_UserFastMenu_Init")] | 
|---|
|  |  |  | [HttpGet] | 
|---|
|  |  |  | public object Xt_UserFastMenu_Init(string HMakeName) | 
|---|
|  |  |  | public object Xt_UserFastMenu_Init(string HMakeName, string HType) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | try | 
|---|
|  |  |  | { | 
|---|
|  |  |  | SQLHelper.ClsCN oCn = new SQLHelper.ClsCN(); | 
|---|
|  |  |  | string sql = "select a.HSubFuncID, a.HCaption,a.HPicNum,b.Hurl from Xt_UserFastMenu as a join Gy_Menu_1 as b on a.HSubFuncID = b.HItemID  where a.HUserID = '" + HMakeName + "' Order by a.HItemID"; | 
|---|
|  |  |  | string sql = "select a.HSubFuncID, a.HCaption,a.HPicNum,b.Hurl from Xt_UserFastMenu as a join Gy_Menu_1 as b on a.HSubFuncID = b.HItemID  where a.HUserID = '" + HMakeName + "' and b.HType = '" + HType + "' Order by a.HItemID"; | 
|---|
|  |  |  | ds = oCn.RunProcReturn(sql, "Xt_UserFastMenu");     //获取Xt_UserFastMenu中该用户设置的自定义菜单信息,用于在前端加载 | 
|---|
|  |  |  |  | 
|---|
|  |  |  | objJsonResult.code = "1"; | 
|---|