|
@@ -822,6 +822,17 @@ func (rg *RegisterController) Detail(c *gin.Context) {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+ 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.SellerId)
|
|
|
if item.RaiSellerId != 0 {
|
|
|
item.SellerIds += "," + strconv.Itoa(item.RaiSellerId)
|