Commit 7f986620 authored by danfuman's avatar danfuman

修改

parent 0bf7ce66
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
width="316"> width="316">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="ps1"> <div class="ps1">
<div class="wordprimary ps2" @click="toDetail(scope.row,'')">{{scope.row.companyName}}</div> <div class="wordprimary ps2" @click="toDetail(scope.row,'')" v-html="scope.row.companyName"></div>
<div class="ps3"> <div class="ps3">
<el-tooltip class="item" effect="dark" content="写跟进" placement="top"> <el-tooltip class="item" effect="dark" content="写跟进" placement="top">
<div @click="toDetail(scope.row,'gjjl')"><img class="i" src="@/assets/images/project/edit_1.png"><img class="o" src="@/assets/images/project/edit_11.png"></div> <div @click="toDetail(scope.row,'gjjl')"><img class="i" src="@/assets/images/project/edit_1.png"><img class="o" src="@/assets/images/project/edit_11.png"></div>
......
...@@ -742,7 +742,7 @@ export default { ...@@ -742,7 +742,7 @@ export default {
}, },
cancelClaim(companyName){ cancelClaim(companyName){
this.dialogVisible1 = true; this.dialogVisible1 = true;
this.companyName = companyName; this.companyName = companyName.replace(/<[^>]+>/g, '');
}, },
confirm(){ confirm(){
api.cancelClaim(this.companyName).then(res=>{ api.cancelClaim(this.companyName).then(res=>{
...@@ -762,7 +762,7 @@ export default { ...@@ -762,7 +762,7 @@ export default {
}, },
handleClick(item){ handleClick(item){
this.companyId=item.companyId; this.companyId=item.companyId;
this.companyName=item.companyName; this.companyName=item.companyName.replace(/<[^>]+>/g, '');
infoHeader({companyId:this.companyId}).then(res => { infoHeader({companyId:this.companyId}).then(res => {
if(res.code === 200){ if(res.code === 200){
let registerAddress=res.data.provinceName let registerAddress=res.data.provinceName
...@@ -774,7 +774,7 @@ export default { ...@@ -774,7 +774,7 @@ export default {
} }
let params={ let params={
uipId:item.uipId, uipId:item.uipId,
companyName:item.companyName, companyName:item.companyName.replace(/<[^>]+>/g, ''),
companyId:item.companyId, companyId:item.companyId,
creditLevel:item.bratingSubjectLevel, creditLevel:item.bratingSubjectLevel,
legalPerson:res.data.corporatePerson, legalPerson:res.data.corporatePerson,
......
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