|
@@ -348,7 +348,8 @@ export default {
|
|
|
const {Keywords,SellerId,CompanyStatus} = this.tableParams
|
|
|
const statisticRes = await overseasCustomInterence.getStatisticData({
|
|
|
CustomType:this.pageSelect,
|
|
|
- SellerId,Keywords
|
|
|
+ SellerId:(Array.isArray(SellerId)?SellerId.join(','):'')+'',
|
|
|
+ Keywords
|
|
|
})
|
|
|
if(statisticRes.Ret!==200) return
|
|
|
//客户状态
|
|
@@ -362,7 +363,8 @@ export default {
|
|
|
const {Keywords,SellerId} = this.tableParams
|
|
|
const statisticTryRes = await overseasCustomInterence.overseasCustomInterence({
|
|
|
CustomType:this.pageSelect,
|
|
|
- SellerId,Keywords
|
|
|
+ SellerId:(Array.isArray(SellerId)?SellerId.join(','):'')+'',
|
|
|
+ Keywords
|
|
|
})
|
|
|
if(statisticTryRes.Ret!==200) return
|
|
|
//客户试用状态
|