| | |
| | | //#region 获取模块页面标题 |
| | | function get_PageTitle(HModuleType) { |
| | | var HPageTitle = ""; |
| | | |
| | | $.ajax({ |
| | | type: "GET", |
| | | async: false, |
| | | url: GetWEBURL() + "Web/GetModuleName", //方法所在页面和方法名 |
| | | url: GetWEBURL() + "/Web/GetModuleName", //方法所在页面和方法名 |
| | | data: { "HModuleType": HModuleType }, |
| | | success: function (result) { |
| | | var data = result.data[0]; |
| | | if (result.count == 1) { |
| | | return data.HName; |
| | | } else { |
| | | return ""; |
| | | var data = result.data[0]; |
| | | HPageTitle = data.HName; |
| | | } |
| | | }, error: function () { |
| | | layer.alert("接口请求失败!", { icon: 5 }); |
| | | } |
| | | }); |
| | | |
| | | return HPageTitle; |
| | | } |