Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
杨建斌
/
page
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
1
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
ef21ff53
authored
2018-04-06 22:15:36 +0800
by
Zelig
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
修改
1 parent
639f19cd
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
1001 additions
and
876 deletions
application/controllers/Work.php
application/views/common/footer.php
application/views/common/header.php
application/views/work/图片上传.php
application/views/work/审批/电核.php
application/views/work/审批/电核添加.php
application/views/work/审批/电核结果.b.php
application/views/work/审批/电核结果.bak.php
application/views/work/审批/电核结果.php
application/views/work/审批/网查筛选.php
application/views/work/审批/资料清单.php
application/views/work/尽调报告/index.php
application/views/work/尽调报告/法人.php
application/views/work/申请信息/借款人信息.php
application/views/work/申请信息/其他.php
application/views/work/申请信息/单位信息.php
application/views/work/订单详情.php
application/views/work/资料/资料补录.php
resource/location.js
resource/upload.js
application/controllers/Work.php
View file @
ef21ff5
...
...
@@ -124,6 +124,7 @@ class Work extends CI_Controller
'applyOrderVO'
=>
$ret
->
orderVO
,
'operatorRecord'
=>
$ret2
);
$this
->
load
->
view
(
'work/订单详情'
,
$data
);
}
...
...
@@ -262,11 +263,6 @@ class Work extends CI_Controller
$this
->
load
->
view
(
'work/审批/网查筛选'
,
$data
);
break
;
case
8
:
$url
=
$this
->
config
->
item
(
'apiBaseUrl'
)
.
'audit/phoneAudit/record/'
.
$id
;
$result
=
file_get_contents
(
$url
);
$json
=
json_decode
(
$result
);
$ret
=
$json
->
data
;
$data
[
'record'
]
=
$ret
;
$this
->
load
->
view
(
'work/审批/电核'
,
$data
);
break
;
case
9
:
...
...
@@ -463,6 +459,7 @@ class Work extends CI_Controller
'industry'
=>
$this
->
duediligence
->
enum
->
industry
(),
'companyNature'
=>
$this
->
duediligence
->
enum
->
companyNature
(),
'dueDiligenceType'
=>
$this
->
order
->
ordersource
->
dueDiligenceType
(),
'dueDiligence'
=>
api
(
'/dueDiligence/'
.
$id
),
);
$this
->
load
->
view
(
'/work/尽调报告/index'
,
$data
);
...
...
application/views/common/footer.php
View file @
ef21ff5
</body></html>
<script
type=
"text/javascript"
src=
"/resource/lib/jquery/1.9.1/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"/resource/lib/layer/2.4/layer.js"
></script>
<script
type=
"text/javascript"
src=
"/resource/static/h-ui/js/H-ui.min.js"
></script>
...
...
@@ -14,9 +15,24 @@
<script
src=
"https://cdn.bootcss.com/holder/2.9.4/holder.min.js"
></script>
<script
type=
"text/javascript"
src=
"/resource/location.js"
></script>
<script
type=
"text/javascript"
src=
"/resource/upload.js"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"
></script>
<script
src=
"https://unpkg.com/axios/dist/axios.min.js"
></script>
<script
type=
"text/javascript"
src=
"/resource/main.js"
></script>
<script
src=
"https://cdn.bootcss.com/lightbox2/2.10.0/js/lightbox.min.js"
></script>
<script>
instance
=
axios
.
create
({
baseURL
:
apiBaseUrl
,
timeout
:
1000
,
});
Vue
.
filter
(
'formatDate'
,
function
(
time
)
{
var
date
=
new
Date
(
time
);
return
date
.
getFullYear
()
+
'-'
+
date
.
getMonth
()
+
'-'
+
date
.
getDate
();
});
(
function
(
$
)
{
$
.
fn
.
serializeJson
=
function
()
{
var
serializeObj
=
{};
var
array
=
this
.
serializeArray
();
...
...
@@ -191,10 +207,6 @@
}
}
$
(
'.Wdate'
).
on
(
'focus'
,
function
()
{
WdatePicker
();
});
function
reload
()
{
table
.
fnDraw
();
}
...
...
application/views/common/header.php
View file @
ef21ff5
...
...
@@ -14,6 +14,7 @@
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/resource/lib/webuploader/0.1.5/webuploader.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/resource/static/h-ui.admin/css/style.css"
/>
<link
rel=
"stylesheet"
href=
"/resource/lib/zTree/v3/css/zTreeStyle/zTreeStyle.css"
type=
"text/css"
>
<link
href=
"https://cdn.bootcss.com/lightbox2/2.10.0/css/lightbox.min.css"
rel=
"stylesheet"
>
<?php
if
(
isset
(
$styles
)
&&
is_array
(
$styles
))
{
foreach
(
$styles
as
$style
)
{
...
...
application/views/work/图片上传.php
View file @
ef21ff5
<?php
if
(
!
isset
(
$type
))
$type
=
api
(
'order/ordersource/baseType'
);
?>
<input
type=
"hidden"
id=
"orderId"
value=
"
<?=
isset
(
$id
)
?
$id
:
''
?>
"
>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
上传图片
</div>
...
...
@@ -21,7 +22,7 @@
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
</label>
<div>
<label
class=
"filePicker"
url=
"
<?=
$url
?>
"
>
选择图片
</label>
<label
class=
"filePicker"
url=
"
<?=
@
$url
?:
'order/ordersource/base/'
?>
"
>
选择图片
</label>
</div>
</div>
</div>
...
...
application/views/work/审批/电核.php
View file @
ef21ff5
...
...
@@ -22,6 +22,8 @@
<?php
$this
->
load
->
view
(
'/work/审批/电核结果'
);
?>
</form>
</div>
<?php
$record
=
api
(
'/audit/phoneAudit/record/'
.
$id
);
?>
<div
class=
"tabCon pb-20"
>
<div
class=
"cl pd-5 bg-1"
>
<span
class=
"r"
>
...
...
@@ -42,25 +44,13 @@
</tr>
</thead>
<tbody
class=
"text-c"
>
<?php
?>
<?php
foreach
(
$record
as
$k
=>
$v
)
:?>
<
tr
>
<
td
><?=
$v
->
id
?>
</td>
<td>
<?=
$v
->
phoneAuditTime
?>
</td>
<td>
<?=
$v
->
hasPutThrough
?
'是'
:
'否'
?>
</td>
<td>
<?=
$v
->
phoneAuditEmployee
?>
</td>
<td>
<?=
$v
->
remark
?>
</td>
<tr
v-for=
"record in records"
>
<td>
{{record.id}}
</td>
<td>
{{record.phoneAuditTime | formatDate}}
</td>
<td>
{{record.hasPutThrough}}
</td>
<td>
{{record.phoneAuditEmployee}}
</td>
<td>
{{record.remark}}
</td>
</tr>
<?php
endforeach
;
?>
<!--<tr>
<td>1</td>
<td>2018-01-01 00:00:00</td>
<td>是</td>
<td>张三</td>
<td>备注</td>
<td><a href="javascript:add();"><i class="Hui-iconfont"></i> 编辑<a></td>
</tr>-->
</tbody>
</table>
</div>
...
...
@@ -81,6 +71,60 @@
<?php
$this
->
load
->
view
(
'common/footer'
);
?>
<script>
var vm = new Vue({
el: '#tab',
data: {
clientInfoOutputVO: {},
clientContactOutputVOS: {},
orderVO: {},
records: [],
use: [],
nature: [],
},
mounted () {
this.getRecords();
this.getClient();
this.getUse();
this.getNature();
},
methods: {
getRecords () {
let _this = this;
instance.get('/audit/phoneAudit/record/
<?=
$id
?>
').then( ( {data} ) => {
this.records = data.data.reverse();
});
},
getClient () {
let _this = this;
instance.get('order/detail/
<?=
$id
?>
').then( ( {data} ) => {
console.log(data);
this.clientInfoOutputVO = data.data.clientInfoOutputVO;
this.orderVO = data.data.orderVO;
this.clientContactOutputVOS = data.data.clientContactOutputVOS;
});
},
getUse () {
let _this = this;
instance.get('dueDiligence/enum/loanPurpose').then( ( {data} ) => {
this.use = data.data;
});
},
getNature () {
let _this = this;
instance.get('/enum/loan/nature').then( ( {data} ) => {
this.nature = data.data;
});
}
},
filters: {
shengxiao(birthDate){
let yyyy = new Date(birthDate).getFullYear();
var arr=['猴','鸡','狗','猪','鼠','牛','虎','兔','龙','蛇','马','羊'];
return /^\d{4}$/.test(yyyy)?arr[yyyy%12]:null;
}
}
});
function getQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
...
...
application/views/work/审批/电核添加.php
View file @
ef21ff5
...
...
@@ -8,7 +8,7 @@
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
电核时间
</label>
<input
name=
"phoneAuditTime"
type=
"text"
class=
"form-control input-text Wdate"
value=
""
onfocus=
"WdatePicker()"
>
<input
name=
"phoneAuditTime"
type=
"text"
class=
"form-control input-text Wdate"
value=
""
onfocus=
"WdatePicker(
{dateFmt:'yyyy-M-d'}
)"
>
</div>
</div>
<div
class=
"row cl"
>
...
...
@@ -59,6 +59,7 @@
layer
.
alert
(
'操作失败'
);
}
else
{
layer
.
alert
(
'操作成功'
);
window
.
parent
.
vm
.
getRecords
();
}
if
(
!
data
.
code
){
setTimeout
(
function
()
{
...
...
application/views/work/审批/电核结果.b.php
0 → 100644
View file @
ef21ff5
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
客户身份信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"identityCheckDetail"
value=
""
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"identityCheck"
value=
"1"
>
<span>
是
</span>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"identityCheck"
value=
"0"
>
<span>
否
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
联系人核查
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"contactCheckDetail"
value=
""
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"contactCheck"
value=
"1"
>
<span>
是
</span>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"contactCheck"
value=
"0"
>
<span>
否
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
家庭情况
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"familyConditionCheckDetail"
value=
""
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"familyConditionCheck"
value=
"1"
>
<span>
是
</span>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"familyConditionCheck"
value=
"0"
>
<span>
否
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
资产信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"assetInformationCheckDetail"
value=
""
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"assetInformationCheck"
value=
"1"
>
<span>
是
</span>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"assetInformationCheck"
value=
"0"
>
<span>
否
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
负债信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"debtInformationCheckDetail"
value=
""
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"debtInformationCheck"
value=
"1"
>
<span>
是
</span>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"debtInformationCheck"
value=
"0"
>
<span>
否
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
其他金融机构业务
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"otherFinancingInstitutionBusinessDetail"
value=
""
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"otherFinancingInstitutionBusinessCheck"
value=
"1"
>
<span>
是
</span>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"otherFinancingInstitutionBusinessCheck"
value=
"0"
>
<span>
否
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
经营基本信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"operateBasicInformationDetail"
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"operateBasicInformationCheck"
value=
"1"
>
<span>
是
</span>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"operateBasicInformationCheck"
value=
"0"
>
<span>
否
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
经营财务数据
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"operateFinanceDataDetail"
value=
""
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"operateFinanceDataCheck"
value=
"1"
>
<span>
是
</span>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"operateFinanceDataCheck"
value=
"0"
>
<span>
否
</span>
</div>
</div>
</div>
</div>
</div>
</div>
application/views/work/审批/电核结果.bak.php
deleted
100644 → 0
View file @
639f19c
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
客户身份信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
姓名
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
身份证号码
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
生肖
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
婚姻情况
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
>
未婚
</option>
<option
value=
""
>
已婚
</option>
<option
value=
""
>
离户
</option>
</select>
</span>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
户口详细地址
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
现居住地
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
身份信息选项
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
value=
""
>
不真实
</option>
<option
value=
""
>
真实
</option>
<option
value=
""
>
其他
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-6 col-md-2"
>
<label>
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
placeholder=
"备注"
>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
申请借款信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
申请金额
</label>
<input
type=
"text"
class=
"form-control input-text"
readonly
value=
"XXX"
disabled
>
<span
class=
"glyphicon glyphicon-rmb form-control-feedback"
aria-hidden=
"true"
></span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
借款期限
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
"1"
></option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
借款用途
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
"1"
></option>
</select>
</span>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
家庭情况
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
家庭成员
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
"1"
>
父亲
</option>
<option
value=
"1"
>
父亲
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
岁
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
placeholder=
"现在哪里做什么"
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
"1"
></option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
岁
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
placeholder=
"现在哪里做什么"
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
"1"
></option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
岁
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
placeholder=
"现在哪里做什么"
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
"1"
></option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
岁
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
placeholder=
"现在哪里做什么"
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
"1"
></option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
岁
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
placeholder=
"现在哪里做什么"
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
"1"
></option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
岁
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
placeholder=
"现在哪里做什么"
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
居住状况
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
></option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-6 col-md-3"
>
<label>
</label>
<input
type=
"text"
class=
"input-text"
disabled
placeholder=
"备注: 建造时间, 装修花费, 建筑面积"
>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
居住年限
</label>
<input
type=
"text"
class=
"input-text"
disabled
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
年
</span>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-12"
>
<label>
常驻人口/结构
</label>
<textarea
class=
"textarea"
disabled
></textarea>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
家庭情况
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
value=
""
>
不真实
</option>
<option
value=
""
>
真实
</option>
<option
value=
""
>
其他
</option>
</select>
</span>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
联系人核查
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
姓名
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
电话号码
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
与借款人关系
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
>
配偶
</option>
<option
value=
""
>
父母
</option>
<option
value=
""
>
兄弟姐妹
</option>
<option
value=
""
>
子女
</option>
<option
value=
""
>
同事
</option>
<option
value=
""
>
朋友
</option>
<option
value=
""
>
其他
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
知晓贷款
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
>
知道
</option>
<option
value=
""
>
不知道
</option>
</select>
</span>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
联系人核查
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
value=
""
>
不真实
</option>
<option
value=
""
>
真实
</option>
<option
value=
""
>
其他
</option>
</select>
</span>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
经营基本信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
单位名称
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
单位电话
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
职称名称
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
入职时间
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
月收入
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
收入证明人
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
收入证明人职位
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
社保
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
公积金
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
工资发放形式
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
>
打卡
</option>
<option
value=
""
>
支付宝
</option>
<option
value=
""
>
微信
</option>
<option
value=
""
>
现金
</option>
<option
value=
""
>
现金 + 打卡
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
单位所在地
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
经营基本信息
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
value=
""
>
不真实
</option>
<option
value=
""
>
真实
</option>
<option
value=
""
>
其他
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-6 col-md-2"
>
<label>
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
placeholder=
"备注"
>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
经营财务数据(可选)
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
经营年限
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
年
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
期初投入
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
年产值/年营收入
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
员工
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
人
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
缴纳社保
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
>
是
</option>
<option
value=
""
>
否
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
人力成本
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
水电费
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
经营利润
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
%
</span>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
经营地性质
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
>
租凭
</option>
<option
value=
""
>
自有
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
placeholder=
"租金/价值"
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
库存
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
应收
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
账期
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
天
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
应付
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
长期合作单位
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
财务结算方式
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
>
对公
</option>
<option
value=
""
>
对私
</option>
<option
value=
""
>
现金
</option>
<option
value=
""
>
承诺
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
placeholder=
"备注: 对公/对私(什么银行)"
>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
资产信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
房产
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
套
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
商品房估值
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
建按估值
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
车辆
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
辆
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
名牌型号
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
现估值
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
其他资产
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
资产内容
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
现估值
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
合计资产
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
还款能力
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
value=
""
>
具有
</option>
<option
value=
""
>
一般
</option>
<option
value=
""
>
较差
</option>
<option
value=
""
>
无
</option>
</select>
</span>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
负责信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-12"
>
<textarea
class=
"textarea"
placeholder=
"根据录入的信用报告核对征信负责, 核对贷款每还还款金额, 信用卡每月还款额, 逾期原因"
></textarea>
</div>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
合计征信负责
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
其他金融机构业务
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-12"
>
<textarea
class=
"textarea"
placeholder=
"根据录入的信用报告核对征信负责, 核对贷款每还还款金额, 信用卡每月还款额, 逾期原因"
></textarea>
</div>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
合计非征信负责
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
</div>
</div>
</div>
\ No newline at end of file
application/views/work/审批/电核结果.php
View file @
ef21ff5
...
...
@@ -2,43 +2,78 @@
<div
class=
"panel-header"
>
客户身份信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"identityCheckDetail"
value=
""
>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
姓名
</label>
<input
type=
"text"
class=
"form-control input-text"
:value=
"clientInfoOutputVO.userName"
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"identityCheck"
value=
"1"
>
<span>
是
</span>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
身份证号码
</label>
<input
type=
"text"
class=
"form-control input-text"
:value=
"clientInfoOutputVO.idCard"
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
生肖
</label>
<input
type=
"text"
class=
"form-control input-text"
:value=
"clientInfoOutputVO.birthDate | shengxiao"
disabled
>
</div>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
婚姻情况
</label>
<input
type=
"text"
class=
"form-control input-text"
:value=
"clientInfoOutputVO.marriageState"
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
户口详细地址
</label>
<input
type=
"text"
class=
"form-control input-text"
:value=
"clientInfoOutputVO.registerDetailAddress"
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
现居住地
</label>
<input
type=
"text"
class=
"form-control input-text"
:value=
"clientInfoOutputVO.currentAddress"
disabled
>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"identityCheck"
value=
"0"
>
<span>
否
</span>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
身份信息选项
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
value=
"0"
>
不真实
</option>
<option
value=
"1"
>
真实
</option>
<option
value=
"2"
>
其他
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-6 col-md-2"
>
<label>
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
placeholder=
"备注"
>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
联系人核查
</div>
<div
class=
"panel-header"
>
申请借款信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"contactCheckDetail"
value=
""
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"contactCheck"
value=
"1"
>
<span>
是
</span>
<label>
申请金额
</label>
<input
type=
"text"
class=
"form-control input-text"
readonly
:value=
"orderVO.applyMoney"
disabled
>
<span
class=
"glyphicon glyphicon-rmb form-control-feedback"
aria-hidden=
"true"
></span>
</div>
<div
class=
"live-info
"
>
<input
type=
"radio"
name=
"contactCheck"
value=
"0"
>
<span>
否
</span
>
<div
class=
"form-group col-sm-3 col-md-2
"
>
<label>
借款期限
</label
>
<input
type=
"text"
class=
"form-control input-text"
readonly
:value=
"orderVO.deadline"
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
借款用途
</label>
<input
type=
"text"
class=
"form-control input-text"
readonly
:value=
"use[orderVO.use]"
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
借款性质
</label>
<input
type=
"text"
class=
"form-control input-text"
readonly
:value=
"nature[orderVO.useNature]"
disabled
>
</div>
</div>
</div>
...
...
@@ -48,135 +83,411 @@
<div
class=
"panel-header"
>
家庭情况
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"familyConditionCheckDetail"
value=
""
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
"1"
>
父亲
</option>
<option
value=
"1"
>
父亲
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
岁
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
placeholder=
"现在哪里做什么"
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"familyConditionCheck"
value=
"1"
>
<span>
是
</span>
<label>
居住状况
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
></option>
</select>
</span>
</div>
<div
class=
"live-info
"
>
<input
type=
"radio"
name=
"familyConditionCheck"
value=
"0"
>
<span>
否
</span
>
<div
class=
"form-group col-sm-6 col-md-3
"
>
<label>
</label
>
<input
type=
"text"
class=
"input-text"
disabled
placeholder=
"备注: 建造时间, 装修花费, 建筑面积"
>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
居住年限
</label>
<input
type=
"text"
class=
"input-text"
disabled
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
年
</span>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-12"
>
<label>
常驻人口/结构
</label>
<textarea
class=
"textarea"
disabled
></textarea>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
家庭情况
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
value=
""
>
不真实
</option>
<option
value=
""
>
真实
</option>
<option
value=
""
>
其他
</option>
</select>
</span>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
资产信息
</div>
<div
class=
"panel-header"
>
联系人核查
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"assetInformationCheckDetail"
value=
""
>
<div
class=
"row cl"
v-for=
"item in clientContactOutputVOS"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
姓名
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"assetInformationCheck"
value=
"1"
>
<span>
是
</span>
<label>
电话号码
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"assetInformationCheck"
value=
"0"
>
<span>
否
</span>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
与借款人关系
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
>
配偶
</option>
<option
value=
""
>
父母
</option>
<option
value=
""
>
兄弟姐妹
</option>
<option
value=
""
>
子女
</option>
<option
value=
""
>
同事
</option>
<option
value=
""
>
朋友
</option>
<option
value=
""
>
其他
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
知晓贷款
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
>
知道
</option>
<option
value=
""
>
不知道
</option>
</select>
</span>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
联系人核查
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
value=
""
>
不真实
</option>
<option
value=
""
>
真实
</option>
<option
value=
""
>
其他
</option>
</select>
</span>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
负债
信息
</div>
<div
class=
"panel-header"
>
经营基本
信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"debtInformationCheckDetail"
value=
""
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
单位名称
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"debtInformationCheck"
value=
"1"
>
<span>
是
</span>
<label>
单位电话
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"debtInformationCheck"
value=
"0"
>
<span>
否
</span>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
职称名称
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
入职时间
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
月收入
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
收入证明人
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
收入证明人职位
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
社保
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
公积金
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
工资发放形式
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
>
打卡
</option>
<option
value=
""
>
支付宝
</option>
<option
value=
""
>
微信
</option>
<option
value=
""
>
现金
</option>
<option
value=
""
>
现金 + 打卡
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
单位所在地
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
经营基本信息
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
value=
""
>
不真实
</option>
<option
value=
""
>
真实
</option>
<option
value=
""
>
其他
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-6 col-md-2"
>
<label>
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
placeholder=
"备注"
>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
其他金融机构业务
</div>
<div
class=
"panel-header"
>
经营财务数据(可选)
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"otherFinancingInstitutionBusinessDetail"
value=
""
>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
经营年限
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
年
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
期初投入
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
年产值/年营收入
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
员工
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
人
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
缴纳社保
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
>
是
</option>
<option
value=
""
>
否
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
人力成本
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
水电费
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
经营利润
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
%
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"otherFinancingInstitutionBusinessCheck"
value=
"1"
>
<span>
是
</span>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"otherFinancingInstitutionBusinessCheck"
value=
"0"
>
<span>
否
</span>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
经营地性质
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
>
租凭
</option>
<option
value=
""
>
自有
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
placeholder=
"租金/价值"
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
库存
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
应收
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
账期
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
天
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
应付
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
长期合作单位
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
财务结算方式
</label>
<span
class=
"form-control select-box disabled"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
""
>
对公
</option>
<option
value=
""
>
对私
</option>
<option
value=
""
>
现金
</option>
<option
value=
""
>
承诺
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
placeholder=
"备注: 对公/对私(什么银行)"
>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
经营基本
信息
</div>
<div
class=
"panel-header"
>
资产
信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"operateBasicInformationDetail"
>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
房产
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
套
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"operateBasicInformationCheck"
value=
"1"
>
<span>
是
</span>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
商品房估值
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
建按估值
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"operateBasicInformationCheck"
value=
"0"
>
<span>
否
</span>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
车辆
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
辆
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
名牌型号
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
现估值
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
其他资产
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
资产内容
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
现估值
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
合计资产
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
还款能力
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
value=
""
>
具有
</option>
<option
value=
""
>
一般
</option>
<option
value=
""
>
较差
</option>
<option
value=
""
>
无
</option>
</select>
</span>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
经营财务数据
</div>
<div
class=
"panel-header"
>
负责信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"operateFinanceDataDetail"
value=
""
>
<div
class=
"form-group col-sm-12"
>
<textarea
class=
"textarea"
placeholder=
"根据录入的信用报告核对征信负责, 核对贷款每还还款金额, 信用卡每月还款额, 逾期原因"
></textarea>
</div>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
合计征信负责
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<div
class=
"info"
>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"operateFinanceDataCheck"
value=
"1"
>
<span>
是
</span>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"operateFinanceDataCheck"
value=
"0"
>
<span>
否
</span>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
其他金融机构业务
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-12"
>
<textarea
class=
"textarea"
placeholder=
"根据录入的信用报告核对征信负责, 核对贷款每还还款金额, 信用卡每月还款额, 逾期原因"
></textarea>
</div>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
合计非征信负责
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
</div>
</div>
...
...
application/views/work/审批/网查筛选.php
View file @
ef21ff5
...
...
@@ -15,26 +15,6 @@
<?php
$this
->
load
->
view
(
'work/图片上传'
,
[
'url'
=>
'order/ordersource/firstcheck/'
,
'type'
=>
$firstCheck
]);
?>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
筛选结果
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select uploader"
size=
"1"
>
<option
value=
"1"
>
正常
</option>
<option
value=
"2"
>
异常
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
</label>
<input
type=
"text"
class=
"input-text"
placeholder=
"备注"
/>
</div>
</div>
</div>
</div>
<div
class=
"row cl pb-20 col-sm-12"
>
<div
class=
"col-sm-offset-3 col-sm-2"
>
<button
class=
"btn btn-warning btn-block"
>
退回订单
</button>
...
...
application/views/work/审批/资料清单.php
View file @
ef21ff5
...
...
@@ -7,7 +7,7 @@
<div
class=
"tabBar clearfix"
style=
"background-color:#e8e8e8"
>
<span>
申请信息
</span>
<span>
尽调报告
</span>
<
span>
信用报告
</span
>
<
!-- <span>信用报告</span> --
>
<!-- <span>电核结果</span>-->
<!-- <span>网查筛查(图片)</span>-->
<!-- <span>附件清单(图片)</span>-->
...
...
@@ -30,9 +30,9 @@
<?php
endforeach
;
?>
</div>
<div
class=
"tabCon"
>
<
!-- <
div class="tabCon">
<?php
$this
->
load
->
view
(
'work/审批/信用报告'
);
?>
</div>
</div>
-->
<div
class=
"tabCon"
>
<?php
$this
->
load
->
view
(
'work/审批/电核结果'
);
?>
...
...
application/views/work/尽调报告/index.php
View file @
ef21ff5
...
...
@@ -9,6 +9,17 @@
<input
type=
"hidden"
name=
"orderId"
value=
"
<?=
$id
?>
"
>
<div
class=
"tabCon"
>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
尽调目的
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<?=
@
$dueDiligence
->
dueDiligenceBasicInformationVO
->
diligencePurpose
?>
</div>
</div>
</div>
</div>
<?php
if
(
$clientUnitOutputVO
->
jobType
==
1
){
//打工类
$this
->
load
->
view
(
'work/尽调报告/打工'
);
...
...
@@ -16,6 +27,22 @@
$this
->
load
->
view
(
'work/尽调报告/法人'
);
}
?>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"col-sm-12"
>
本人与借款人于
<input
type=
"text"
name=
"interviewTime"
class=
"input-text Wdate"
value=
""
onfocus=
"WdatePicker()"
>
进行面谈, 并就该贷款进行了相应的解释说明. 借款人提供的信息真实有效. 本人对各项信息已经进行了审慎的调查、核实、分析、整理和审定,并对风险情况已进行了完全披露。同时,借款人对本贷款的含义以及相应的法律责任已全部通晓并充分理解。
本人已经对借款人提供材料的真实有效性进行核实, 如果有协助借款人提供伪造材料,歪曲事实,本人愿承担相应的法律后果.
</div>
<div
class=
"col-sm-12"
>
<span
class=
"r"
>
尽职调查专员:
<?=
@
$dueDiligence
->
dueDiligenceComprehensiveAssessmentVO
->
ombudsman
?>
</span>
</div>
</div>
</div>
</div>
</div>
<div
class=
"tabCon"
>
...
...
application/views/work/尽调报告/法人.php
View file @
ef21ff5
<form
action=
""
id=
"dueDiligenceBasicInformationVO"
>
<input
type=
"hidden"
name=
"orderId"
value=
"
<?=
$id
?>
"
>
<div
class=
"panel panel-default mb-20"
>
<?php
$order
=
api
(
'/order/detail/'
.
$id
)
?>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
基本信息
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
姓名
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"userName"
value=
""
>
<input
type=
"text"
class=
"form-control input-text"
name=
"userName"
value=
"
<?=
@
$order
->
clientInfoOutputVO
->
userName
?>
"
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
身份证
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"idNumber"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"idNumber"
value=
"
<?=
@
$order
->
clientInfoOutputVO
->
idNumber
?>
"
>
</div>
</div>
...
...
@@ -34,7 +35,7 @@
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
现住地址
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"nowAddress"
value=
""
>
<input
type=
"text"
class=
"form-control input-text"
name=
"nowAddress"
value=
"
<?=
@
$order
->
clientInfoInputVO
->
currentAddress
?>
"
>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
&
nbsp
</label>
...
...
@@ -49,23 +50,35 @@
</div>
<div
class=
"row cl"
>
<?php
$marry
=
api
(
'/client/enum/marry'
)
?>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
婚姻情况
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
name=
"maritalCondition"
>
<?php
foreach
(
$marry
as
$k
=>
$v
)
:
?>
<option
value=
"
<?=
$k
?>
"
>
<?=
$v
?>
</option>
<?php
endforeach
;
?>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
子女情况
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"childrenCondition"
value=
"
<?=
@
$dueDiligence
->
dueDiligenceBasicInformationVO
->
childrenCondition
?>
"
>
</div>
</div>
<div
class=
"row cl"
>
<?php
$folkHasKnow
=
api
(
'/dueDiligence/enum/folkHasKnow'
)
?>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
家人是否知晓
</label>
<div
class=
"info"
>
<?php
foreach
(
$folkHasKnow
as
$k
=>
$v
)
:
?>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"folkHasKnow"
value=
"
1"
checked
>
<span>
知晓且支持
</span>
<input
type=
"radio"
name=
"folkHasKnow"
value=
"
<?=
$k
?>
"
<?=
$k
==
@
$dueDiligence
->
dueDiligenceBasicInformationVO
->
folkHasKnow
?
'checked'
:
''
?>
>
<span>
<?=
$v
?>
</span>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"folkHasKnow"
value=
"0"
>
<span>
不知晓
</span>
</div>
<div
class=
"live-info"
>
<input
type=
"radio"
name=
"folkHasKnow"
value=
"1"
>
<span>
知晓不支持
</span>
</div>
<input
type=
"text"
name=
"folkHasKnowRemark"
class=
"form-control input-text"
value=
""
placeholder=
"备注"
>
<?php
endforeach
?>
<input
type=
"text"
name=
"folkHasKnowRemark"
class=
"form-control input-text"
value=
""
placeholder=
"备注"
>
</div>
</div>
</div>
...
...
@@ -191,7 +204,7 @@
<div
class=
"form-group has-feedback col-sm-3 col-md-2"
>
<label>
营业面积
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
name=
"companyArea"
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
平方米
</span>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
m^2
</span>
</div>
<div
class=
"form-group has-feedback col-sm-3 col-md-2"
>
<label>
利润率
</label>
...
...
@@ -348,10 +361,12 @@
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
同事/亲属/邻居口碑
</label>
<?php
$publicPraise
=
api
(
'/dueDiligence/enum/publicPraise'
);
?>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
value=
""
>
无
</option>
<option
value=
""
>
有
</option>
<?php
foreach
(
$publicPraise
as
$k
=>
$v
)
:
?>
<option
value=
"
<?=
$k
?>
"
>
<?=
$v
?>
</option>
<?php
endforeach
;
?>
</select>
</span>
</div>
...
...
@@ -391,8 +406,8 @@
<label>
办公场地性质
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
value=
""
>
属实
</option>
<option
value=
""
>
不属实
</option>
<option
value=
"
1
"
>
属实
</option>
<option
value=
"
0
"
>
不属实
</option>
</select>
</span>
</div>
...
...
@@ -400,9 +415,8 @@
<label>
是否有淡旺季
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
value=
""
>
良好
</option>
<option
value=
""
>
一般
</option>
<option
value=
""
>
较差
</option>
<option
value=
"1"
>
有
</option>
<option
value=
"0"
>
没有
</option>
</select>
</span>
</div>
...
...
@@ -423,7 +437,6 @@
<div
class=
"form-group has-feedback col-sm-3 col-md-1"
>
<label>
主要库存货品
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
%
</span>
</div>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
库存量
</label>
...
...
@@ -458,6 +471,7 @@
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
开机率
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
%
</span>
</div>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
月均水电费
</label>
...
...
@@ -483,12 +497,12 @@
<input
type=
"text"
class=
"form-control input-text"
name=
"houseNumber"
value=
""
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
套
</span>
</div>
<div
class=
"form-group col-sm-
6 col-md-4
"
>
<div
class=
"form-group col-sm-
3 col-md-1
"
>
<label>
名下车辆
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
name=
"carNumber"
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
部
</span>
</div>
<div
class=
"form-group col-sm-
6 col-md-4
"
>
<div
class=
"form-group col-sm-
3 col-md-1
"
>
<label>
品牌型号
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
name=
"carBrand"
>
</div>
...
...
@@ -499,7 +513,7 @@
<input
type=
"text"
class=
"form-control input-text"
value=
""
name=
"loanNumber"
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
笔
</span>
</div>
<div
class=
"form-group col-sm-
6 col-md-4
"
>
<div
class=
"form-group col-sm-
3 col-md-1
"
>
<label>
共
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
name=
"loanAmount"
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
元
</span>
...
...
@@ -513,12 +527,12 @@
</select>
</span>
</div>
<div
class=
"form-group col-sm-
6 col-md-4
"
>
<div
class=
"form-group col-sm-
3 col-md-1
"
>
<label>
备注
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
name=
"folkLoanNumber"
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
笔
</span>
</div>
<div
class=
"form-group col-sm-
6 col-md-4
"
>
<div
class=
"form-group col-sm-
3 col-md-1
"
>
<label>
共
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
name=
"folkLoanAmount"
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
元
</span>
...
...
application/views/work/申请信息/借款人信息.php
View file @
ef21ff5
...
...
@@ -24,7 +24,7 @@
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
出生日期
</label>
<input
type=
"text"
class=
"form-control input-text Wdate"
value=
"
<?=
date
(
'Y-m-d'
,
strtotime
(
$clientInfoOutputVO
->
birthDate
))
?>
"
onfocus=
"WdatePicker()"
>
<input
type=
"text"
class=
"form-control input-text Wdate"
value=
"
<?=
$clientInfoOutputVO
->
birthDate
?
date
(
'Y-m-d'
,
strtotime
(
$clientInfoOutputVO
->
birthDate
))
:
''
?>
"
onfocus=
"WdatePicker()"
>
</div>
</div>
...
...
@@ -120,9 +120,19 @@
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
户口所在地
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
<?=
$clientInfoOutputVO
&&
$clientInfoOutputVO
->
registerProvince
==
0
?
'selected'
:
''
?>
value=
"0"
>
农村
</option>
<option
<?=
$clientInfoOutputVO
&&
$clientInfoOutputVO
->
registerProvince
==
1
?
'selected'
:
''
?>
value=
"1"
>
城镇
</option>
<select
class=
"select"
size=
"1"
id=
"province"
name=
"clientInfoInputVO.registerProvince"
></select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
id=
"city"
name=
"clientInfoInputVO.registerCity"
></select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
id=
"county"
name=
"clientInfoInputVO.registerCounty"
>
</select>
</span>
</div>
...
...
application/views/work/申请信息/其他.php
View file @
ef21ff5
...
...
@@ -2,19 +2,25 @@
<div
class=
"panel-header"
>
其他
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<?php
$products
=
api
(
'/application/tool/products'
);
?>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
贷款品种/代码
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
"1"
>
<?=
$applyOrderVO
->
productId
?>
</option>
<?php
foreach
(
$products
as
$k
=>
$v
)
:
?>
<option
value=
"
<?=
$k
?>
"
<?=
$v
->
id
==
$applyOrderVO
->
productId
?
'selected'
:
''
?>
>
<?=
$v
->
productName
?>
</option>
<?php
endforeach
;
?>
</select>
</span>
</div>
<?php
$loanPurpose
=
api
(
'/dueDiligence/enum/loanPurpose'
);
?>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
贷款用途性质
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
value=
"1"
>
<?=
$applyOrderVO
->
useNature
?>
</option>
<?php
foreach
(
$loanPurpose
as
$k
=>
$v
)
:
?>
<option
value=
"
<?=
$k
?>
"
<?=
$k
==
$applyOrderVO
->
useNature
?
'selected'
:
''
?>
>
<?=
$v
?>
</option>
<?php
endforeach
;
?>
</select>
</span>
</div>
...
...
application/views/work/申请信息/单位信息.php
View file @
ef21ff5
...
...
@@ -27,7 +27,7 @@
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
现单位入职时间
</label>
<input
type=
"text"
class=
"form-control input-text Wdate"
value=
"
<?=
$clientUnitOutputVO
?
$clientUnitOutputVO
->
currentUnitEntryDate
:
''
?>
"
>
<input
type=
"text"
class=
"form-control input-text Wdate"
value=
"
<?=
$clientUnitOutputVO
?
date
(
'Y-m-d'
,
$clientUnitOutputVO
->
currentUnitEntryDate
/
1000
)
:
''
?>
"
onfocus=
"WdatePicker()
"
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
现单位工作年限
</label>
...
...
application/views/work/订单详情.php
View file @
ef21ff5
...
...
@@ -65,6 +65,9 @@
var index = getQueryString('tab');
$("#tab").Huitab({index: index});
var loc = beva.locationutil.attach('province', 'city', 'county', 'address');
loc.setSelectedCodes(['
<?=
$clientInfoOutputVO
->
registerProvince
?>
', '
<?=
$clientInfoOutputVO
->
registerCity
?>
', '
<?=
$clientInfoOutputVO
->
registerCounty
?>
'
]);
</script>
</body>
</html>
...
...
application/views/work/资料/资料补录.php
View file @
ef21ff5
<?php
$this
->
load
->
view
(
'common/header'
);
?>
<body>
<body
id=
"app"
>
<div
id=
"tab"
class=
"HuiTab"
>
<div
class=
"tabBar clearfix"
style=
"background-color:#e8e8e8"
>
<span>
产品选择
</span>
<span>
申请信息
</span>
<span>
资料信息
</span>
</div>
<form>
<div
class=
"tabCon"
>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
选择贷款产品
</div>
<div
class=
"panel-body cl"
>
<div
class=
"row cl text-c"
>
<div
class=
"col-sm-4 mb-20"
v-for=
"product in products"
>
<label
class=
"radio"
>
<input
type=
"radio"
:value=
"product.id"
name=
"applyOrderVO.productId"
v-model=
"applyOrderVO.productId"
/>
<img
width=
"160"
height=
"160"
:src=
"product.imagePath"
>
{{product.productName}}
</label>
</div>
</div>
</div>
</div>
<div
class=
"col-sm-offset-4 col-sm-4 pb-20"
>
<button
class=
"btn btn-primary btn-block"
type=
"button"
onclick=
"$('#tab').Huitab({index: 1})"
>
下一步
</button>
</div>
</div>
</form>
<form>
<!-- 申请信息 -->
<div
class=
"tabCon"
>
<div
class=
"panel panel-default mb-20"
>
...
...
@@ -44,7 +68,7 @@
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
出生日期
</label>
<input
type=
"text"
name=
"clientInfoInputVO.birthDate"
class=
"form-control input-text Wdate"
value=
"
<?=
$clientInfoOutputVO
?
$clientInfoOutputVO
->
birthDate
:
''
?>
"
onfocus=
"WdatePicker()"
>
value=
"
<?=
$clientInfoOutputVO
->
birthDate
?
date
(
'Y-m-d'
,
$clientInfoOutputVO
->
birthDate
/
1000
)
:
''
?>
"
onfocus=
"WdatePicker()"
>
</div>
</div>
...
...
@@ -52,12 +76,8 @@
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
教育程度
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
name=
"clientInfoInputVO.educationDegree"
>
<option></option>
<?php
foreach
(
$this
->
session
->
educationEnum
as
$k
=>
$v
)
:
?>
<option
<?=
$clientInfoOutputVO
&&
$clientInfoOutputVO
->
educationDegree
==
$k
?
'selected'
:
''
?>
value=
"
<?=
$k
?>
"
>
<?=
$v
?>
</option>
<?php
endforeach
;
?>
<select
class=
"select"
size=
c""
name=
"clientInfoInputVO.educationDegree"
v-model=
"clientInfoInputVO.educationDegree"
>
<option
v-for=
"(v, k) in education"
:value=
"k"
>
{{v}}
</option>
</select>
</span>
</div>
...
...
@@ -98,13 +118,13 @@
name=
"clientInfoInputVO.dwellState"
>
<span>
<?=
$v
?>
</span>
<?php
if
(
$k
==
0
)
:
?>
<input
type=
"text"
<?=
$clientInfoOutputVO
&&
$clientInfoOutputVO
->
dwellState
==
$k
?
$clientInfoOutputVO
->
dwellDetail
:
''
?>
<input
type=
"text"
value=
"
<?=
$clientInfoOutputVO
&&
$clientInfoOutputVO
->
dwellState
==
$k
?
$clientInfoOutputVO
->
dwellDetail
:
''
?>
"
class=
"input-decoration w-50 text-c"
name=
"clientInfoInputVO.dwellDetail"
value=
""
>
层
<?php
elseif
(
$k
==
1
)
:
?>
<input
type=
"text"
<?=
$clientInfoOutputVO
&&
$clientInfoOutputVO
->
dwellState
==
$k
?
$clientInfoOutputVO
->
dwellDetail
:
''
?>
<input
type=
"text"
value=
"
<?=
$clientInfoOutputVO
&&
$clientInfoOutputVO
->
dwellState
==
$k
?
$clientInfoOutputVO
->
dwellDetail
:
''
?>
"
name=
"clientInfoInputVO.dwellDetail"
class=
"input-decoration w-50 text-c"
>
万
<?php
elseif
(
$k
==
2
)
:
?>
<input
type=
"text"
<?=
$clientInfoOutputVO
&&
$clientInfoOutputVO
->
dwellState
==
$k
?
$clientInfoOutputVO
->
dwellDetail
:
''
?>
<input
type=
"text"
value=
"
<?=
$clientInfoOutputVO
&&
$clientInfoOutputVO
->
dwellState
==
$k
?
$clientInfoOutputVO
->
dwellDetail
:
''
?>
"
name=
"clientInfoInputVO.dwellDetail"
class=
"input-decoration w-50 text-c"
>
万
<?php
endif
;
?>
</div>
...
...
@@ -143,25 +163,18 @@
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
手机
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"clientInfoInputVO.phoneNumber"
value=
"
<?=
$clientInfoOutputVO
?
$clientInfoOutputVO
->
phoneNumber
:
''
?>
"
>
<input
type=
"text"
class=
"form-control input-text"
name=
"clientInfoInputVO.phoneNumber"
value=
"
<?=
$clientInfoOutputVO
?
$clientInfoOutputVO
->
phoneNumber
:
''
?>
"
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
户口所在地
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
id=
"province"
name=
"clientInfoInputVO.registerProvince"
>
<option
value=
""
></option>
<!-- <option value="0">农村</option>-->
<!-- <option value="1">城镇</option>-->
</select>
<select
class=
"select"
size=
"1"
id=
"province"
name=
"clientInfoInputVO.registerProvince"
></select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
id=
"city"
name=
"clientInfoInputVO.registerCity"
>
</select>
<select
class=
"select"
size=
"1"
id=
"city"
name=
"clientInfoInputVO.registerCity"
></select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
...
...
@@ -239,7 +252,7 @@
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
现单位入职时间
</label>
<input
type=
"text"
class=
"form-control input-text Wdate"
name=
"clientUnitInputVO.currentUnitEntryDate"
value=
"
<?=
$clientUnitOutputVO
?
$clientUnitOutputVO
->
currentUnitEntryDate
:
''
?>
"
>
value=
"
<?=
$clientUnitOutputVO
?
date
(
'Y-m-d'
,
$clientUnitOutputVO
->
currentUnitEntryDate
/
1000
)
:
''
?>
"
onfocus=
"WdatePicker()
"
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
现单位工作年限
</label>
...
...
@@ -334,6 +347,94 @@
</div>
</div>
<?php
endforeach
;
?>
<?php
else
:
?>
<div
class=
"row cl"
>
<input
type=
"hidden"
class=
"form-control input-text"
name=
"clientContactInputVOS.1.userId"
value=
"
<?=
$clientInfoOutputVO
?
$clientInfoOutputVO
->
id
:
''
?>
"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
联系人姓名
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"clientContactInputVOS.1.contactName"
value=
""
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
是您的
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
name=
"clientContactInputVOS.1.contactRelation"
onchange=
"relation(this)"
data-num=
"1"
>
<?php
foreach
(
$this
->
session
->
relationEnum
as
$k
=>
$v
)
:
?>
<option
value=
"
<?=
$k
?>
"
>
<?=
$v
?>
</option>
<?php
endforeach
;
?>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
手机号
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"clientContactInputVOS.1.contactPhone"
value=
""
onchange=
"phone(this)"
phone
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
工作单位
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"clientContactInputVOS.1.workUnit"
value=
""
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
工作地址
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"clientContactInputVOS.1.workAddress"
value=
""
>
</div>
</div>
<div
class=
"row cl"
>
<input
type=
"hidden"
class=
"form-control input-text"
name=
"clientContactInputVOS.2.userId"
value=
"
<?=
$clientInfoOutputVO
?
$clientInfoOutputVO
->
id
:
''
?>
"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
联系人姓名
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"clientContactInputVOS.2.contactName"
value=
""
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
是您的
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
name=
"clientContactInputVOS.2.contactRelation"
onchange=
"relation(this)"
data-num=
"2"
>
<?php
foreach
(
$this
->
session
->
relationEnum
as
$k
=>
$v
)
:
?>
<option
value=
"
<?=
$k
?>
"
>
<?=
$v
?>
</option>
<?php
endforeach
;
?>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
手机号
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"clientContactInputVOS.2.contactPhone"
value=
""
onchange=
"phone(this)"
phone
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
工作单位
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"clientContactInputVOS.2.workUnit"
value=
""
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
工作地址
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"clientContactInputVOS.2.workAddress"
value=
""
>
</div>
</div>
<div
class=
"row cl"
>
<input
type=
"hidden"
class=
"form-control input-text"
name=
"clientContactInputVOS.3.userId"
value=
"
<?=
$clientInfoOutputVO
?
$clientInfoOutputVO
->
id
:
''
?>
"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
联系人姓名
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"clientContactInputVOS.3.contactName"
value=
""
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
是您的
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
name=
"clientContactInputVOS.3.contactRelation"
onchange=
"relation(this)"
data-num=
"3"
>
<?php
foreach
(
$this
->
session
->
relationEnum
as
$k
=>
$v
)
:
?>
<option
value=
"
<?=
$k
?>
"
>
<?=
$v
?>
</option>
<?php
endforeach
;
?>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
手机号
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"clientContactInputVOS.3.contactPhone"
value=
""
onchange=
"phone(this)"
phone
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
工作单位
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"clientContactInputVOS.3.workUnit"
value=
""
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
工作地址
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"clientContactInputVOS.3.workAddress"
value=
""
>
</div>
</div>
<?php
endif
;
?>
<div
class=
"row cl hidden"
>
<input
type=
"hidden"
class=
"form-control input-text"
name=
"clientContactInputVOS.{k}.userId"
value=
"
<?=
$clientInfoOutputVO
?
$clientInfoOutputVO
->
id
:
''
?>
"
disabled
>
...
...
@@ -374,13 +475,16 @@
<input
type=
"hidden"
class=
"form-control input-text"
name=
"applyOrderVO.id"
value=
"
<?=
$applyOrderVO
?
$applyOrderVO
->
id
:
''
?>
"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label
id=
"applyMoney"
>
申请金额
</label>
<input
type=
"number"
class=
"form-control input-text"
name=
"applyOrderVO.applyMoney"
value=
"
<?=
$applyOrderVO
?
$applyOrderVO
->
applyMoney
:
''
?>
"
>
<input
type=
"number"
class=
"form-control input-text"
name=
"applyOrderVO.applyMoney"
value=
"
<?=
$applyOrderVO
?
$applyOrderVO
->
applyMoney
:
''
?>
"
v-model=
"applyOrderVO.applyMoney"
>
<span
class=
"glyphicon glyphicon-rmb form-control-feedback"
aria-hidden=
"true"
></span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label
id=
"deadline"
>
贷款期限
</label>
<input
type=
"number"
class=
"form-control input-text"
name=
"applyOrderVO.deadline"
value=
"
<?=
$applyOrderVO
?
$applyOrderVO
->
deadline
:
''
?>
"
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
期
</span>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
name=
"applyOrderVO.deadline"
v-model=
"applyOrderVO.deadline"
>
<option
v-for=
"deadline in loanDeadline"
:value=
"deadline * 6"
>
{{deadline * 6}}期
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
还款方式
</label>
...
...
@@ -395,14 +499,26 @@
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
贷款用途
</label>
<input
type=
"text"
class=
"form-control input-text"
name=
"applyOrderVO.use"
value=
"
<?=
$applyOrderVO
?
$applyOrderVO
->
use
:
''
?>
"
>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
c""
name=
"applyOrderVO.use"
v-model=
"applyOrderVO.use"
>
<option
v-for=
"(v, k) in loanPurpose"
:value=
"k"
>
{{v}}
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
贷款性质
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
c""
name=
"applyOrderVO.useNature"
v-model=
"applyOrderVO.useNature"
>
<option
v-for=
"(v, k) in nature"
:value=
"k"
>
{{v}}
</option>
</select>
</span>
</div>
</div>
</div>
</div>
<div
class=
"col-sm-offset-4 col-sm-4 pb-20"
>
<button
class=
"btn btn-primary btn-block"
type=
"button"
onclick=
"$('#tab').Huitab({index:
1
})"
>
下一步
<button
class=
"btn btn-primary btn-block"
type=
"button"
onclick=
"$('#tab').Huitab({index:
2
})"
>
下一步
</button>
</div>
</div>
...
...
@@ -420,6 +536,76 @@
<?php
$this
->
load
->
view
(
'common/footer'
);
?>
<script>
var vm = new Vue({
el: '#tab',
data: {
products: [],
product: {},
loanDeadline: 0,
loanPurpose: [],
nature: [],
education: [],
applyOrderVO: {},
clientInfoInputVO: {}
},
mounted () {
let _this = this;
instance.get('/config/products').then( ( {data} ) => {
this.products = data.data
});
instance.get('/order/detail/
<?=
$id
?>
').then( ( {data} ) => {
console.log(data.data);
this.applyOrderVO = data.data.orderVO;
this.clientInfoInputVO = data.data.clientInfoOutputVO;
});
instance.get('/dueDiligence/enum/loanPurpose').then( ({data}) => {
this.loanPurpose = data.data;
});
instance.get('/enum/loan/nature').then( ({data}) => {
this.nature = data.data;
});
instance.get('/client/enum/education').then( ({data}) => {
this.education = data.data;
});
},
methods: {
applyMoney () {
if (this.applyOrderVO.applyMoney > this.product.loanLimit ) {
layer.alert('<申请金额>不能超过最大值: ' + this.product.loanLimit);
this.applyOrderVO.applyMoney = this.product.loanLimit;
}
},
deadline () {
if (this.applyOrderVO.deadline > this.product.loanDeadline ) {
layer.alert('<贷款期限>不能超过最大值: ' + this.product.loanDeadline);
this.applyOrderVO.deadline = this.product.loanDeadline;
}
}
},
watch: {
'applyOrderVO.productId' (id) {
let _this = this;
instance.get('/config/product/'+ id).then( ( {data} ) => {
_this.product = data.data
_this.applyMoney();
_this.deadline();
});
},
'applyOrderVO.applyMoney' () {
this.applyMoney();
},
'product.loanDeadline' (deadline) {
this.loanDeadline = deadline / 6;
}
}
});
function getQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
...
...
@@ -463,9 +649,7 @@
var dwellDetail = $('[name=clientInfoInputVO\\.dwellState]:checked').parent().find('input[type=text]').val();
data.clientInfoInputVO.dwellDetail = dwellDetail;
if
(
!
checkContacts
(
data
.
clientContactInputVOS
))
{
return
;
}
console.log(data);
ajax('client/collection', 'post', data, '操作成功', function () {
window.parent.reload();
...
...
@@ -474,41 +658,7 @@
}
var loc = beva.locationutil.attach('province', 'city', 'county', 'address');
// $('input[name="applyOrderVO.products"]').on('change', function () {
// const limit = $(this).data('limit');
// const deadline = $(this).data('deadline');
//
// $('#applyMoney').html('申请金额(max: '+limit+')');
// $('#deadline').html('贷款期限(max: '+deadline+')');
// })
//
// $('input[name="applyOrderVO.applyMoney"]').on('keyup', function () {
// var product = $('input[name="applyOrderVO.products"]:checked');
// var limit = product.data('limit')
//
// if($(this).val() > limit) {
// $(this).val(limit)
// }
// });
$
(
'input[name="applyOrderVO.deadline"]'
).
on
(
'change'
,
function
()
{
// var product = $('input[name="applyOrderVO.products"]:checked');
// var deadline = product.data('deadline')
if
(
$
(
this
).
val
()
%
6
)
{
layer
.
alert
(
'期数只能是6的倍数'
);
$
(
this
).
val
(
''
);
}
// if($(this).val() > deadline) {
// $(this).val(deadline)
// }
});
$
(
"form"
).
validate
({
rules
:
{}
});
loc.setSelectedCodes(['
<?=
$clientInfoOutputVO
->
registerProvince
?>
', '
<?=
$clientInfoOutputVO
->
registerCity
?>
', '
<?=
$clientInfoOutputVO
->
registerCounty
?>
'
]);
uploadList
();
</script>
...
...
resource/location.js
View file @
ef21ff5
...
...
@@ -47,7 +47,9 @@ window.beva.locationutil = new function(){
}
item
.
children
.
forEach
(
function
(
idx
){
var
item
=
locations
[
idx
];
select
.
options
[
select
.
options
.
length
]
=
new
Option
(
item
.
name
,
item
.
code
);
var
option
=
new
Option
(
item
.
name
,
item
.
name
);
option
.
dataset
.
code
=
item
.
code
select
.
options
[
select
.
options
.
length
]
=
option
;
});
}
};
...
...
@@ -75,7 +77,7 @@ window.beva.locationutil = new function(){
province
.
value
=
pIndex
;
}
city
.
options
.
length
=
county
.
options
.
length
=
0
;
createOptions
(
city
,
province
.
valu
e
);
createOptions
(
city
,
province
.
options
[
province
.
selectedIndex
].
dataset
.
cod
e
);
if
(
cascading
||
typeof
cascading
===
"undefined"
)
{
if
(
city
.
value
)
...
...
@@ -92,7 +94,7 @@ window.beva.locationutil = new function(){
if
(
cascading
||
typeof
cascading
===
"undefined"
)
{
county
.
options
.
length
=
0
;
createOptions
(
county
,
city
.
valu
e
);
createOptions
(
county
,
city
.
options
[
city
.
selectedIndex
].
dataset
.
cod
e
);
}
},
selectCoun
:
function
(
cIndex
){
...
...
@@ -110,7 +112,7 @@ window.beva.locationutil = new function(){
{
this
.
selectProv
(
code
[
0
],
true
);
this
.
selectCity
(
code
[
1
],
true
);
if
(
code
[
2
]
&&
!
isNaN
(
parseInt
(
code
[
2
]))
)
if
(
code
[
2
])
{
this
.
selectCoun
(
code
[
2
]);
}
...
...
@@ -134,22 +136,23 @@ window.beva.locationutil = new function(){
createOptions
(
province
,
rootIndex
);
province
.
onchange
=
function
(){
util
.
selectProv
();
console
.
log
(
address
);
if
(
address
)
{
address
.
innerHTML
=
util
.
getSelectedText
();
address
.
value
=
util
.
getSelectedText
();
}
};
city
.
onchange
=
function
(){
util
.
selectCity
();
if
(
address
)
{
address
.
innerHTML
=
util
.
getSelectedText
();
address
.
value
=
util
.
getSelectedText
();
}
};
county
.
onchange
=
function
(){
if
(
address
)
{
address
.
innerHTML
=
util
.
getSelectedText
();
address
.
value
=
util
.
getSelectedText
();
}
};
...
...
resource/upload.js
View file @
ef21ff5
...
...
@@ -34,7 +34,14 @@ jQuery(function() {
// 当有文件添加进来的时候
uploader
.
on
(
'fileQueued'
,
function
(
file
)
{
uploader
.
options
.
server
=
'http://151.28ms.com:8088/order/ordersource/baseUpload?sourceType='
+
$
(
'#upload'
).
val
()
+
'&orderId='
+
$
(
'#orderId'
).
val
();
});
uploader
.
on
(
'fileDequeued'
,
function
(
file
)
{
removeFile
(
file
);
});
// 文件上传成功,给item添加成功class, 用样式标记上传成功。
uploader
.
on
(
'uploadSuccess'
,
function
(
file
,
response
)
{
var
$id
=
$
(
'select.uploader'
).
val
();
var
$tr
=
$
(
'tr[data-id='
+
$id
+
']'
);
...
...
@@ -50,10 +57,13 @@ jQuery(function() {
}
var
$list
=
$
(
'tr[data-id='
+
$id
+
'] .filelist'
);
var
$li
=
$
(
'<div id="'
+
file
.
id
+
'" class="file-item thumbnail">'
+
'<img>'
+
'<div class="info">'
+
file
.
name
+
'</div>'
+
'</div>'
),
var
$li
=
$
(
'<div id="'
+
file
.
id
+
'" class="file-item thumbnail" data-id="'
+
response
.
data
[
0
].
id
+
'">\
<a href="'
+
response
.
data
[
0
].
url
+
'" data-lightbox="image" data-title="'
+
response
.
data
[
0
].
fileName
+
'"><img src="'
+
response
.
data
[
0
].
url
+
'" width="100" hegiht="100" ></a>\
<div class="info">'
+
response
.
data
[
0
].
fileName
+
'</div>'
+
'</div>'
),
$btns
=
$
(
'<div class="file-panel">'
+
'<span class="cancel">删除</span>'
).
appendTo
(
$li
),
$img
=
$li
.
find
(
'img'
);
$img
.
attr
(
'src'
,
response
.
data
[
0
].
url
);
$img
.
attr
(
'alt'
,
response
.
data
[
0
].
fileName
);
$li
.
on
(
'mouseenter'
,
function
()
{
$btns
.
stop
().
animate
({
height
:
30
});
...
...
@@ -75,42 +85,6 @@ jQuery(function() {
$list
.
append
(
$li
);
// 创建缩略图
uploader
.
makeThumb
(
file
,
function
(
error
,
src
)
{
if
(
error
)
{
$img
.
replaceWith
(
'<span>不能预览</span>'
);
return
;
}
$img
.
attr
(
'src'
,
src
);
},
thumbnailWidth
,
thumbnailHeight
);
});
uploader
.
on
(
'fileDequeued'
,
function
(
file
)
{
removeFile
(
file
);
});
// 文件上传过程中创建进度条实时显示。
uploader
.
on
(
'uploadProgress'
,
function
(
file
,
percentage
)
{
var
$li
=
$
(
'#'
+
file
.
id
),
$percent
=
$li
.
find
(
'.progress span'
);
// 避免重复创建
if
(
!
$percent
.
length
)
{
$percent
=
$
(
'<p class="progress"><span></span></p>'
)
.
appendTo
(
$li
)
.
find
(
'span'
);
}
$percent
.
css
(
'width'
,
percentage
*
100
+
'%'
);
});
// 文件上传成功,给item添加成功class, 用样式标记上传成功。
uploader
.
on
(
'uploadSuccess'
,
function
(
file
,
response
)
{
var
img
=
$
(
'#'
+
file
.
id
);
img
.
data
(
'id'
,
response
.
data
[
0
].
id
);
});
// 文件上传失败,现实上传出错。
...
...
@@ -154,7 +128,7 @@ window.uploadList = function () {
data
.
data
[
s
].
forEach
(
function
(
item
)
{
html
+=
'<div id="WU_FILE_X_'
+
item
.
id
+
'" class="file-item thumbnail" data-id="'
+
item
.
id
+
'">\
<
img src="'
+
item
.
url
+
'" width="100" hegiht="100px"
>\
<
a href="'
+
item
.
url
+
'" data-lightbox="image" data-title="'
+
item
.
fileName
+
'"><img src="'
+
item
.
url
+
'" width="100" hegiht="100" ></a
>\
<div class="info">'
+
item
.
fileName
+
'</div>\
<div class="file-panel">\
<span class="cancel">删除</span>\
...
...
@@ -207,12 +181,6 @@ window.uploadList = function () {
layer
.
alert
(
'操作成功'
);
$li
.
off
().
find
(
'.file-panel'
).
off
().
end
().
remove
();
}
setTimeout
(
function
()
{
if
(
!
data
.
code
)
{
table
.
fnDraw
();
layer_close
();
}
},
500
);
},
error
:
function
()
{
layer
.
alert
(
"操作失败"
)
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment