選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

100 行
3.8 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, initial-scale=1" />
  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. <link rel="icon" href="~/favicon.ico">
  10. <title>@ViewBag.Title|力软信息|快速开发平台|Learun敏捷开发框架</title>
  11. <script src="~/Content/jquery/jquery-1.10.2.min.js"></script>
  12. <script src="~/Content/jquery/jquery.md5.min.js"></script>
  13. <script src="~/Content/jquery/plugin/jqprint/jquery.jqprint-0.3.js"></script>
  14. <script src="~/Content/laydate/laydate.js"></script>
  15. @*<script src="~/Content/datepicker/WdatePicker.js"></script>*@
  16. <script src="~/Content/ueditor/ueditor.config.js"></script>
  17. <script src="~/Content/jquery/plugin/jqprint/jQuery.print.js"></script>
  18. <script src="~/Content/ueditor/ueditor.all.min.js"></script>
  19. <script src="~/Content/ueditor/lang/zh-cn/zh-cn.js"></script>
  20. <!--[if lt IE 9]>
  21. <script src="~/Content/bootstrap/html5shiv.min.js"></script>
  22. <script src="~/Content/bootstrap/respond.min.js"></script>
  23. <![endif]-->
  24. <script>
  25. 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 "" };
  26. </script>
  27. </head>
  28. <body class="@Learun.Util.Net.Browser @Learun.Util.WebHelper.GetUITheme()">
  29. <div id="lr_form_bg" class="lr-form-bg">
  30. </div>
  31. @RenderBody()
  32. @Html.AppendJsFile(
  33. "/Views/LR_Content/plugin/resize/resize.js",
  34. "/Views/LR_Content/plugin/mousewheel/mousewheel.js",
  35. "/Views/LR_Content/plugin/scroll/scroll.js",
  36. "/Views/LR_Content/script/lr-validator.js",
  37. "/Views/LR_Content/script/lr-form.js",
  38. "/Views/LR_Content/plugin/wizard/wizard.js",
  39. "/Views/LR_Content/plugin/tree/lr-tree.js",
  40. "/Views/LR_Content/plugin/select/lr-select.js",
  41. "/Views/LR_Content/plugin/layerselect/lr-layerselect.js",
  42. "/Views/LR_Content/plugin/timeline/lr-timeline.js",
  43. "/Views/LR_Content/plugin/timeline/lr-timelineEsc.js",
  44. "/Views/LR_Content/plugin/formselect/lr-formselect.js",
  45. "/Views/LR_Content/plugin/inputsearch/lr-isearch.js",
  46. "/Views/LR_Content/plugin/uploader/lr-uploader.js",
  47. "/Views/LR_Content/plugin/date/lr-datepicker.js",
  48. "/Views/LR_Content/plugin/grid/jfgrid.js"
  49. )
  50. <script>
  51. $.lrToken = $('@Html.AntiForgeryToken()').val();
  52. $(function () {
  53. $('#lr_form_bg').fadeOut();
  54. $('#form').lrscroll();
  55. // 翻译指定标签
  56. $('.lrlg').each(function () {
  57. var $this = $(this);
  58. top.learun.language.get($this.text(), function (text) {
  59. $this.text(text);
  60. });
  61. });
  62. // 翻译表单标题
  63. $('.lr-form-item-title').each(function () {
  64. var $this = $(this);
  65. var $font = $this.find('font');
  66. $font.remove();
  67. top.learun.language.get($this.text(), function (text) {
  68. if ($font.length > 0) {
  69. $this.html(text + '<font face="宋体">*</font>');
  70. }
  71. else {
  72. $this.text(text);
  73. }
  74. });
  75. });
  76. // input placeholder 翻译
  77. $('input[placeholder]').each(function () {
  78. var $this = $(this);
  79. var _text = $this.attr('placeholder');
  80. top.learun.language.get(_text, function (text) {
  81. $this.attr('placeholder', text);
  82. });
  83. });
  84. if (!!window.bootstrap) {
  85. bootstrap(jQuery, top.learun);
  86. }
  87. });
  88. </script>
  89. </body>
  90. </html>