|
@@ -42,7 +42,7 @@
|
|
|
<span v-else-if="item.key === 'company'">
|
|
|
{{ row.CooperationName || row.CompanyName }} <span v-if="(fromType == 'seller' || fromType == 'special') && row.CompanyStatus">{{`(${row.CompanyStatus})`}} </span>
|
|
|
|
|
|
- <el-tooltip effect="dark" placement="top-start" v-if="row.CompanyId" @mouseenter.native="getCompanyInfo(row.CompanyId)" popper-class="company-tip-poper">
|
|
|
+ <el-tooltip effect="dark" placement="top-start" v-if="row.CompanyId" @mouseenter.native="getCompanyInfo(row)" popper-class="company-tip-poper">
|
|
|
<i class="el-icon-info"/>
|
|
|
<div slot="content" v-if="companyInfo">
|
|
|
<p style="margin: 6px 0;">客户状态:{{companyInfo.Status}}</p>
|
|
@@ -158,8 +158,12 @@ export default {
|
|
|
},
|
|
|
|
|
|
/* 获取客户信息 */
|
|
|
- async getCompanyInfo(CompanyId) {
|
|
|
- const { Data } = await roadshowInterence.componyDetail({ CompanyId,CompanyType:this.form.departmentType });
|
|
|
+ async getCompanyInfo(row) {
|
|
|
+ const { Data } = await roadshowInterence.componyDetail({
|
|
|
+ CompanyId:row.CompanyId,
|
|
|
+ RsReportRecordId:row.RsReportRecordId,
|
|
|
+ CompanyType:this.form.departmentType
|
|
|
+ });
|
|
|
this.companyInfo = Data;
|
|
|
},
|
|
|
|