Commit 7f986620 authored by danfuman's avatar danfuman

修改

parent 0bf7ce66
......@@ -46,7 +46,7 @@
width="316">
<template slot-scope="scope">
<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">
<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>
......
......@@ -742,7 +742,7 @@ export default {
},
cancelClaim(companyName){
this.dialogVisible1 = true;
this.companyName = companyName;
this.companyName = companyName.replace(/<[^>]+>/g, '');
},
confirm(){
api.cancelClaim(this.companyName).then(res=>{
......@@ -762,7 +762,7 @@ export default {
},
handleClick(item){
this.companyId=item.companyId;
this.companyName=item.companyName;
this.companyName=item.companyName.replace(/<[^>]+>/g, '');
infoHeader({companyId:this.companyId}).then(res => {
if(res.code === 200){
let registerAddress=res.data.provinceName
......@@ -774,7 +774,7 @@ export default {
}
let params={
uipId:item.uipId,
companyName:item.companyName,
companyName:item.companyName.replace(/<[^>]+>/g, ''),
companyId:item.companyId,
creditLevel:item.bratingSubjectLevel,
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