|
@@ -822,21 +822,17 @@ func (rg *RegisterController) Detail(c *gin.Context) {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- if item.SellerId != 0{
|
|
|
+ if item.SellerId != 0 {
|
|
|
item.SellerIds = strconv.Itoa(item.SellerId)
|
|
|
if item.RaiSellerId != 0 {
|
|
|
item.SellerIds += "," + strconv.Itoa(item.RaiSellerId)
|
|
|
}
|
|
|
} else {
|
|
|
if item.RaiSellerId != 0 {
|
|
|
- item.SellerIds += strconv.Itoa(item.RaiSellerId)
|
|
|
+ item.SellerIds = strconv.Itoa(item.RaiSellerId)
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- item.SellerIds = strconv.Itoa(item.SellerId)
|
|
|
- if item.RaiSellerId != 0 {
|
|
|
- item.SellerIds += "," + strconv.Itoa(item.RaiSellerId)
|
|
|
- }
|
|
|
+
|
|
|
item.SellerIds = strings.Trim(item.SellerIds, ",")
|
|
|
result.ContractRegisterItem = item
|
|
|
|