123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- @using WMS.BZWeb;
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta name=”renderer” content=”webkit|ie-comp|ie-stand” />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="renderer" content="webkit">
- <link rel="icon" href="~/favicon.ico">
- <title>@Common.GetWMSTile()| @ViewBag.Title</title>
- <link href="~/Content/font/css/font-awesome.min.css" rel="stylesheet" />
- <link href="~/Content/bootstrap/bootstrap.min.css" rel="stylesheet" />
- @Html.AppendCssFile(
- "/wwwroot/Content/wms/style/wms-common.css",
- "/wwwroot/Content/wms/plugin/scroll/scroll.css",
- "/wwwroot/Content/wms/style/wms-iframe-form.css",
- "/wwwroot/Content/wms/plugin/wizard/wizard.css",
- "/wwwroot/Content/wms/plugin/tree/wms-tree.css",
- "/wwwroot/Content/wms/plugin/select/wms-select.css",
- "/wwwroot/Content/wms/plugin/timeline/wms-timeline.css",
- "/wwwroot/Content/wms/plugin/formselect/wms-formselect.css",
- "/wwwroot/Content/wms/plugin/inputsearch/wms-isearch.css",
- "/wwwroot/Content/wms/plugin/grid/jfgrid.css",
- "/wwwroot/Content/wms/plugin/uploader/wms-uploader.css"
- )
- <script src="~/Content/jquery/jquery-1.10.2.min.js"></script>
- <script src="~/Content/jquery/jquery.md5.min.js"></script>
- <script src="~/Content/jquery/plugin/jqprint/jquery.jqprint-0.3.js"></script>
- <script src="~/Content/datepicker/WdatePicker.js"></script>
- <script src="~/Content/ueditor/ueditor.config.js"></script>
- <script src="~/Content/ueditor/ueditor.all.min.js"></script>
- <script src="~/Content/ueditor/lang/zh-cn/zh-cn.js"></script>
- <script src="~/Content/linq/linq.min.js"></script>
- <script src="~/Content/linq/linq.jquery.js"></script>
- <script src="~/Content/echarts/echarts.min.js"></script>
- <!--[if lt IE 9]>
- <script src="~/Content/bootstrap/html5shiv.min.js"></script>
- <script src="~/Content/bootstrap/respond.min.js"></script>
- <![endif]-->
- <script>
- 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 "" };
- </script>
- </head>
- <body class="@Common.GetClientBrowser() @Common.GetBodyUITheme()">
- <div id="lr_form_bg" class="lr-form-bg">
- </div>
- @RenderBody()
- @Html.AppendJsFile(
- "/wwwroot/Content/wms/plugin/resize/resize.js",
- "/wwwroot/Content/wms/plugin/mousewheel/mousewheel.js",
- "/wwwroot/Content/wms/plugin/scroll/scroll.js",
- "/wwwroot/Content/wms/script/wms-validator.js",
- "/wwwroot/Content/wms/script/wms-form.js",
- "/wwwroot/Content/wms/plugin/wizard/wizard.js",
- "/wwwroot/Content/wms/plugin/tree/wms-tree.js",
- "/wwwroot/Content/wms/plugin/select/wms-select.js",
- "/wwwroot/Content/wms/plugin/timeline/wms-timeline.js",
- "/wwwroot/Content/wms/plugin/formselect/wms-formselect.js",
- "/wwwroot/Content/wms/plugin/inputsearch/wms-isearch.js",
- "/wwwroot/Content/wms/plugin/uploader/wms-uploader.js",
- "/wwwroot/Content/wms/plugin/grid/jfgrid.js"
- )
- <script>
- $.lrToken = $('@Html.AntiForgeryToken()').val();
- $(function () {
- $('#lr_form_bg').fadeOut();
- $('#form').lrscroll();
- // 翻译指定标签
- $('.lrlg').each(function () {
- var $this = $(this);
- top.learun.language.get($this.text(), function (text) {
- $this.text(text);
- });
- });
- // 翻译表单标题
- $('.lr-form-item-title').each(function () {
- var $this = $(this);
- var $font = $this.find('font');
- $font.remove();
- top.learun.language.get($this.text(), function (text) {
- if ($font.length > 0) {
- $this.html(text + '<font face="宋体">*</font>');
- }
- else {
- $this.text(text);
- }
- });
- });
- // input placeholder 翻译
- $('input[placeholder]').each(function () {
- var $this = $(this);
- var _text = $this.attr('placeholder');
- top.learun.language.get(_text, function (text) {
- $this.attr('placeholder', text);
- });
- });
- if (!!window.bootstrap) {
- bootstrap(jQuery, top.learun);
- }
- });
- </script>
- </body>
- </html>
|