Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 

123 rindas
5.1 KiB

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta name=”renderer” content=”webkit|ie-comp|ie-stand” />
  5. <meta name="viewport" content="width=device-width" />
  6. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  8. <meta name="renderer" content="webkit">
  9. <meta name="viewport" content="width=device-width, initial-scale=1" />
  10. <link rel="icon" href="~/favicon.ico">
  11. <title>@ViewBag.Title|力软信息|快速开发平台|Learun敏捷开发框架</title>
  12. <link href="~/Content/pace/pace-theme-minimal.css" rel="stylesheet" />
  13. <link href="~/Content/font/css/font-awesome.min.css" rel="stylesheet" />
  14. <link href="~/Content/bootstrap/bootstrap.min.css" rel="stylesheet" />
  15. <script src="~/Content/pace/pace.min.js"></script>
  16. <script src="~/Content/jquery/jquery-1.10.2.min.js"></script>
  17. <script src="~/Content/bootstrap/bootstrap.min.js"></script>
  18. <script src="~/Content/jquery/plugin/jqprint/jquery.jqprint-0.3.js"></script>
  19. @Html.AppendCssFile(
  20. "/Views/LR_Content/style/lr-common.css",
  21. "/Views/LR_Content/plugin/scroll/scroll.css",
  22. "/Views/LR_Content/style/lr-iframe-index.css",
  23. "/Views/LR_Content/plugin/layout/lr-layout.css",
  24. "/Views/LR_Content/plugin/tree/lr-tree.css",
  25. "/Views/LR_Content/plugin/select/lr-select.css",
  26. "/Views/LR_Content/plugin/formselect/lr-formselect.css",
  27. "/Views/LR_Content/plugin/custmerquery/lr-custmerquery.css",
  28. "/Views/LR_Content/plugin/date/lr-datepicker.css",
  29. "/Views/LR_Content/plugin/uploader/lr-uploader.css",
  30. "/Views/LR_Content/plugin/grid/jfgrid.css",
  31. "/Views/LR_Content/plugin/custmerform/lr-formdesigner.css",
  32. "/Views/LR_Content/plugin/date/lr-datepicker.css"
  33. )
  34. <script src="~/Content/laydate/laydate.js"></script>
  35. @*<script src="~/Content/datepicker/WdatePicker.js"></script>*@
  36. <!--[if lt IE 9]>
  37. <script src="~/Content/bootstrap/html5shiv.min.js"></script>
  38. <script src="~/Content/bootstrap/respond.min.js"></script>
  39. <![endif]-->
  40. <script>
  41. function request(d) { for (var c = location.search.slice(1).split("&"), a = 0; a < c.length; a++) { var b = c[a].split("="); if (b[0] == d) if ("undefined" == unescape(b[1])) break; else return unescape(b[1]) } return "" };
  42. </script>
  43. @Html.SetCurrentUrl()
  44. </head>
  45. <body class="@Learun.Util.Net.Browser @Learun.Util.WebHelper.GetUITheme()">
  46. @RenderBody()
  47. @Html.AppendJsFile(
  48. "/Views/LR_Content/plugin/resize/resize.js",
  49. "/Views/LR_Content/plugin/mousewheel/mousewheel.js",
  50. "/Views/LR_Content/plugin/scroll/scroll.js",
  51. "/Views/LR_Content/plugin/layout/lr-layout.js",
  52. "/Views/LR_Content/plugin/tree/lr-tree.js",
  53. "/Views/LR_Content/plugin/select/lr-select.js",
  54. "/Views/LR_Content/plugin/custmerquery/lr-custmerquery.js",
  55. "/Views/LR_Content/plugin/date/lr-datepicker.js",
  56. "/Views/LR_Content/script/lr-validator.js",
  57. "/Views/LR_Content/script/lr-authorize.js",
  58. "/Views/LR_Content/script/lr-excel.js",
  59. "/Views/LR_Content/script/lr-form.js",
  60. "/Views/LR_Content/plugin/formselect/lr-formselect.js",
  61. "/Views/LR_Content/plugin/inputsearch/lr-isearch.js",
  62. "/Views/LR_Content/plugin/date/lr-datepicker.js",
  63. "/Views/LR_Content/plugin/uploader/lr-uploader.js",
  64. "/Views/LR_Content/plugin/grid/jfgrid.js",
  65. "/Views/LR_Content/plugin/custmerform/lr-formcomponts.js",
  66. "/Views/LR_Content/plugin/custmerform/lr-formrender.js"
  67. )
  68. <script>
  69. $(function () {
  70. $('#lr_layout').lrLayout();
  71. // 翻译指定标签
  72. $('.lrlg').each(function () {
  73. var $this = $(this);
  74. top.learun.language.get($this.text(), function (text) {
  75. $this.text(text);
  76. });
  77. });
  78. // 翻译表单标题
  79. $('.lr-form-item-title').each(function () {
  80. var $this = $(this);
  81. var $font = $this.find('font');
  82. $font.remove();
  83. top.learun.language.get($this.text(), function (text) {
  84. if ($font.length > 0) {
  85. $this.html(text + '<font face="宋体">*</font>');
  86. }
  87. else {
  88. $this.text(text);
  89. }
  90. });
  91. });
  92. // input placeholder 翻译
  93. $('input[placeholder]').each(function () {
  94. var $this = $(this);
  95. var _text = $this.attr('placeholder');
  96. top.learun.language.get(_text, function (text) {
  97. $this.attr('placeholder', text);
  98. });
  99. });
  100. top.learun.httpAsync('GET', top.$.rootUrl + '/LR_SystemModule/Module/GetAuthorizeButtonColumnList', { url: lrCurrentUrl }, function (data) {
  101. lrModuleButtonList = data.btns;
  102. lrModuleColumnList = data.cols;
  103. lrModule = data.module;
  104. if (!!window.bootstrap) {
  105. bootstrap(jQuery, top.learun);
  106. }
  107. });
  108. });
  109. </script>
  110. </body>
  111. </html>