登陆
Showing
23 changed files
with
155 additions
and
586 deletions
| ... | @@ -103,7 +103,6 @@ class CheckLogin | ... | @@ -103,7 +103,6 @@ class CheckLogin |
| 103 | if (!$session->sourceBaseType) { | 103 | if (!$session->sourceBaseType) { |
| 104 | $session->sourceBaseType = $this->getSourceBaseType(); | 104 | $session->sourceBaseType = $this->getSourceBaseType(); |
| 105 | } | 105 | } |
| 106 | |||
| 107 | } | 106 | } |
| 108 | 107 | ||
| 109 | private function getProduct() | 108 | private function getProduct() |
| ... | @@ -350,5 +349,4 @@ class CheckLogin | ... | @@ -350,5 +349,4 @@ class CheckLogin |
| 350 | return array(); | 349 | return array(); |
| 351 | } | 350 | } |
| 352 | } | 351 | } |
| 353 | |||
| 354 | } | 352 | } | ... | ... |
| ... | @@ -26,13 +26,24 @@ | ... | @@ -26,13 +26,24 @@ |
| 26 | timeout: 1000, | 26 | timeout: 1000, |
| 27 | }); | 27 | }); |
| 28 | 28 | ||
| 29 | function myselfinfo(){ | ||
| 30 | layer.open({ | ||
| 31 | type: 1, | ||
| 32 | area: ['300px','200px'], | ||
| 33 | fix: false, //不固定 | ||
| 34 | maxmin: true, | ||
| 35 | shade:0.4, | ||
| 36 | title: '查看信息', | ||
| 37 | content: 'http://admin.local/index.php/perm/personal' | ||
| 38 | }); | ||
| 39 | } | ||
| 40 | |||
| 29 | Vue.filter('formatDate', function (time) { | 41 | Vue.filter('formatDate', function (time) { |
| 30 | var date = new Date(time); | 42 | var date = new Date(time); |
| 31 | return date.getFullYear() + '-' + date.getMonth() + '-' + date.getDate(); | 43 | return date.getFullYear() + '-' + date.getMonth() + '-' + date.getDate(); |
| 32 | }); | 44 | }); |
| 33 | 45 | ||
| 34 | (function ($) { | 46 | (function ($) { |
| 35 | |||
| 36 | $.fn.serializeJson = function () { | 47 | $.fn.serializeJson = function () { |
| 37 | var serializeObj = {}; | 48 | var serializeObj = {}; |
| 38 | var array = this.serializeArray(); | 49 | var array = this.serializeArray(); | ... | ... |
| ... | @@ -4,51 +4,33 @@ | ... | @@ -4,51 +4,33 @@ |
| 4 | <a class="logo navbar-logo-m f-l mr-10 visible-xs" href="/">H-ui</a> | 4 | <a class="logo navbar-logo-m f-l mr-10 visible-xs" href="/">H-ui</a> |
| 5 | <span class="logo navbar-slogan f-l mr-10 hidden-xs"></span> | 5 | <span class="logo navbar-slogan f-l mr-10 hidden-xs"></span> |
| 6 | <a aria-hidden="false" class="nav-toggle Hui-iconfont visible-xs" href="javascript:;"></a> | 6 | <a aria-hidden="false" class="nav-toggle Hui-iconfont visible-xs" href="javascript:;"></a> |
| 7 | <nav class="nav navbar-nav"> | 7 | <nav class="nav navbar-nav" id="nav"> |
| 8 | <ul class="cl"> | 8 | <ul class="cl"> |
| 9 | <?php $menus = api('/system/menu/getLoginUserMenus'); ?> | ||
| 10 | <?php foreach($menus as $v): ?> | ||
| 9 | <li class="dropDown dropDown_hover"> | 11 | <li class="dropDown dropDown_hover"> |
| 10 | <a href="<?=site_url('welcome/work')?>" >工作台</a> | 12 | <a href="<?=$v->path?site_url($v->path):'#'?>" ><?=$v->name?> <?=$v->children?'<i class="Hui-iconfont"></i>':'' ?></a> |
| 11 | </li> | 13 | <?php if ($v->children) : ?> |
| 12 | <li class="dropDown dropDown_hover"> | ||
| 13 | <a href="<?=site_url('welcome/user')?>" >客户管理</a> | ||
| 14 | </li> | ||
| 15 | <li class="dropDown dropDown_hover"> | ||
| 16 | <a href="<?=site_url('welcome/loan')?>" >贷后管理</a> | ||
| 17 | </li> | ||
| 18 | <li class="dropDown dropDown_hover"> | ||
| 19 | <a href="<?=site_url('welcome/finance')?>" >财务管理</a> | ||
| 20 | </li> | ||
| 21 | <li class="dropDown dropDown_hover"> | ||
| 22 | <a href="<?=site_url('welcome/data')?>" >数据统计</a> | ||
| 23 | </li> | ||
| 24 | <li class="dropDown dropDown_hover"> | ||
| 25 | <a href="<?=site_url('welcome/perm')?>" >权限中心</a> | ||
| 26 | </li> | ||
| 27 | <li class="dropDown dropDown_hover"> | ||
| 28 | <a href="<?=site_url('welcome/config')?>" >配置中心</a> | ||
| 29 | </li> | ||
| 30 | <li class="dropDown dropDown_hover"> | ||
| 31 | <a href="javascript:;" >应用工具 <i class="Hui-iconfont"></i></a> | ||
| 32 | <ul class="dropDown-menu menu radius box-shadow"> | 14 | <ul class="dropDown-menu menu radius box-shadow"> |
| 15 | <?php foreach($v->children as $vv): ?> | ||
| 33 | <li> | 16 | <li> |
| 34 | <a href="javascript:layer_show('应用工具', '<?=site_url('/tool/cal')?>');">利息计算器</a> | 17 | <a href="javascript:layer_show('应用工具', '<?=site_url($vv->path)?>');"><?=$vv->name?></a> |
| 35 | </li> | ||
| 36 | <li> | ||
| 37 | <a href="javascript:layer_show('应用工具', '<?=site_url('/tool/web')?>');">网查网址</a> | ||
| 38 | </li> | 18 | </li> |
| 19 | <?php endforeach; ?> | ||
| 39 | </ul> | 20 | </ul> |
| 21 | <?php endif ?> | ||
| 40 | </li> | 22 | </li> |
| 23 | <?php endforeach; ?> | ||
| 41 | </ul> | 24 | </ul> |
| 42 | </nav> | 25 | </nav> |
| 43 | <nav id="Hui-userbar" class="nav navbar-nav navbar-userbar hidden-xs"> | 26 | <nav id="Hui-userbar" class="nav navbar-nav navbar-userbar hidden-xs"> |
| 27 | <?php $user = api('/system/user/loginUser') ?> | ||
| 44 | <ul class="cl"> | 28 | <ul class="cl"> |
| 45 | <li>超级管理员</li> | ||
| 46 | <li class="dropDown dropDown_hover"> | 29 | <li class="dropDown dropDown_hover"> |
| 47 | <a href="#" class="dropDown_A">admin <i class="Hui-iconfont"></i></a> | 30 | <a href="#" class="dropDown_A"><?=$user->username?> <i class="Hui-iconfont"></i></a> |
| 48 | <ul class="dropDown-menu menu radius box-shadow"> | 31 | <ul class="dropDown-menu menu radius box-shadow"> |
| 49 | <li><a href="javascript:;" onClick="myselfinfo()">个人信息</a></li> | 32 | <li><a href="javascript:layer_show('个人中心', 'http://admin.local/index.php/perm/personal');">个人信息</a></li> |
| 50 | <li><a href="#">切换账户</a></li> | 33 | <li><a href="<?=site_url('/logout')?>">退出</a></li> |
| 51 | <li><a href="#">退出</a></li> | ||
| 52 | </ul> | 34 | </ul> |
| 53 | </li> | 35 | </li> |
| 54 | <!--<li id="Hui-msg"> <a href="#" title="消息"><span class="badge badge-danger">1</span><i class="Hui-iconfont" style="font-size:18px"></i></a> </li> | 36 | <!--<li id="Hui-msg"> <a href="#" title="消息"><span class="badge badge-danger">1</span><i class="Hui-iconfont" style="font-size:18px"></i></a> </li> | ... | ... |
| ... | @@ -4,33 +4,28 @@ $this->load->view('common/header', array('styles' => array( | ... | @@ -4,33 +4,28 @@ $this->load->view('common/header', array('styles' => array( |
| 4 | )); | 4 | )); |
| 5 | ?> | 5 | ?> |
| 6 | 6 | ||
| 7 | <body xmlns="http://www.w3.org/1999/html"> | 7 | <body style="hegiht:100%"> |
| 8 | <div class="login_box"> | 8 | <div class="login"> |
| 9 | <div class="login"> | 9 | <div class="bai_img"> |
| 10 | <div class="login_logo"> | 10 | <div class="container"> |
| 11 | <img src="/resource/logo.png"> | 11 | <img src="/resource/logo_icon.png" class="l"/> |
| 12 | </div> | 12 | </div> |
| 13 | <div class="login_name"> | 13 | <div class="login_box r"> |
| 14 | <p>后台管理系统</p> | 14 | <div class="input"> |
| 15 | <label>账户</label> | ||
| 16 | <input name="username" type="text" class="input-text"/> | ||
| 17 | <img src="/resource/user_icon.png" /> | ||
| 15 | </div> | 18 | </div> |
| 16 | <form action="login" id="edit"> | 19 | <div class="input"> |
| 17 | <input name="username" type="text" placeholder="用户名"> | 20 | <label>密码</label> |
| 18 | <input name="password" type="password" placeholder="密码"> | 21 | <input name="username" type="password" class="input-text"/> |
| 19 | </form> | 22 | <img src="/resource/password_icon.png" /> |
| 20 | <!-- <input value="登录" type="submit">--> | 23 | </div> |
| 21 | <button type="button" style="width: 100%" class="btn btn-primary full-width m-b btn-xs" onclick="save()">登录 | 24 | <button type="button" class="btn login_btn" onclick="save()">登陆</button> |
| 22 | </button> | ||
| 23 | |||
| 24 | |||
| 25 | </div> | 25 | </div> |
| 26 | <div class="copyright"> | ||
| 27 | 版权所有©2018 杭州XX网络有限公司 | ||
| 28 | <br/> | ||
| 29 | (推荐IE10以上浏览器或谷歌浏览器或firefox浏览器, 获得更快响应速度) | ||
| 30 | </div> | 26 | </div> |
| 31 | </div> | 27 | </div> |
| 32 | 28 | ||
| 33 | |||
| 34 | <?php $this->load->view('common/footer'); ?> | 29 | <?php $this->load->view('common/footer'); ?> |
| 35 | <script> | 30 | <script> |
| 36 | if (window != top) { // 判断当前的window对象是否是top对象 | 31 | if (window != top) { // 判断当前的window对象是否是top对象 |
| ... | @@ -57,7 +52,6 @@ $this->load->view('common/header', array('styles' => array( | ... | @@ -57,7 +52,6 @@ $this->load->view('common/header', array('styles' => array( |
| 57 | } else { | 52 | } else { |
| 58 | layer.msg('操作成功'); | 53 | layer.msg('操作成功'); |
| 59 | // $.session.set('user_id', data['id']); | 54 | // $.session.set('user_id', data['id']); |
| 60 | window.parent.reload(); | ||
| 61 | layer_close(); | 55 | layer_close(); |
| 62 | } | 56 | } |
| 63 | if (data.code) { | 57 | if (data.code) { | ... | ... |
| 1 | <?php $this->load->view('common/header'); ?> | 1 | <?php $this->load->view('common/header'); ?> |
| 2 | 2 | ||
| 3 | <body> | 3 | <body> |
| 4 | <?php $user = api('/system/user/loginUser') ?> | ||
| 4 | <div class="page-container"> | 5 | <div class="page-container"> |
| 5 | <div class="col-sm-8 form form-horizontal"> | 6 | <div class="col-sm-12 col-md-8 form form-horizontal"> |
| 6 | <div class="row cl"> | 7 | <div class="row cl"> |
| 7 | <label class="form-label col-xs-4 col-sm-3">用户编号</label> | 8 | <label class="form-label col-sm-3">用户编号</label> |
| 8 | <div class="formControls col-xs-3 col-sm-3"> | 9 | <div class="formControls col-sm-4"> |
| 9 | <input type="text" class="input-text" name="" readonly> | 10 | <input type="text" class="input-text" value="<?=$user->id?>" readonly> |
| 10 | </div> | 11 | </div> |
| 11 | </div> | 12 | </div> |
| 12 | <div class="row cl"> | 13 | <div class="row cl"> |
| 13 | <label class="form-label col-xs-4 col-sm-3">用户名</label> | 14 | <label class="form-label col-sm-3">用户名</label> |
| 14 | <div class="formControls col-xs-3 col-sm-3"> | 15 | <div class="formControls col-sm-4"> |
| 15 | <input type="text" class="input-text" name="" readonly> | 16 | <input type="text" class="input-text" value="<?=$user->username?>" readonly> |
| 16 | </div> | 17 | </div> |
| 17 | </div> | 18 | </div> |
| 18 | <div class="row cl"> | 19 | <div class="row cl"> |
| 19 | <label class="form-label col-xs-4 col-sm-3">真实姓名</label> | 20 | <label class="form-label col-sm-3">真实姓名</label> |
| 20 | <div class="formControls col-xs-3 col-sm-3"> | 21 | <div class="formControls col-sm-4"> |
| 21 | <input type="text" class="input-text" name="" readonly> | 22 | <input type="text" class="input-text" value="<?=$user->name?>" readonly> |
| 22 | </div> | 23 | </div> |
| 23 | </div> | 24 | </div> |
| 24 | <div class="row cl"> | 25 | <div class="row cl"> |
| 25 | <label class="form-label col-xs-4 col-sm-3">手机号码</label> | 26 | <label class="form-label col-sm-3">手机号码</label> |
| 26 | <div class="formControls col-xs-3 col-sm-3"> | 27 | <div class="formControls col-sm-4"> |
| 27 | <input type="text" class="input-text" name="" readonly> | 28 | <input type="text" class="input-text" value="<?=$user->phone?>" readonly> |
| 28 | </div> | 29 | </div> |
| 29 | </div> | 30 | </div> |
| 30 | <div class="row cl"> | 31 | <div class="row cl"> |
| 31 | <label class="form-label col-xs-4 col-sm-3">职位</label> | 32 | <label class="form-label col-sm-3">职位</label> |
| 32 | <div class="formControls col-xs-3 col-sm-3"> | 33 | <div class="formControls col-sm-4"> |
| 33 | <input type="text" class="input-text" name="" readonly> | 34 | <input type="text" class="input-text" value="无后台字段" readonly> |
| 34 | </div> | 35 | </div> |
| 35 | </div> | 36 | </div> |
| 36 | <div class="row cl"> | 37 | <div class="row cl"> |
| 37 | <label class="form-label col-xs-4 col-sm-3">部门</label> | 38 | <label class="form-label col-sm-3">部门</label> |
| 38 | <div class="formControls col-xs-3 col-sm-3"> | 39 | <div class="formControls col-sm-4"> |
| 39 | <input type="text" class="input-text" name="" readonly> | 40 | <input type="text" class="input-text" value="<?=$user->department->name?>" readonly> |
| 40 | </div> | 41 | </div> |
| 41 | </div> | 42 | </div> |
| 42 | <div class="row cl"> | 43 | <div class="row cl"> |
| 43 | <label class="form-label col-xs-4 col-sm-3">状态</label> | 44 | <label class="form-label col-sm-3">状态</label> |
| 44 | <div class="formControls col-xs-3 col-sm-3"> | 45 | <div class="formControls col-sm-4"> |
| 45 | <input type="text" class="input-text" name="" readonly> | 46 | <input type="text" class="input-text" value="<?=$user->status == 1?'正常':'冻结'?>" readonly> |
| 46 | </div> | 47 | </div> |
| 47 | </div> | 48 | </div> |
| 48 | <div class="row cl"> | 49 | <div class="row cl"> |
| 49 | <label class="form-label col-xs-4 col-sm-3">添加时间</label> | 50 | <label class="form-label col-sm-3">添加时间</label> |
| 50 | <div class="formControls col-xs-3 col-sm-3"> | 51 | <div class="formControls col-sm-4"> |
| 51 | <input type="text" class="input-text" name="" readonly> | 52 | <input type="text" class="input-text" value="<?=$user->createTime?>" readonly> |
| 52 | </div> | 53 | </div> |
| 53 | </div> | 54 | </div> |
| 54 | <div class="row cl"> | 55 | <div class="row cl"> |
| 55 | <label class="form-label col-xs-4 col-sm-3">添加人</label> | 56 | <label class="form-label col-sm-3">添加人</label> |
| 56 | <div class="formControls col-xs-3 col-sm-3"> | 57 | <div class="formControls col-sm-4"> |
| 57 | <input type="text" class="input-text" name="tel" readonly> | 58 | <input type="text" class="input-text" value="<?=$user->createUserName?>" readonly> |
| 58 | </div> | 59 | </div> |
| 59 | </div> | 60 | </div> |
| 60 | <div class="row cl"> | 61 | <div class="row cl"> |
| 61 | <label class="form-label col-xs-4 col-sm-3">登入密码</label> | 62 | <label class="form-label col-sm-3">登入密码</label> |
| 62 | <div class="formControls col-xs-1 col-sm-3"> | 63 | <div class="formControls col-sm-4"> |
| 63 | <input type="text" class="input-text" name="" readonly> | 64 | <input type="text" class="input-text" value="" readonly> |
| 64 | </div> | 65 | </div> |
| 65 | <div class="formControls col-xs-1 col-sm-3"> | 66 | <div class="formControls col-sm-3"> |
| 66 | <button class="btn btn-primary" onclick="reset()">重置密码</button> | 67 | <button class="btn btn-primary" onclick="reset()">重置密码</button> |
| 67 | </div> | 68 | </div> |
| 68 | </div> | 69 | </div> |
| 69 | </div> | 70 | </div> |
| 70 | 71 | ||
| 71 | <div class="col-sm-4"> | 72 | <div class="col-sm-12 col-md-4"> |
| 72 | <p>权限地图</p> | 73 | <p>权限地图</p> |
| 73 | <ul id="tree" class="ztree"></ul> | 74 | <ul id="tree" class="ztree"></ul> |
| 74 | </div> | 75 | </div> | ... | ... |
| ... | @@ -62,18 +62,6 @@ $this->load->view('common/footer'); | ... | @@ -62,18 +62,6 @@ $this->load->view('common/footer'); |
| 62 | } | 62 | } |
| 63 | });*/ | 63 | });*/ |
| 64 | }); | 64 | }); |
| 65 | /*个人信息*/ | ||
| 66 | function myselfinfo(){ | ||
| 67 | layer.open({ | ||
| 68 | type: 1, | ||
| 69 | area: ['300px','200px'], | ||
| 70 | fix: false, //不固定 | ||
| 71 | maxmin: true, | ||
| 72 | shade:0.4, | ||
| 73 | title: '查看信息', | ||
| 74 | content: '<div>管理员信息</div>' | ||
| 75 | }); | ||
| 76 | } | ||
| 77 | 65 | ||
| 78 | /*资讯-添加*/ | 66 | /*资讯-添加*/ |
| 79 | function article_add(title,url){ | 67 | function article_add(title,url){ | ... | ... |
| ... | @@ -57,18 +57,6 @@ $this->load->view('common/footer'); | ... | @@ -57,18 +57,6 @@ $this->load->view('common/footer'); |
| 57 | } | 57 | } |
| 58 | });*/ | 58 | });*/ |
| 59 | }); | 59 | }); |
| 60 | /*个人信息*/ | ||
| 61 | function myselfinfo(){ | ||
| 62 | layer.open({ | ||
| 63 | type: 1, | ||
| 64 | area: ['300px','200px'], | ||
| 65 | fix: false, //不固定 | ||
| 66 | maxmin: true, | ||
| 67 | shade:0.4, | ||
| 68 | title: '查看信息', | ||
| 69 | content: '<div>管理员信息</div>' | ||
| 70 | }); | ||
| 71 | } | ||
| 72 | 60 | ||
| 73 | /*资讯-添加*/ | 61 | /*资讯-添加*/ |
| 74 | function article_add(title,url){ | 62 | function article_add(title,url){ | ... | ... |
| ... | @@ -50,69 +50,6 @@ $this->load->view('common/footer'); | ... | @@ -50,69 +50,6 @@ $this->load->view('common/footer'); |
| 50 | ?> | 50 | ?> |
| 51 | <!--请在下方写此页面业务相关的脚本--> | 51 | <!--请在下方写此页面业务相关的脚本--> |
| 52 | <script type="text/javascript" src="/resource/lib/jquery.contextmenu/jquery.contextmenu.r2.js"></script> | 52 | <script type="text/javascript" src="/resource/lib/jquery.contextmenu/jquery.contextmenu.r2.js"></script> |
| 53 | <script type="text/javascript"> | ||
| 54 | $(function(){ | ||
| 55 | /*$("#min_title_list li").contextMenu('Huiadminmenu', { | ||
| 56 | bindings: { | ||
| 57 | 'closethis': function(t) { | ||
| 58 | console.log(t); | ||
| 59 | if(t.find("i")){ | ||
| 60 | t.find("i").trigger("click"); | ||
| 61 | } | ||
| 62 | }, | ||
| 63 | 'closeall': function(t) { | ||
| 64 | alert('Trigger was '+t.id+'\nAction was Email'); | ||
| 65 | }, | ||
| 66 | } | ||
| 67 | });*/ | ||
| 68 | }); | ||
| 69 | /*个人信息*/ | ||
| 70 | function myselfinfo(){ | ||
| 71 | layer.open({ | ||
| 72 | type: 1, | ||
| 73 | area: ['300px','200px'], | ||
| 74 | fix: false, //不固定 | ||
| 75 | maxmin: true, | ||
| 76 | shade:0.4, | ||
| 77 | title: '查看信息', | ||
| 78 | content: '<div>管理员信息</div>' | ||
| 79 | }); | ||
| 80 | } | ||
| 81 | |||
| 82 | /*资讯-添加*/ | ||
| 83 | function article_add(title,url){ | ||
| 84 | var index = layer.open({ | ||
| 85 | type: 2, | ||
| 86 | title: title, | ||
| 87 | content: url | ||
| 88 | }); | ||
| 89 | layer.full(index); | ||
| 90 | } | ||
| 91 | /*图片-添加*/ | ||
| 92 | function picture_add(title,url){ | ||
| 93 | var index = layer.open({ | ||
| 94 | type: 2, | ||
| 95 | title: title, | ||
| 96 | content: url | ||
| 97 | }); | ||
| 98 | layer.full(index); | ||
| 99 | } | ||
| 100 | /*产品-添加*/ | ||
| 101 | function product_add(title,url){ | ||
| 102 | var index = layer.open({ | ||
| 103 | type: 2, | ||
| 104 | title: title, | ||
| 105 | content: url | ||
| 106 | }); | ||
| 107 | layer.full(index); | ||
| 108 | } | ||
| 109 | /*用户-添加*/ | ||
| 110 | function member_add(title,url,w,h){ | ||
| 111 | layer_show(title,url,w,h); | ||
| 112 | } | ||
| 113 | |||
| 114 | |||
| 115 | </script> | ||
| 116 | 53 | ||
| 117 | </body> | 54 | </body> |
| 118 | </html> | 55 | </html> | ... | ... |
| ... | @@ -128,69 +128,6 @@ $this->load->view('common/footer'); | ... | @@ -128,69 +128,6 @@ $this->load->view('common/footer'); |
| 128 | ?> | 128 | ?> |
| 129 | <!--请在下方写此页面业务相关的脚本--> | 129 | <!--请在下方写此页面业务相关的脚本--> |
| 130 | <script type="text/javascript" src="/resource/lib/jquery.contextmenu/jquery.contextmenu.r2.js"></script> | 130 | <script type="text/javascript" src="/resource/lib/jquery.contextmenu/jquery.contextmenu.r2.js"></script> |
| 131 | <script type="text/javascript"> | ||
| 132 | $(function(){ | ||
| 133 | /*$("#min_title_list li").contextMenu('Huiadminmenu', { | ||
| 134 | bindings: { | ||
| 135 | 'closethis': function(t) { | ||
| 136 | console.log(t); | ||
| 137 | if(t.find("i")){ | ||
| 138 | t.find("i").trigger("click"); | ||
| 139 | } | ||
| 140 | }, | ||
| 141 | 'closeall': function(t) { | ||
| 142 | alert('Trigger was '+t.id+'\nAction was Email'); | ||
| 143 | }, | ||
| 144 | } | ||
| 145 | });*/ | ||
| 146 | }); | ||
| 147 | /*个人信息*/ | ||
| 148 | function myselfinfo(){ | ||
| 149 | layer.open({ | ||
| 150 | type: 1, | ||
| 151 | area: ['300px','200px'], | ||
| 152 | fix: false, //不固定 | ||
| 153 | maxmin: true, | ||
| 154 | shade:0.4, | ||
| 155 | title: '查看信息', | ||
| 156 | content: '<div>管理员信息</div>' | ||
| 157 | }); | ||
| 158 | } | ||
| 159 | |||
| 160 | /*资讯-添加*/ | ||
| 161 | function article_add(title,url){ | ||
| 162 | var index = layer.open({ | ||
| 163 | type: 2, | ||
| 164 | title: title, | ||
| 165 | content: url | ||
| 166 | }); | ||
| 167 | layer.full(index); | ||
| 168 | } | ||
| 169 | /*图片-添加*/ | ||
| 170 | function picture_add(title,url){ | ||
| 171 | var index = layer.open({ | ||
| 172 | type: 2, | ||
| 173 | title: title, | ||
| 174 | content: url | ||
| 175 | }); | ||
| 176 | layer.full(index); | ||
| 177 | } | ||
| 178 | /*产品-添加*/ | ||
| 179 | function product_add(title,url){ | ||
| 180 | var index = layer.open({ | ||
| 181 | type: 2, | ||
| 182 | title: title, | ||
| 183 | content: url | ||
| 184 | }); | ||
| 185 | layer.full(index); | ||
| 186 | } | ||
| 187 | /*用户-添加*/ | ||
| 188 | function member_add(title,url,w,h){ | ||
| 189 | layer_show(title,url,w,h); | ||
| 190 | } | ||
| 191 | |||
| 192 | |||
| 193 | </script> | ||
| 194 | 131 | ||
| 195 | </body> | 132 | </body> |
| 196 | </html> | 133 | </html> | ... | ... |
| ... | @@ -41,69 +41,6 @@ $this->load->view('common/footer'); | ... | @@ -41,69 +41,6 @@ $this->load->view('common/footer'); |
| 41 | ?> | 41 | ?> |
| 42 | <!--请在下方写此页面业务相关的脚本--> | 42 | <!--请在下方写此页面业务相关的脚本--> |
| 43 | <script type="text/javascript" src="/resource/lib/jquery.contextmenu/jquery.contextmenu.r2.js"></script> | 43 | <script type="text/javascript" src="/resource/lib/jquery.contextmenu/jquery.contextmenu.r2.js"></script> |
| 44 | <script type="text/javascript"> | ||
| 45 | $(function(){ | ||
| 46 | /*$("#min_title_list li").contextMenu('Huiadminmenu', { | ||
| 47 | bindings: { | ||
| 48 | 'closethis': function(t) { | ||
| 49 | console.log(t); | ||
| 50 | if(t.find("i")){ | ||
| 51 | t.find("i").trigger("click"); | ||
| 52 | } | ||
| 53 | }, | ||
| 54 | 'closeall': function(t) { | ||
| 55 | alert('Trigger was '+t.id+'\nAction was Email'); | ||
| 56 | }, | ||
| 57 | } | ||
| 58 | });*/ | ||
| 59 | }); | ||
| 60 | /*个人信息*/ | ||
| 61 | function myselfinfo(){ | ||
| 62 | layer.open({ | ||
| 63 | type: 1, | ||
| 64 | area: ['300px','200px'], | ||
| 65 | fix: false, //不固定 | ||
| 66 | maxmin: true, | ||
| 67 | shade:0.4, | ||
| 68 | title: '查看信息', | ||
| 69 | content: '<div>管理员信息</div>' | ||
| 70 | }); | ||
| 71 | } | ||
| 72 | |||
| 73 | /*资讯-添加*/ | ||
| 74 | function article_add(title,url){ | ||
| 75 | var index = layer.open({ | ||
| 76 | type: 2, | ||
| 77 | title: title, | ||
| 78 | content: url | ||
| 79 | }); | ||
| 80 | layer.full(index); | ||
| 81 | } | ||
| 82 | /*图片-添加*/ | ||
| 83 | function picture_add(title,url){ | ||
| 84 | var index = layer.open({ | ||
| 85 | type: 2, | ||
| 86 | title: title, | ||
| 87 | content: url | ||
| 88 | }); | ||
| 89 | layer.full(index); | ||
| 90 | } | ||
| 91 | /*产品-添加*/ | ||
| 92 | function product_add(title,url){ | ||
| 93 | var index = layer.open({ | ||
| 94 | type: 2, | ||
| 95 | title: title, | ||
| 96 | content: url | ||
| 97 | }); | ||
| 98 | layer.full(index); | ||
| 99 | } | ||
| 100 | /*用户-添加*/ | ||
| 101 | function member_add(title,url,w,h){ | ||
| 102 | layer_show(title,url,w,h); | ||
| 103 | } | ||
| 104 | |||
| 105 | |||
| 106 | </script> | ||
| 107 | 44 | ||
| 108 | </body> | 45 | </body> |
| 109 | </html> | 46 | </html> | ... | ... |
| ... | @@ -39,69 +39,6 @@ $this->load->view('common/footer'); | ... | @@ -39,69 +39,6 @@ $this->load->view('common/footer'); |
| 39 | ?> | 39 | ?> |
| 40 | <!--请在下方写此页面业务相关的脚本--> | 40 | <!--请在下方写此页面业务相关的脚本--> |
| 41 | <script type="text/javascript" src="/resource/lib/jquery.contextmenu/jquery.contextmenu.r2.js"></script> | 41 | <script type="text/javascript" src="/resource/lib/jquery.contextmenu/jquery.contextmenu.r2.js"></script> |
| 42 | <script type="text/javascript"> | ||
| 43 | $(function(){ | ||
| 44 | /*$("#min_title_list li").contextMenu('Huiadminmenu', { | ||
| 45 | bindings: { | ||
| 46 | 'closethis': function(t) { | ||
| 47 | console.log(t); | ||
| 48 | if(t.find("i")){ | ||
| 49 | t.find("i").trigger("click"); | ||
| 50 | } | ||
| 51 | }, | ||
| 52 | 'closeall': function(t) { | ||
| 53 | alert('Trigger was '+t.id+'\nAction was Email'); | ||
| 54 | }, | ||
| 55 | } | ||
| 56 | });*/ | ||
| 57 | }); | ||
| 58 | /*个人信息*/ | ||
| 59 | function myselfinfo(){ | ||
| 60 | layer.open({ | ||
| 61 | type: 1, | ||
| 62 | area: ['300px','200px'], | ||
| 63 | fix: false, //不固定 | ||
| 64 | maxmin: true, | ||
| 65 | shade:0.4, | ||
| 66 | title: '查看信息', | ||
| 67 | content: '<div>管理员信息</div>' | ||
| 68 | }); | ||
| 69 | } | ||
| 70 | |||
| 71 | /*资讯-添加*/ | ||
| 72 | function article_add(title,url){ | ||
| 73 | var index = layer.open({ | ||
| 74 | type: 2, | ||
| 75 | title: title, | ||
| 76 | content: url | ||
| 77 | }); | ||
| 78 | layer.full(index); | ||
| 79 | } | ||
| 80 | /*图片-添加*/ | ||
| 81 | function picture_add(title,url){ | ||
| 82 | var index = layer.open({ | ||
| 83 | type: 2, | ||
| 84 | title: title, | ||
| 85 | content: url | ||
| 86 | }); | ||
| 87 | layer.full(index); | ||
| 88 | } | ||
| 89 | /*产品-添加*/ | ||
| 90 | function product_add(title,url){ | ||
| 91 | var index = layer.open({ | ||
| 92 | type: 2, | ||
| 93 | title: title, | ||
| 94 | content: url | ||
| 95 | }); | ||
| 96 | layer.full(index); | ||
| 97 | } | ||
| 98 | /*用户-添加*/ | ||
| 99 | function member_add(title,url,w,h){ | ||
| 100 | layer_show(title,url,w,h); | ||
| 101 | } | ||
| 102 | |||
| 103 | |||
| 104 | </script> | ||
| 105 | 42 | ||
| 106 | </body> | 43 | </body> |
| 107 | </html> | 44 | </html> | ... | ... |
| ... | @@ -35,69 +35,6 @@ | ... | @@ -35,69 +35,6 @@ |
| 35 | ?> | 35 | ?> |
| 36 | <!--请在下方写此页面业务相关的脚本--> | 36 | <!--请在下方写此页面业务相关的脚本--> |
| 37 | <script type="text/javascript" src="/resource/lib/jquery.contextmenu/jquery.contextmenu.r2.js"></script> | 37 | <script type="text/javascript" src="/resource/lib/jquery.contextmenu/jquery.contextmenu.r2.js"></script> |
| 38 | <script type="text/javascript"> | ||
| 39 | $(function(){ | ||
| 40 | /*$("#min_title_list li").contextMenu('Huiadminmenu', { | ||
| 41 | bindings: { | ||
| 42 | 'closethis': function(t) { | ||
| 43 | console.log(t); | ||
| 44 | if(t.find("i")){ | ||
| 45 | t.find("i").trigger("click"); | ||
| 46 | } | ||
| 47 | }, | ||
| 48 | 'closeall': function(t) { | ||
| 49 | alert('Trigger was '+t.id+'\nAction was Email'); | ||
| 50 | }, | ||
| 51 | } | ||
| 52 | });*/ | ||
| 53 | }); | ||
| 54 | /*个人信息*/ | ||
| 55 | function myselfinfo(){ | ||
| 56 | layer.open({ | ||
| 57 | type: 1, | ||
| 58 | area: ['300px','200px'], | ||
| 59 | fix: false, //不固定 | ||
| 60 | maxmin: true, | ||
| 61 | shade:0.4, | ||
| 62 | title: '查看信息', | ||
| 63 | content: '<div>管理员信息</div>' | ||
| 64 | }); | ||
| 65 | } | ||
| 66 | |||
| 67 | /*资讯-添加*/ | ||
| 68 | function article_add(title,url){ | ||
| 69 | var index = layer.open({ | ||
| 70 | type: 2, | ||
| 71 | title: title, | ||
| 72 | content: url | ||
| 73 | }); | ||
| 74 | layer.full(index); | ||
| 75 | } | ||
| 76 | /*图片-添加*/ | ||
| 77 | function picture_add(title,url){ | ||
| 78 | var index = layer.open({ | ||
| 79 | type: 2, | ||
| 80 | title: title, | ||
| 81 | content: url | ||
| 82 | }); | ||
| 83 | layer.full(index); | ||
| 84 | } | ||
| 85 | /*产品-添加*/ | ||
| 86 | function product_add(title,url){ | ||
| 87 | var index = layer.open({ | ||
| 88 | type: 2, | ||
| 89 | title: title, | ||
| 90 | content: url | ||
| 91 | }); | ||
| 92 | layer.full(index); | ||
| 93 | } | ||
| 94 | /*用户-添加*/ | ||
| 95 | function member_add(title,url,w,h){ | ||
| 96 | layer_show(title,url,w,h); | ||
| 97 | } | ||
| 98 | |||
| 99 | |||
| 100 | </script> | ||
| 101 | 38 | ||
| 102 | </body> | 39 | </body> |
| 103 | </html> | 40 | </html> | ... | ... |
| ... | @@ -45,69 +45,6 @@ $this->load->view('common/footer'); | ... | @@ -45,69 +45,6 @@ $this->load->view('common/footer'); |
| 45 | ?> | 45 | ?> |
| 46 | <!--请在下方写此页面业务相关的脚本--> | 46 | <!--请在下方写此页面业务相关的脚本--> |
| 47 | <script type="text/javascript" src="/resource/lib/jquery.contextmenu/jquery.contextmenu.r2.js"></script> | 47 | <script type="text/javascript" src="/resource/lib/jquery.contextmenu/jquery.contextmenu.r2.js"></script> |
| 48 | <script type="text/javascript"> | ||
| 49 | $(function(){ | ||
| 50 | /*$("#min_title_list li").contextMenu('Huiadminmenu', { | ||
| 51 | bindings: { | ||
| 52 | 'closethis': function(t) { | ||
| 53 | console.log(t); | ||
| 54 | if(t.find("i")){ | ||
| 55 | t.find("i").trigger("click"); | ||
| 56 | } | ||
| 57 | }, | ||
| 58 | 'closeall': function(t) { | ||
| 59 | alert('Trigger was '+t.id+'\nAction was Email'); | ||
| 60 | }, | ||
| 61 | } | ||
| 62 | });*/ | ||
| 63 | }); | ||
| 64 | /*个人信息*/ | ||
| 65 | function myselfinfo(){ | ||
| 66 | layer.open({ | ||
| 67 | type: 1, | ||
| 68 | area: ['300px','200px'], | ||
| 69 | fix: false, //不固定 | ||
| 70 | maxmin: true, | ||
| 71 | shade:0.4, | ||
| 72 | title: '查看信息', | ||
| 73 | content: '<div>管理员信息</div>' | ||
| 74 | }); | ||
| 75 | } | ||
| 76 | |||
| 77 | /*资讯-添加*/ | ||
| 78 | function article_add(title,url){ | ||
| 79 | var index = layer.open({ | ||
| 80 | type: 2, | ||
| 81 | title: title, | ||
| 82 | content: url | ||
| 83 | }); | ||
| 84 | layer.full(index); | ||
| 85 | } | ||
| 86 | /*图片-添加*/ | ||
| 87 | function picture_add(title,url){ | ||
| 88 | var index = layer.open({ | ||
| 89 | type: 2, | ||
| 90 | title: title, | ||
| 91 | content: url | ||
| 92 | }); | ||
| 93 | layer.full(index); | ||
| 94 | } | ||
| 95 | /*产品-添加*/ | ||
| 96 | function product_add(title,url){ | ||
| 97 | var index = layer.open({ | ||
| 98 | type: 2, | ||
| 99 | title: title, | ||
| 100 | content: url | ||
| 101 | }); | ||
| 102 | layer.full(index); | ||
| 103 | } | ||
| 104 | /*用户-添加*/ | ||
| 105 | function member_add(title,url,w,h){ | ||
| 106 | layer_show(title,url,w,h); | ||
| 107 | } | ||
| 108 | |||
| 109 | |||
| 110 | </script> | ||
| 111 | 48 | ||
| 112 | </body> | 49 | </body> |
| 113 | </html> | 50 | </html> | ... | ... |
| ... | @@ -46,69 +46,6 @@ $this->load->view('common/footer'); | ... | @@ -46,69 +46,6 @@ $this->load->view('common/footer'); |
| 46 | ?> | 46 | ?> |
| 47 | <!--请在下方写此页面业务相关的脚本--> | 47 | <!--请在下方写此页面业务相关的脚本--> |
| 48 | <script type="text/javascript" src="/resource/lib/jquery.contextmenu/jquery.contextmenu.r2.js"></script> | 48 | <script type="text/javascript" src="/resource/lib/jquery.contextmenu/jquery.contextmenu.r2.js"></script> |
| 49 | <script type="text/javascript"> | ||
| 50 | $(function(){ | ||
| 51 | /*$("#min_title_list li").contextMenu('Huiadminmenu', { | ||
| 52 | bindings: { | ||
| 53 | 'closethis': function(t) { | ||
| 54 | console.log(t); | ||
| 55 | if(t.find("i")){ | ||
| 56 | t.find("i").trigger("click"); | ||
| 57 | } | ||
| 58 | }, | ||
| 59 | 'closeall': function(t) { | ||
| 60 | alert('Trigger was '+t.id+'\nAction was Email'); | ||
| 61 | }, | ||
| 62 | } | ||
| 63 | });*/ | ||
| 64 | }); | ||
| 65 | /*个人信息*/ | ||
| 66 | function myselfinfo(){ | ||
| 67 | layer.open({ | ||
| 68 | type: 1, | ||
| 69 | area: ['300px','200px'], | ||
| 70 | fix: false, //不固定 | ||
| 71 | maxmin: true, | ||
| 72 | shade:0.4, | ||
| 73 | title: '查看信息', | ||
| 74 | content: '<div>管理员信息</div>' | ||
| 75 | }); | ||
| 76 | } | ||
| 77 | |||
| 78 | /*资讯-添加*/ | ||
| 79 | function article_add(title,url){ | ||
| 80 | var index = layer.open({ | ||
| 81 | type: 2, | ||
| 82 | title: title, | ||
| 83 | content: url | ||
| 84 | }); | ||
| 85 | layer.full(index); | ||
| 86 | } | ||
| 87 | /*图片-添加*/ | ||
| 88 | function picture_add(title,url){ | ||
| 89 | var index = layer.open({ | ||
| 90 | type: 2, | ||
| 91 | title: title, | ||
| 92 | content: url | ||
| 93 | }); | ||
| 94 | layer.full(index); | ||
| 95 | } | ||
| 96 | /*产品-添加*/ | ||
| 97 | function product_add(title,url){ | ||
| 98 | var index = layer.open({ | ||
| 99 | type: 2, | ||
| 100 | title: title, | ||
| 101 | content: url | ||
| 102 | }); | ||
| 103 | layer.full(index); | ||
| 104 | } | ||
| 105 | /*用户-添加*/ | ||
| 106 | function member_add(title,url,w,h){ | ||
| 107 | layer_show(title,url,w,h); | ||
| 108 | } | ||
| 109 | |||
| 110 | |||
| 111 | </script> | ||
| 112 | 49 | ||
| 113 | </body> | 50 | </body> |
| 114 | </html> | 51 | </html> | ... | ... |
| ... | @@ -37,8 +37,9 @@ | ... | @@ -37,8 +37,9 @@ |
| 37 | 进行面谈, 并就该贷款进行了相应的解释说明. 借款人提供的信息真实有效. 本人对各项信息已经进行了审慎的调查、核实、分析、整理和审定,并对风险情况已进行了完全披露。同时,借款人对本贷款的含义以及相应的法律责任已全部通晓并充分理解。 | 37 | 进行面谈, 并就该贷款进行了相应的解释说明. 借款人提供的信息真实有效. 本人对各项信息已经进行了审慎的调查、核实、分析、整理和审定,并对风险情况已进行了完全披露。同时,借款人对本贷款的含义以及相应的法律责任已全部通晓并充分理解。 |
| 38 | 本人已经对借款人提供材料的真实有效性进行核实, 如果有协助借款人提供伪造材料,歪曲事实,本人愿承担相应的法律后果. | 38 | 本人已经对借款人提供材料的真实有效性进行核实, 如果有协助借款人提供伪造材料,歪曲事实,本人愿承担相应的法律后果. |
| 39 | </div> | 39 | </div> |
| 40 | <?php $user = api('/system/user/loginUser') ?> | ||
| 40 | <div class="col-sm-12"> | 41 | <div class="col-sm-12"> |
| 41 | <span class="r">尽职调查专员:<?=@$dueDiligence->dueDiligenceComprehensiveAssessmentVO->ombudsman?> </span> | 42 | <span class="r">尽职调查专员:<?=@$dueDiligence->dueDiligenceComprehensiveAssessmentVO->ombudsman?:$user->name?> </span> |
| 42 | </div> | 43 | </div> |
| 43 | </div> | 44 | </div> |
| 44 | </div> | 45 | </div> | ... | ... |
| ... | @@ -6,11 +6,11 @@ | ... | @@ -6,11 +6,11 @@ |
| 6 | <div class="row cl"> | 6 | <div class="row cl"> |
| 7 | <div class="form-group col-sm-3 col-md-2"> | 7 | <div class="form-group col-sm-3 col-md-2"> |
| 8 | <label>姓名</label> | 8 | <label>姓名</label> |
| 9 | <input type="text" class="form-control input-text" name="userName" value=""> | 9 | <input type="text" class="form-control input-text" name="userName" value="<?=@$order->clientInfoOutputVO->userName?>"> |
| 10 | </div> | 10 | </div> |
| 11 | <div class="form-group col-sm-3 col-md-2"> | 11 | <div class="form-group col-sm-3 col-md-2"> |
| 12 | <label>身份证</label> | 12 | <label>身份证</label> |
| 13 | <input type="text" class="form-control input-text" name="idNumber"> | 13 | <input type="text" class="form-control input-text" name="idNumber" value="<?=@$order->clientInfoOutputVO->idNumber?>"> |
| 14 | </div> | 14 | </div> |
| 15 | </div> | 15 | </div> |
| 16 | 16 | ||
| ... | @@ -34,7 +34,7 @@ | ... | @@ -34,7 +34,7 @@ |
| 34 | <div class="row cl"> | 34 | <div class="row cl"> |
| 35 | <div class="form-group col-sm-6 col-md-4"> | 35 | <div class="form-group col-sm-6 col-md-4"> |
| 36 | <label>现住地址</label> | 36 | <label>现住地址</label> |
| 37 | <input type="text" class="form-control input-text" name="nowAddress" value=""> | 37 | <input type="text" class="form-control input-text" name="nowAddress" value="<?=@$order->clientInfoInputVO->currentAddress?>"> |
| 38 | </div> | 38 | </div> |
| 39 | <div class="form-group col-sm-2 col-md-1"> | 39 | <div class="form-group col-sm-2 col-md-1"> |
| 40 | <label> </label> | 40 | <label> </label> |
| ... | @@ -49,21 +49,16 @@ | ... | @@ -49,21 +49,16 @@ |
| 49 | </div> | 49 | </div> |
| 50 | 50 | ||
| 51 | <div class="row cl"> | 51 | <div class="row cl"> |
| 52 | <?php $folkHasKnow = api('/dueDiligence/enum/folkHasKnow') ?> | ||
| 52 | <div class="form-group col-sm-6 col-md-4"> | 53 | <div class="form-group col-sm-6 col-md-4"> |
| 53 | <label>家人是否知晓</label> | 54 | <label>家人是否知晓</label> |
| 54 | <div class="info"> | 55 | <div class="info"> |
| 56 | <?php foreach($folkHasKnow as $k => $v) : ?> | ||
| 55 | <div class="live-info"> | 57 | <div class="live-info"> |
| 56 | <input type="radio" name="folkHasKnow" value="1" checked> | 58 | <input type="radio" name="folkHasKnow" value="<?=$k?>" <?=$k == @$dueDiligence->dueDiligenceBasicInformationVO->folkHasKnow?'checked':'' ?>> |
| 57 | <span>知晓且支持</span> | 59 | <span><?=$v?></span> |
| 58 | </div> | ||
| 59 | <div class="live-info"> | ||
| 60 | <input type="radio" name="folkHasKnow" value="0"> | ||
| 61 | <span>不知晓</span> | ||
| 62 | </div> | ||
| 63 | <div class="live-info"> | ||
| 64 | <input type="radio" name="folkHasKnow" value="1"> | ||
| 65 | <span>知晓不支持</span> | ||
| 66 | </div> | 60 | </div> |
| 61 | <?php endforeach ?> | ||
| 67 | <input type="text" name="folkHasKnowRemark" class="form-control input-text" value="" placeholder="备注"> | 62 | <input type="text" name="folkHasKnowRemark" class="form-control input-text" value="" placeholder="备注"> |
| 68 | </div> | 63 | </div> |
| 69 | </div> | 64 | </div> | ... | ... |
resource/bai_img.png
0 → 100644
3.46 KB
resource/bg_img.png
0 → 100644
1.2 MB
resource/frame_img.png
0 → 100644
28 KB
| ... | @@ -2,20 +2,72 @@ | ... | @@ -2,20 +2,72 @@ |
| 2 | /* CSS Document */ | 2 | /* CSS Document */ |
| 3 | 3 | ||
| 4 | * { font: 13px/1.5 '微软雅黑'; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -box-sizing: border-box; padding:0; margin:0; list-style:none; box-sizing: border-box; } | 4 | * { font: 13px/1.5 '微软雅黑'; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -box-sizing: border-box; padding:0; margin:0; list-style:none; box-sizing: border-box; } |
| 5 | body, html { height:100%; overflow:hidden; } | ||
| 6 | body { background:#93defe; background-size: cover; } | ||
| 7 | a { color:#27A9E3; text-decoration:none; cursor:pointer; } | ||
| 8 | img{ border:none;} | ||
| 9 | |||
| 10 | .login_box{ width:1100px; margin:120px auto 0;} | ||
| 11 | .login {height:360px; width:400px; padding:50px; background-color: #ffffff;border-radius:6px;box-sizing: border-box; margin:0 auto; position:relative; margin-top:50px;} | ||
| 12 | .login_logo{ width:120px; height:120px; border:5px solid #93defe;border-radius:100px; background:#fff; text-align:center; line-height:110px; position:absolute; top:-60px; right:140px;} | ||
| 13 | .login_name{ width:100%; float:left; text-align:center; margin-top:20px;} | ||
| 14 | .login_name p{ width:100%; text-align:center; font-size:18px; color:#444; padding:10px 0 20px;} | ||
| 15 | .login_logo img{ width:60px; height:60px;display: inline-block; vertical-align: middle;} | ||
| 16 | input[type=text], input[type=file], input[type=password], input[type=email], select { border: 1px solid #DCDEE0; vertical-align: middle; border-radius: 3px; height: 50px; padding: 0px 16px; font-size: 14px; color: #555555; outline:none; width:100%;margin-bottom: 15px;line-height:50px; color:#888;} | ||
| 17 | input[type=text]:focus, input[type=file]:focus, input[type=password]:focus, input[type=email]:focus, select:focus { border: 1px solid #27A9E3; } | ||
| 18 | input[type=submit], input[type=button] { display: inline-block; vertical-align: middle; padding: 12px 24px; margin: 0px; font-size:16px; line-height: 24px; text-align: center; white-space: nowrap; vertical-align: middle; cursor: pointer; color: #ffffff; background-color: #27A9E3; border-radius: 3px; border: none; -webkit-appearance: none; outline:none; width:100%; } | ||
| 19 | .copyright { font-size:14px; color:#fff; display:block;width:100%; float:left; text-align:center; margin-top:60px;} | ||
| 20 | |||
| 21 | #password_text{border: 1px solid #DCDEE0; vertical-align: middle; border-radius: 3px; height: 50px; padding: 0px 16px; font-size: 14px; color: #888; outline:none; width:100%;margin-bottom: 15px;display: block; line-height:50px;} | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 5 | html, body { | ||
| 6 | height: 100%; | ||
| 7 | } | ||
| 8 | |||
| 9 | .bai_img { | ||
| 10 | display: flex; | ||
| 11 | flex-direction: column; | ||
| 12 | justify-content: center; | ||
| 13 | |||
| 14 | background: url('/resource/bai_img.png') no-repeat; | ||
| 15 | height: 250px; | ||
| 16 | } | ||
| 17 | |||
| 18 | body { | ||
| 19 | background: url('/resource/bg_img.png') no-repeat; | ||
| 20 | background-size: cover; | ||
| 21 | } | ||
| 22 | |||
| 23 | .login { | ||
| 24 | display: flex; | ||
| 25 | flex-direction: column; | ||
| 26 | justify-content: center; | ||
| 27 | |||
| 28 | height: 100%; | ||
| 29 | width: 100%; | ||
| 30 | } | ||
| 31 | |||
| 32 | .login_box { | ||
| 33 | background: url('/resource/frame_img.png') no-repeat; | ||
| 34 | height: 385px; | ||
| 35 | width: 583px; | ||
| 36 | position: absolute; | ||
| 37 | right: calc(20% - 50px); | ||
| 38 | padding: 30px; | ||
| 39 | } | ||
| 40 | |||
| 41 | .input { | ||
| 42 | padding-top: 48px; | ||
| 43 | padding-left: 68px; | ||
| 44 | } | ||
| 45 | |||
| 46 | .input label { | ||
| 47 | font-size: 20px; | ||
| 48 | margin-right: 19px; | ||
| 49 | padding-top: 2px; | ||
| 50 | } | ||
| 51 | |||
| 52 | .input input { | ||
| 53 | width: 320px; | ||
| 54 | height: 39px; | ||
| 55 | font-size: 14px; | ||
| 56 | } | ||
| 57 | |||
| 58 | .input img { | ||
| 59 | position: absolute; | ||
| 60 | margin-left: -25px; | ||
| 61 | margin-top: 10px; | ||
| 62 | } | ||
| 63 | |||
| 64 | .login_btn { | ||
| 65 | margin-left: 131px; | ||
| 66 | width: 320px; | ||
| 67 | height: 46px; | ||
| 68 | margin-top: 60px; | ||
| 69 | background-color: #3366cc; | ||
| 70 | color: white; | ||
| 71 | font-size: 16px; | ||
| 72 | border-radius: 5px; | ||
| 73 | } | ... | ... |
resource/logo_icon.png
0 → 100644
14.2 KB
resource/password_icon.png
0 → 100644
1.22 KB
resource/user_icon.png
0 → 100644
1.26 KB
-
Please register or sign in to post a comment