username@email.com
2021-11-15 e0e522aa69f69e0aa95f677fc083734281099df2
回车查询
4个文件已修改
54 ■■■■ 已修改文件
zhengcaioa/zhengcaioa/Views/ExpertTestTopic/Index.cshtml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
zhengcaioa/zhengcaioa/Views/Home/login.cshtml 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zhengcaioa/zhengcaioa/Views/Shared/_Layout_Search.cshtml 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zhengcaioa/zhengcaioa/wwwroot/css/plugins/chosen/chosen.css 30 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
zhengcaioa/zhengcaioa/Views/ExpertTestTopic/Index.cshtml
@@ -50,7 +50,7 @@
            { label: '题型', name: 'Topictype', labtype: 'combox', hidden: false, data: JSON.parse(topictype), cwidth: '5%', cccwidth: '15%' },
            { label: '知识点', name: 'Zhishitype', labtype: 'combox', hidden: false, data: JSON.parse(zhishitype), cwidth: '5%', cccwidth: '15%' },
            { label: '法律', name: 'Falv', labtype: 'combox', hidden: false, data: JSON.parse(Falv), cwidth: '5%', cccwidth: '15%' },
            { label: '重点标注', name: 'Zhongdian', labtype: 'combox', hidden: false, data: JSON.parse(zhongdian), cwidth: '5%', cccwidth: '15%' },
            //{ label: '重点标注', name: 'Zhongdian', labtype: 'combox', hidden: false, data: JSON.parse(zhongdian), cwidth: '5%', cccwidth: '15%' },
            { label: '解析', name: 'JiexiStatus', labtype: 'combox', hidden: false, data: JSON.parse(jiexi_status), cwidth: '5%', cccwidth: '15%' },
            { label: '审核', name: 'ShenpiStatus', labtype: 'combox', hidden: false, data: JSON.parse(shenpi_status), cwidth: '5%', cccwidth: '15%' },
zhengcaioa/zhengcaioa/Views/Home/login.cshtml
@@ -257,7 +257,7 @@
                        &nbsp;<input name="hidIp" id="hidIp" type="hidden" class="form-control">
                    </div>
                </div>
                <button class="btn btn-lg btn-login btn-block" type="submit">
                <button class="btn btn-lg btn-login btn-block" id="login" type="submit">
                    登 录
                </button>
                <div class="row">
@@ -345,6 +345,16 @@
        else {
            console.log("请使用主流浏览器:chrome,firefox,opera,safari");
        }
        //回车事件
        document.onkeydown = function (event) {
            var e = event || window.event;
            if (e && e.keyCode == 13) { //回车键的键值为13
                $("#login").click(); //调用登录按钮的登录事件
            }
        };
    </script>
</body>
</html>
zhengcaioa/zhengcaioa/Views/Shared/_Layout_Search.cshtml
@@ -22,7 +22,7 @@
    <link href="~/css/bootstrap.min.css" rel="stylesheet">
    <link href="~/css/font-awesome.min.css" rel="stylesheet">
    <link href="~/css/plugins/iCheck/custom.css" rel="stylesheet">
    <link href="~/css/plugins/chosen/chosen.css?v=7" rel="stylesheet">
    <link href="~/css/plugins/chosen/chosen.css?v=9" rel="stylesheet">
    <link href="~/css/plugins/datapicker/datepicker3.css" rel="stylesheet">
    <script type="text/javascript">
@@ -65,6 +65,14 @@
        Verify.isEmptyMsg = '不能为空';
        Verify.isShortLengthMsg = '长度过长';
        Verify.isLongLengthMsg = '数据太长';
        //回车事件
        document.onkeydown = function (event) {
            var e = event || window.event;
            if (e && e.keyCode == 13) { //回车键的键值为13
                //$("#login").click(); //调用登录按钮的登录事件
                _pageSearch();
            }
        };
    </script>
    <style type="text/css">
zhengcaioa/zhengcaioa/wwwroot/css/plugins/chosen/chosen.css
@@ -175,7 +175,7 @@
        margin: 0;
        padding: 5px 6px;
        list-style: none;
        line-height: 7px;
        line-height: 15px;
        -webkit-touch-callout: none;
    }
@@ -233,7 +233,8 @@
    min-height: 30px;
    overflow: hidden;
    padding: 2px;
    position: relative; box-sizing:border-box;
    position: relative;
    box-sizing: border-box;
    width: 100%;
}
@@ -482,8 +483,23 @@
}
/* @end */
.chosen-container-single .chosen-single{ line-height:28px;}
.chosen-container-single .chosen-single div b{ background-position:0px 4px;}
.chosen-container-active.chosen-with-drop .chosen-single div b { background-position: -18px 4px; }
.chosen-container{ display:block;}
.chosen-container-multi .chosen-choices{min-height:30px; padding:0px;}
.chosen-container-single .chosen-single {
    line-height: 28px;
}
    .chosen-container-single .chosen-single div b {
        background-position: 0px 4px;
    }
.chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -18px 4px;
}
.chosen-container {
    display: block;
}
.chosen-container-multi .chosen-choices {
    min-height: 30px;
    padding: 0px;
}