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
7847273f
authored
2018-04-10 02:16:00 +0800
by
Zelig
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
电核
1 parent
c39daada
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
351 additions
and
194 deletions
application/views/work/审批/电核.php
application/views/work/审批/电核结果.php
application/views/work/审批/电核.php
View file @
7847273
...
...
@@ -54,17 +54,17 @@
</tbody>
</table>
</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>
</div>
<!--<div class="col-sm-2">
<button class="btn btn-danger btn-block" onclick="refuse()">拒绝</button>
</div>-->
<div
class=
"col-sm-2"
>
<button
class=
"btn btn-primary btn-block"
onclick=
"pass()"
>
通过
</button>
<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>
</div>
<!--<div class="col-sm-2">
<button class="btn btn-danger btn-block" onclick="refuse()">拒绝</button>
</div>-->
<div
class=
"col-sm-2"
>
<button
class=
"btn btn-primary btn-block"
@
click=
"submit()"
>
通过
</button>
</div>
</div>
</div>
...
...
@@ -74,54 +74,178 @@
var vm = new Vue({
el: '#tab',
data: {
clientInfoOutputVO: {},
clientContactOutputVOS: {},
orderVO: {},
records: [],
use: [],
nature: [],
phoneAudit: {
"accountAddress":"",
"applyAmount":0,
"buildingArea":0,
"chineseZodiac":"",
"companyName":"",
"companyPhoneNumber":"",
"constructionTime":"",
"contacts":[
{},
{},
{},
],
"creditCardMonthRepayAmount":0,
"currentCompanyAddress":"",
"currentCompanyEntryTime":"",
"decorationCost":0,
"familyMembers":[
{},
{},
{},
],
"familySituationIsReal":0,
"financialInstitutions":[
{},
{},
{},
],
"hasProvidentFund":0,
"hasSocialInsurance":0,
"housingValuation":0,
"id":0,
"idCard":"",
"identityInformationOptions":0,
"identityInformationRemark":"",
"incomeCertifies":"",
"incomeCertifiesJobTitle":"",
"jianAnValuation":0,
"jobTitle":"",
"liveYears":0,
"livingCondition":0,
"loanMonthRepayAmount":0,
"loanPeriod":0,
"loanUse":"",
"maritalRemark":"",
"maritalStatus":0,
"monthlyIncome":0,
"name":"",
"nowAddress":"",
"operateInformationOptions":0,
"operateInformationRemark":"",
"orderId":0,
"otherAssets":"",
"otherAssetsDetail":"",
"otherAssetsValuation":0,
"overdueReasons":"",
"permanentPopulation":0,
"populationComposition":"",
"providentFundAmount":0,
"realEstateAmount":0,
"salaryPaymentForm":0,
"socialInsuranceAmount":0,
"totalAssetsAmount":0,
"totalCreditLiabilityAmount":0,
"totalNoneCreditLiabilityAmount":0,
"vehicleBrands":"string",
"vehicleNumber":0,
"vehicleValuation":0,
"whetherLongResidence":0,
"workingYears":0
},
records: {},
use: {},
marry: {},
nature: {},
relation: {},
dwell: {},
wagePaymentForm: {},
},
mounted () {
this.getRecords();
this.getClient();
this.getUse();
this.getNature();
this.getEnum();
},
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;
getEnum () {
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;
});
instance.get('client/enum/marry').then( ( {data} ) => {
this.marry = data.data;
});
instance.get('client/enum/contact/relation').then( ( {data} ) => {
this.relation = data.data;
});
instance.get('client/enum/dwell').then( ( {data} ) => {
this.dwell = data.data;
});
instance.get('client/enum/wagePaymentForm').then( ( {data} ) => {
this.wagePaymentForm = data.data;
});
},
addFamilyMembers () {
this.phoneAudit.familyMembers.push({});
},
addContacts () {
this.phoneAudit.contacts.push({});
},
addFinancialInstitution () {
this.phoneAudit.financialInstitutions.push({});
},
getPhoneAudit: function () {
instance.get('/audit/phoneAudit/
<?=
$id
?>
').then( ( {data} ) => {
if(data.data) {
this.phoneAudit = data.data;
}
});
},
submit () {
var data = this.phoneAudit;
var url = '
<?=
site_url
(
'/work/check/9/'
.
$id
);
?>
';
$.ajax({
type: 'post',
url: apiBaseUrl + 'audit/phoneAudit',
cache: false,
data: JSON.stringify(data),
dataType: 'json',
contentType: "application/json; charset=UTF-8",
success: function (data) {
if (data.msg) {
layer.alert(data.msg);
} else if (data.code != 0) {
layer.alert('操作失败');
} else {
layer.alert('操作成功');
}
if(!data.code){
setTimeout(function () {
loadIframe(url, '审核意见');
}, 500)
}
},
error: function () {
layer.alert("操作失败")
}
})
}
},
filters: {
shengxiao(birthDate){
let yyyy = new Date(birthDate).getFullYear();
var arr=['猴','鸡','狗','猪','鼠','牛','虎','兔','龙','蛇','马','羊'];
return /^\d{4}$/.test(yyyy)?arr[yyyy%12]:null;
watch: {
'phoneAudit.idCard' (idCard) {
if(idCard.length >= 10) {
var yyyy = idCard.substring(6, 10)
var arr=['猴','鸡','狗','猪','鼠','牛','虎','兔','龙','蛇','马','羊'];
this.phoneAudit.chineseZodiac = /^\d{4}$/.test(yyyy)?arr[yyyy%12]:null;
} else {
this.phoneAudit.chineseZodiac = '';
}
}
// shengxiao(idCard){
// substring
// var arr=['猴','鸡','狗','猪','鼠','牛','虎','兔','龙','蛇','马','羊'];
// return /^\d{4}$/.test(yyyy)?arr[yyyy%12]:null;
// }
}
});
...
...
@@ -154,36 +278,6 @@
content: '
<?=
site_url
(
'work/telRefuse'
)
?>
'
});
}
function pass() {
var data = $("#form1").serializeJson();
var url = '
<?=
site_url
(
'/work/check/9/'
.
$id
);
?>
';
$.ajax({
type: '
post
',
url: apiBaseUrl + '
audit
/
phoneAudit
',
cache: false,
data: JSON.stringify(data),
dataType: '
json
',
contentType: "application/json; charset=UTF-8",
success: function (data) {
if (data.msg) {
layer.alert(data.msg);
} else if (data.code != 0) {
layer.alert('
操作失败
');
} else {
layer.alert('
操作成功
');
}
if(!data.code){
setTimeout(function () {
loadIframe(url, '
审核意见'
);
},
500
)
}
},
error
:
function
()
{
layer
.
alert
(
"操作失败"
)
}
})
}
</script>
</body>
</html>
...
...
application/views/work/审批/电核结果.php
View file @
7847273
...
...
@@ -4,34 +4,38 @@
<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.userName"
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"phoneAudit.name"
>
</div>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
身份证号码
</label>
<input
type=
"text"
class=
"form-control input-text"
:value=
"clientInfoOutputVO.idCard"
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"phoneAudit.idCard"
>
</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
>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"phoneAudit.chineseZodiac
"
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
>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
v-model=
"phoneAudit.maritalStatus"
>
<option
v-for=
"(v, index) in marry"
:value=
"index"
>
{{v}}
</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=
"clientInfoOutputVO.registerDetailAddress"
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"phoneAudit.accountAddress"
>
</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
>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"phoneAudit.nowAddress"
>
</div>
</div>
...
...
@@ -39,16 +43,15 @@
<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>
<select
class=
"select"
size=
"1"
v-model=
"phoneAudit.identityInformationOptions"
>
<option
value=
"1"
>
真实
</option>
<option
value=
"
2"
>
其他
</option>
<option
value=
"
0"
>
不真实
</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=
"备注
"
>
<input
type=
"text"
class=
"form-control input-text"
placeholder=
"备注"
v-model=
"phoneAudit.identityInformationRemark
"
>
</div>
</div>
</div>
...
...
@@ -60,71 +63,102 @@
<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=
"orderVO.applyMoney"
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"phoneAudit.applyAmount"
>
<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>
<input
type=
"text"
class=
"form-control input-text"
readonly
:value=
"orderVO.deadline"
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"phoneAudit.loanPeriod"
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
期
</span>
</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
>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"phoneAudit.loanUse"
>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
家庭情况
</div>
<div
class=
"panel-header"
>
家庭情况
<button
class=
"btn btn-primary radius"
type=
"button"
@
click=
"addFamilyMembers()"
>
添加家庭关系
</button>
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<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>
<div
class=
"row cl"
v-for=
"familyMember in phoneAudit.familyMembers"
>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
关系
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
v-model=
"familyMember.relation"
>
<option
v-for=
"(v, index) in relation"
:value=
"index"
>
{{v}}
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<label>
关系备注
</label>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"familyMember.relationRemark"
>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
年龄
</label>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"familyMember.age"
>
<span
class=
"glyphicon form-control-feedback"
>
岁
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
工作
</label>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"familyMember.work"
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
placeholder=
"现在哪里做什么"
>
<label>
地址
</label>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"familyMember.address"
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-
3 col-md-2
"
>
<div
class=
"form-group col-sm-
2 col-md-1
"
>
<label>
居住状况
</label>
<span
class=
"form-control select-box
disabled
"
>
<select
class=
"select"
size=
"1"
disabled
>
<option
v
alue=
""
>
</option>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
v-model=
"phoneAudit.livingCondition"
>
<option
v
-for=
"(v, index) in dwell"
:value=
"index"
>
{{v}}
</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
>
<input
type=
"text"
class=
"input-text"
v-model=
"phoneAudit.liveYears"
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
年
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
常驻人口
</label>
<input
type=
"text"
class=
"input-text"
v-model=
"phoneAudit.permanentPopulation"
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
人
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
建筑面积
</label>
<input
type=
"text"
class=
"input-text"
v-model=
"phoneAudit.buildingArea"
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
m^2
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
建造时间
</label>
<input
type=
"text"
class=
"input-text"
v-model=
"phoneAudit.constructionTime"
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
年
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
装修花费
</label>
<input
type=
"text"
class=
"input-text"
v-model=
"phoneAudit.decorationCost"
>
<span
class=
"glyphicon form-control-feedback"
aria-hidden=
"true"
>
元
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
长期居住
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
v-model=
"phoneAudit.whetherLongResidence"
>
<option
value=
"1"
>
是
</option>
<option
value=
"0"
>
否
</option>
</select>
</span>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-12"
>
<label>
常驻人口/结构
</label>
<textarea
class=
"textarea"
disabled
></textarea>
<label>
人口组成
</label>
<textarea
class=
"textarea"
v-model=
"phoneAudit.populationComposition"
></textarea>
</div>
</div>
...
...
@@ -132,10 +166,10 @@
<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
class=
"select"
size=
"1"
v-model=
"phoneAudit.familySituationIsReal"
>
<option
value=
"
0
"
>
不真实
</option>
<option
value=
"
1
"
>
真实
</option>
<option
value=
"
2
"
>
其他
</option>
</select>
</span>
</div>
...
...
@@ -144,53 +178,65 @@
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
联系人核查
</div>
<div
class=
"panel-header"
>
联系人核查
<button
class=
"btn btn-primary radius"
type=
"button"
@
click=
"addContacts()"
>
添加联系人
</button>
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
v-for=
"
item in clientContactOutputVOS
"
>
<div
class=
"form-group col-sm-
3 col-md-2
"
>
<div
class=
"row cl"
v-for=
"
contact in phoneAudit.contacts
"
>
<div
class=
"form-group col-sm-
2 col-md-1
"
>
<label>
姓名
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"contact.name"
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
姓名是否真实
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
v-model=
"contact.nameIsReal"
>
<option
value=
"1"
>
是
</option>
<option
value=
"0"
>
否
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
电话号码
</label>
<input
type=
"text"
class=
"form-control input-text"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"contact.phoneNumber"
>
</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>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
本地号码
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
v-model=
"contact.phoneNumberIsLocal"
>
<option
value=
"1"
>
是
</option>
<option
value=
"0"
>
否
</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>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
关系
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
v-model=
"contact.relation"
>
<option
v-for=
"(v, index) in relation"
:value=
"index"
>
{{v}}
</option>
</select>
</span>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
联系人核查
</label>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
关系是否真实
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
>
<option
value=
""
>
不真实
</option>
<option
value=
""
>
真实
</option>
<option
value=
""
>
其他
</option>
<select
class=
"select"
size=
"1"
v-model=
"contact.relationIsReal"
>
<option
value=
"1"
>
是
</option>
<option
value=
"0"
>
否
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-2 col-md-1"
>
<label>
知晓贷款
</label>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
v-model=
"contact.isKnowLoan"
>
<option
value=
"1"
>
是
</option>
<option
value=
"0"
>
否
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
备注
</label>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"contact.remark"
>
</div>
</div>
</div>
</div>
...
...
@@ -201,80 +247,80 @@
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
单位名称
</label>
<input
type=
"text"
class=
"form-control input-text"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.companyName"
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
单位电话
</label>
<input
type=
"text"
class=
"form-control input-text"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.companyPhoneNumber"
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
职
称
名称
</label>
<input
type=
"text"
class=
"form-control input-text"
v
alue=
""
disabled
>
<label>
职
务
名称
</label>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.jobTitle"
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
入职时间
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"phoneAudit.currentCompanyEntryTime"
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
工作年限
</label>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"phoneAudit.workingYears"
>
<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"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.monthlyIncome"
>
<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"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.incomeCertifies"
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
收入证明人职位
</label>
<input
type=
"text"
class=
"form-control input-text"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.incomeCertifiesJobTitle"
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
社保
</label>
<input
type=
"text"
class=
"form-control input-text"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.socialInsuranceAmount"
>
<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"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.providentFundAmount"
>
<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>
<span
class=
"form-control select-box"
>
<select
class=
"select"
size=
"1"
v-model=
"phoneAudit.salaryPaymentForm"
>
<option
v-for=
"(v, index) in wagePaymentForm"
:value=
"index"
>
{{v}}
</option>
</select>
</span>
</div>
<div
class=
"form-group col-sm-6 col-md-4"
>
<label>
单位所在地
</label>
<input
type=
"text"
class=
"form-control input-text"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.currentCompanyAddress"
>
</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
class=
"select"
size=
"1"
v-model=
"phoneAudit.operateInformationOptions"
>
<option
value=
"1"
>
真实
</option>
<option
value=
"0"
>
不真实
</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=
"备注
"
>
<input
type=
"text"
class=
"form-control input-text"
placeholder=
"备注"
v-model=
"phoneAudit.operateInformationRemark
"
>
</div>
</div>
</div>
</div>
<div
class=
"panel panel-default mb-20"
>
<
!-- <
div class="panel panel-default mb-20">
<div class="panel-header">经营财务数据(可选)</div>
<div class="panel-body">
<div class="row cl">
...
...
@@ -388,7 +434,7 @@
</div>
</div>
</div>
</div>
</div>
-->
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
资产信息
</div>
...
...
@@ -396,56 +442,56 @@
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
房产
</label>
<input
type=
"text"
class=
"form-control input-text"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.realEstateAmount"
>
<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"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.housingValuation"
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
建按估值
</label>
<input
type=
"text"
class=
"form-control input-text"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.jianAnValuation"
>
</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"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.vehicleNumber"
>
<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"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.vehicleBrands"
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
现
估值
</label>
<input
type=
"text"
class=
"form-control input-text"
v
alue=
""
disabled
>
<label>
车辆
估值
</label>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.vehicleValuation"
>
</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"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.otherAssets"
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
资产内容
</label>
<input
type=
"text"
class=
"form-control input-text"
v
alue=
""
disabled
>
<label>
其他
资产内容
</label>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.otherAssetsDetail"
>
</div>
<div
class=
"form-group col-sm-3 col-md-1"
>
<label>
现
估值
</label>
<input
type=
"text"
class=
"form-control input-text"
v
alue=
""
disabled
>
<label>
其他资产
估值
</label>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.otherAssetsValuation"
>
</div>
</div>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-
4
col-md-2"
>
<div
class=
"form-group col-sm-
3
col-md-2"
>
<label>
合计资产
</label>
<input
type=
"text"
class=
"form-control input-text"
v
alue=
""
disabled
>
<input
type=
"text"
class=
"form-control input-text"
v
-model=
"phoneAudit.totalAssetsAmount"
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
</div>
<div
class=
"row cl"
>
<
!-- <
div class="row cl">
<div class="form-group col-sm-6 col-md-4">
<label>还款能力</label>
<span class="form-control select-box">
...
...
@@ -457,7 +503,7 @@
</select>
</span>
</div>
</div>
</div>
-->
</div>
</div>
...
...
@@ -465,12 +511,24 @@
<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
>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"phoneAudit.totalCreditLiabilityAmount"
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
合计非征信负责
</label>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"phoneAudit.totalNoneCreditLiabilityAmount"
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
信用卡每月还款金额
</label>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"phoneAudit.creditCardMonthRepayAmount"
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
贷款每月还款金额
</label>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"phoneAudit.loanMonthRepayAmount"
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
</div>
...
...
@@ -478,15 +536,20 @@
</div>
<div
class=
"panel panel-default mb-20"
>
<div
class=
"panel-header"
>
其他金融机构业务
</div>
<div
class=
"panel-header"
>
其他金融机构业务
<button
class=
"btn btn-primary radius"
type=
"button"
@
click=
"addFinancialInstitution()"
>
添加其他金融机构
</button>
</div>
<div
class=
"panel-body"
>
<div
class=
"row cl"
>
<div
class=
"form-group col-sm-12"
>
<textarea
class=
"textarea"
placeholder=
"根据录入的信用报告核对征信负责, 核对贷款每还还款金额, 信用卡每月还款额, 逾期原因"
></textarea>
<div
class=
"row cl"
v-for=
"financialInstitution in phoneAudit.financialInstitutions"
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
非征信的金融机构名称
</label>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"financialInstitution.financialInstitutionName"
>
</div>
<div
class=
"form-group col-sm-4 col-md-2"
>
<label>
合计非征信负责
</label>
<input
type=
"text"
class=
"form-control input-text"
value=
""
disabled
>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
借款金额
</label>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"financialInstitution.loanAmount"
>
</div>
<div
class=
"form-group col-sm-3 col-md-2"
>
<label>
月还款
</label>
<input
type=
"text"
class=
"form-control input-text"
v-model=
"financialInstitution.monthlyRepayAmount"
>
<span
class=
"glyphicon form-control-feedback"
>
元
</span>
</div>
</div>
...
...
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