Commit 6ff47e8a authored by 白日依山山山's avatar 白日依山山山

fix:方案信息、客户准入、待办

parent 1b7b4f37
......@@ -11,5 +11,5 @@ module.exports = {
ocrPath:'"http://180.104.121.66:8088/r/api"',
fileUploadSvcPath:'"http://180.104.121.66:8088/r/api/app/fileUploadSvc?sysName=XCMG_UAT&apiName="',
appId: '"com.xcmg.app.dev"',
currentVersion: '"3.6.2"'
currentVersion: '"3.6.5"'
}
......@@ -304,7 +304,7 @@ export default {
guarantorInfo: [], // 担保人信息
attachArray: [], // 附件数组
bp_class: this.$route.params.item.bp_class, // 承租人性质(自然人,企业)
info: {}, // 租赁信息
info: [], // 租赁信息
baseInfo: {}, // 基本信息
project_id: '',
bank_flag: false,
......@@ -816,7 +816,8 @@ export default {
vm.hlsHttp.post(url, param).then(function (res) {
vm.hlsPopup.hideLoading()
if (res.result === 'S') {
vm.info = res.quotation_lists
// vm.info = res.quotation_lists
vm.info[0] = res.info
}
})
},
......
......@@ -118,7 +118,7 @@ export default {
return
}
// 身份证校验
if (!this.hlsUtil.isCardID(obj.contact_card_no)) {
if (!this.hlsUtil.isCardNo(obj.contact_card_no)) {
hlsPopup.showLongCenter('联系人身份证格式错误!')
return
}
......@@ -225,8 +225,8 @@ export default {
},
createFormOrg () {
let orgInfo = [// 法人代表信息
['姓名', 'legal_person', 'bool'],
['身份证号', 'id_card_no', 'bool'],
['姓名', 'legal_person', 'text'],
['身份证号', 'id_card_no', 'text'],
['证件有效期从', 'id_card_date_from', 'date'],
['证件有效期到', 'id_card_date_to', 'date'],
['手机号', 'cell_phone', 'text'],
......@@ -236,8 +236,8 @@ export default {
},
createFormAuth () {
let authInfo = [// 法人授权信息
['姓名', 'auth_person_name', 'bool'],
['身份证号', 'auth_person_id_card', 'bool'],
['姓名', 'auth_person_name', 'text'],
['身份证号', 'auth_person_id_card', 'text'],
['证件有效期从', 'auth_id_card_date_from', 'date'],
['证件有效期到', 'auth_id_card_date_to', 'date'],
['联系电话', 'auth_cell_phone', 'text'],
......@@ -248,8 +248,8 @@ export default {
},
createForm_quality () {
let qualificationInfo = [// 资质信息
['是否黑名单', 'blackList_flag', 'text'],
['征信是否异常', 'credit_normal_flag', 'text'],
['是否黑名单', 'blackList_flag', 'bool'],
['征信是否异常', 'credit_normal_flag', 'bool'],
['评级结果', 'rating_result', 'text'],
]
return this.factory(qualificationInfo)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment