Commit f9ce8db0 authored by caimeng's avatar caimeng

结清证明的身份证没传递的问题解决

parent da5d21f9
...@@ -12,10 +12,10 @@ ...@@ -12,10 +12,10 @@
//window.APIHOST = "http://192.168.0.50:8202"; //window.APIHOST = "http://192.168.0.50:8202";
//测试 //测试
window.APIHOST = "http://47.99.245.36:8202"; // window.APIHOST = "http://47.99.245.36:8202";
//生产环境 //生产环境
//window.APIHOST = "https://water.jqtianxia.com"; window.APIHOST = "https://water.jqtianxia.com";
</script> </script>
</head> </head>
......
...@@ -139,13 +139,11 @@ export default { ...@@ -139,13 +139,11 @@ export default {
}, },
handleShow(row, com, title) { handleShow(row, com, title) {
console.log(row, '当前行') console.log(row, '当前行')
console.log(this.basicInfo, '基础信息')
this.mcDialogVisible = true; this.mcDialogVisible = true;
this.mcItems = { this.mcItems = {
...row, ...row,
...this.loan, ...this.params
...this.loanModel,
...this.basicInfo,
...this.$route.query
}; };
this.mcTitle = title; this.mcTitle = title;
this.ActiveCom = com; this.ActiveCom = com;
......
...@@ -60,9 +60,9 @@ export default { ...@@ -60,9 +60,9 @@ export default {
const params = this.params; const params = this.params;
console.log(params, '很多信息'); console.log(params, '很多信息');
if (params.loanNo) { if (params.loanNo) {
const {capitalCode, clientName, certNo, loanNo,externalNo} = params; const {capitalCode, clientName, certNo,idCard, loanNo,externalNo} = params;
this.form.capitalCode = capitalCode; this.form.capitalCode = capitalCode;
this.form.certNo = certNo; this.form.certNo = idCard;
this.form.certName = clientName; this.form.certName = clientName;
//this.form.loanNo = loanNo; //this.form.loanNo = loanNo;
this.form.loanNo = externalNo; this.form.loanNo = externalNo;
......
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