|
@@ -659,9 +659,10 @@ func (this *CompanyController) CompanyShareList() {
|
|
|
}
|
|
|
shareSeller := adminMap[shareSellerId]
|
|
|
if shareSeller != nil {
|
|
|
- companyList.ShareSeller += shareSeller.RealName + "(" + shareSeller.GroupName + ")"
|
|
|
+ companyList.ShareSeller += shareSeller.RealName + "(" + shareSeller.GroupName + ")" + "/"
|
|
|
}
|
|
|
}
|
|
|
+ companyList.ShareSeller = strings.TrimRight(companyList.ShareSeller, "/")
|
|
|
}
|
|
|
companyLists = append(companyLists, companyList)
|
|
|
}
|
|
@@ -1133,9 +1134,10 @@ func (this *CompanyController) CompanyShareListByCity() {
|
|
|
}
|
|
|
shareSeller := adminMap[shareSellerId]
|
|
|
if shareSeller != nil {
|
|
|
- companyList.ShareSeller += shareSeller.RealName + "(" + shareSeller.GroupName + ")"
|
|
|
+ companyList.ShareSeller += shareSeller.RealName + "(" + shareSeller.GroupName + ")" + "/"
|
|
|
}
|
|
|
}
|
|
|
+ companyList.ShareSeller = strings.TrimRight(companyList.ShareSeller, "/")
|
|
|
}
|
|
|
companyLists = append(companyLists, companyList)
|
|
|
}
|