2c615417 by Zelig

客户管理

1 parent 95a2d31c
......@@ -11,5 +11,27 @@ class User extends CI_Controller {
$this->load->view('user/index');
}
public function info($state = null)
{
switch ($state) {
case '1':
$this->load->view('user/资料清单');
break;
case '2':
$this->load->view('user/基本信息');
break;
case '3':
$this->load->view('user/人脉圈');
break;
case '4':
$this->load->view('user/风险识别');
break;
case '5':
$this->load->view('user/交易记录');
break;
default:
$this->load->view('user/资料清单');
break;
}
}
}
......
<aside class="Hui-aside">
<div class="menu_dropdown bk_2">
<dl id="menu-article">
<dt><i class="Hui-iconfont">&#xe616;</i> 用户管理<i class="Hui-iconfont menu_dropdown-arrow">&#xe6d5;</i></dt>
<dd>
<ul>
<li><a data-href="article-list.html" data-title="资讯管理" href="javascript:void(0)">资讯管理</a></li>
<li><a data-href="<?=site_url('/user/index')?>" data-title="用户管理" href="javascript:void(0)"><i class="Hui-iconfont">&#xe600;</i>&nbsp;用户管理</a></li>
</ul>
</dd>
</dl>
<dl id="menu-system">
<dt><i class="Hui-iconfont">&#xe62e;</i> 系统管理<i class="Hui-iconfont menu_dropdown-arrow">&#xe6d5;</i></dt>
<dd>
<ul>
<li><a data-href="system-data.html" data-title="数据字典" href="javascript:void(0)">数据字典</a></li>
<li><a data-href="system-shielding.html" data-title="屏蔽词" href="javascript:void(0)">屏蔽词</a></li>
<li><a data-href="system-log.html" data-title="系统日志" href="javascript:void(0)">系统日志</a></li>
</ul>
</dd>
</dl>
</div>
</aside>
......
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class User extends CI_Controller {
/**
* 控制台默认页面
*/
public function index()
{
$this->load->view('user/index');
}
public function info($state = null)
{
switch ($state) {
case '1':
$this->load->view('user/资料清单');
break;
case '2':
$this->load->view('user/基本信息');
break;
case '3':
$this->load->view('user/人脉圈');
break;
case '4':
$this->load->view('user/风险识别');
break;
case '5':
$this->load->view('user/交易记录');
break;
default:
$this->load->view('user/资料清单');
break;
}
}
}
<div class="cl pd-5 bg-1">
<span class="l">
<button class="btn btn-primary radius" onclick="loadIframe('<?=site_url('/user/info/1');?>', '资料清单');">
<i class="Hui-iconfont">&#xe636;</i> 资料清单
</button>
<button class="btn btn-primary radius" onclick="loadIframe('<?=site_url('/user/info/2');?>', '基本信息');">
<i class="Hui-iconfont">&#xe60d;</i> 基本信息
</button>
<button class="btn btn-primary radius" onclick="loadIframe('<?=site_url('/user/info/3');?>', '人脉圈');">
<i class="Hui-iconfont">&#xe611;</i> 人脉圈
</button>
<button class="btn btn-primary radius" onclick="loadIframe('<?=site_url('/user/info/4');?>', '风险识别');">
<i class="Hui-iconfont">&#xe628;</i> 风险识别
</button>
<button class="btn btn-primary radius" onclick="loadIframe('<?=site_url('/user/info/5');?>', '交易记录');">
<i class="Hui-iconfont">&#xe639;</i> 交易记录
</button>
</span>
</div>
<div class="cl pd-5">
<table class="table table-border table-bg">
<tbody class="text-c">
<tr>
<td><i class="Hui-iconfont">&#xe60d;</i> 王小赞</td>
<td></td>
<td>20岁</td>
<td>博士</td>
<td>已婚</td>
<td>无子女</td>
<td><i class="Hui-iconfont">&#xe602;</i> 333333333333333333</td>
</tr>
</tbody>
</table>
</div>
<?php
/**
* Created by PhpStorm.
* User: mac01
* Date: 2018/3/11
* Time: 下午3:29
*/
\ No newline at end of file
<?php $this->load->view('common/header'); ?>
<body>
<div class="page-container">
<div class="body mt-20">
<table class="table table-border table-bordered table-bg" id="table">
<thead class="text-c">
<tr>
<th width="68px">操作</th>
<th>客户编号</th>
<th>姓名</th>
<th>身份证</th>
<th>手机号</th>
<th>录入时间</th>
</tr>
</thead>
<tbody class="text-c">
<tr>
<td>
<span class="dropDown dropDown_hover">
<button class="btn radius size-M">请选择 <i class="Hui-iconfont">&#xe6d5;</i></button>
<ul class="dropDown-menu menu radius box-shadow">
<li><a href="javascript:;" onclick="creatIframe('/user/info', '查看详细')">查看详细</a></li>
</ul>
</span>
</td>
<td>1001</td>
<td>张三</td>
<td>333333333333333333</td>
<td>13333333333</td>
<td>2018-01-01 00:00:00</td>
</tr>
<tr>
<td>
<span class="dropDown dropDown_hover">
<button class="btn radius size-M">请选择 <i class="Hui-iconfont">&#xe6d5;</i></button>
<ul class="dropDown-menu menu radius box-shadow">
<li><a href="javascript:;" onclick="creatIframe('/user/info', '查看详细')">查看详细</a></li>
</ul>
</span>
</td>
<td>1002</td>
<td>张三</td>
<td>333333333333333333</td>
<td>13333333333</td>
<td>2018-01-01 00:00:00</td>
</tr>
</tbody>
</table>
</div>
</div>
<?php $this->load->view('common/footer'); ?>
</body>
<html>
......
<?php $this->load->view('common/header'); ?>
<body>
<?php $this->load->view('user/header'); ?>
<div id="tab" class="HuiTab">
<div class="tabBar clearfix" style="background-color:#e8e8e8">
<span>平台</span>
<span>其他</span>
</div>
<div class="tabCon">
<table class="table table-border table-bordered table-bg">
<thead class="text-c">
<tr>
<th>订单编号</th>
<th>申请人</th>
<th>身份证</th>
<th>手机号</th>
<th>进件时间</th>
<th>网点</th>
<th>产品名称</th>
<th>申请金额</th>
<th>审批金额</th>
<th>客户经理</th>
<th>流程节点</th>
<th>流转时间</th>
<th>处理人</th>
</tr>
</thead>
<tbody class="text-c">
<tr>
<td>1001</td>
<td>张三</td>
<td>333333333333333333</td>
<td>13333333333</td>
<td>2018-01-01 00:00:00</td>
<td>下沙网点</td>
<td>融易购</td>
<td>100.00</td>
<td>100.00</td>
<td>李四</td>
<td class="c-primary">预审</td>
<td>2018-01-02 00:00:00</td>
<td>小明</td>
</tr>
<tr>
<td>1001</td>
<td>张三</td>
<td>333333333333333333</td>
<td>13333333333</td>
<td>2018-01-01 00:00:00</td>
<td>下沙网点</td>
<td>融易购</td>
<td>100.00</td>
<td>100.00</td>
<td>李四</td>
<td class="c-999">完成</td>
<td>2018-01-02 00:00:00</td>
<td>小明</td>
</tr>
</tbody>
</table>
</div>
<div class="tabCon">其他</div>
</div>
<?php $this->load->view('common/footer'); ?>
<script>
function getQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]); return null;
}
var index = getQueryString('tab');
$("#tab").Huitab({index: index});
</script>
</body>
</html>
<?php $this->load->view('common/header'); ?>
<body>
<?php $this->load->view('user/header'); ?>
<?php $this->load->view('work/申请信息/联系人信息'); ?>
<?php $this->load->view('common/footer'); ?>
<body>
</html>
<?php $this->load->view('common/header'); ?>
<body>
<?php $this->load->view('user/header'); ?>
<?php $this->load->view('work/申请信息/借款人信息'); ?>
<?php $this->load->view('work/申请信息/单位信息'); ?>
<?php $this->load->view('common/footer'); ?>
<body>
</html>
<?php $this->load->view('common/header'); ?>
<body>
<?php $this->load->view('user/header'); ?>
<div id="tab" class="HuiTab">
<div class="tabBar clearfix" style="background-color:#e8e8e8">
<span>申请信息</span>
<span>尽调报告</span>
<span>信用报告</span>
<span>电核结果</span>
<span>网查筛查(图片)</span>
<span>附件清单(图片)</span>
</div>
<div class="tabCon">
<?php $this->load->view('work/申请信息/借款人信息'); ?>
<?php $this->load->view('work/申请信息/单位信息'); ?>
<?php $this->load->view('work/申请信息/联系人信息'); ?>
</div>
<div class="tabCon">
<?php $this->load->view('work/尽调报告/打工'); ?>
</div>
<div class="tabCon">
<?php $this->load->view('work/审批/信用报告'); ?>
</div>
<div class="tabCon">
<?php $this->load->view('work/审批/电核结果'); ?>
</div>
<div class="tabCon">
<?php $this->load->view('work/图片上传'); ?>
</div>
<div class="tabCon">附件清单(图片)</div>
</div>
<?php $this->load->view('common/footer'); ?>
<script>
function getQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]); return null;
}
var index = getQueryString('tab');
$("#tab").Huitab({index: index});
</script>
</body>
</html>
<?php $this->load->view('common/header'); ?>
<body>
<?php $this->load->view('user/header'); ?>
<div id="tab" class="HuiTab">
<div class="tabBar clearfix" style="background-color:#e8e8e8">
<span>本平台起诉</span>
<span>数据交叉验证</span>
<span>多头借贷</span>
<span>黑名单</span>
</div>
<div class="tabCon">
<table class="table table-border table-bordered table-bg">
<thead class="text-c">
<tr>
<th width="68px">序号</th>
<th>订单编号</th>
<th>起诉日期</th>
<th>发起者</th>
<th>移交资料者</th>
<th>确认者</th>
<th>备注</th>
</tr>
</thead>
<tbody class="text-c">
<tr>
<td>1</td>
<td>12321321</td>
<td>2017-01-01</td>
<td>张三</td>
<td>李四</td>
<td>王五</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="tabCon">数据交叉验证</div>
<div class="tabCon">多头借贷</div>
<div class="tabCon">黑名单</div>
</div>
<?php $this->load->view('common/footer'); ?>
<script>
function getQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]); return null;
}
var index = getQueryString('tab');
$("#tab").Huitab({index: index});
</script>
</body>
</html>
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!