|
@@ -384,6 +384,11 @@ func (this *CompanyController) SearchList() {
|
|
|
btnCompanyStatusItem = services.GetLsitCompanyStatusButton(list[i].CompanyType, list[i].Status, list[i].SigningStatus)
|
|
|
list[i].CompanyStatusButton = btnCompanyStatusItem
|
|
|
}
|
|
|
+
|
|
|
+ for _, v := range list {
|
|
|
+ v.Status = strings.Replace(v.Status, utils.COMPANY_STATUS_FOREVER, utils.COMPANY_STATUS_X_CLASS_TRY_OUT, -1) // 永续客户类型,映射成 X类试用
|
|
|
+ v.Duration = strings.Replace(v.Status, utils.COMPANY_STATUS_FOREVER, utils.COMPANY_STATUS_X_CLASS_TRY_OUT, -1) // 永续客户类型,映射成 X类试用
|
|
|
+ }
|
|
|
if list == nil {
|
|
|
list = make([]*company.CompanySearchItem, 0)
|
|
|
}
|