ziwen 2 年之前
父节点
当前提交
52c3aaa5ad
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. 11 0
      controller/contract/register.go

+ 11 - 0
controller/contract/register.go

@@ -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)