|
@@ -300,10 +300,12 @@ func (s *Short) Article(stype, id string) error {
|
|
|
//免费用户正文手机号替换
|
|
|
if obj["site"] == "剑鱼信息发布平台" && !isMember {
|
|
|
//采购电话中标单位电话置空
|
|
|
- if util.Int64All(obj["buyerhint"]) == 1 {
|
|
|
+ if obj["buyertel"] != "" {
|
|
|
obj["buyertel"] = "freeView"
|
|
|
}
|
|
|
- obj["winnertel"] = "freeView"
|
|
|
+ if obj["winnertel"] != "" {
|
|
|
+ obj["winnertel"] = "freeView"
|
|
|
+ }
|
|
|
//正文电话 手机号 邮箱处理
|
|
|
if detail, _ := obj["detail"].(string); detail != "" {
|
|
|
//手机号
|
|
@@ -449,10 +451,12 @@ func (s *Short) Article(stype, id string) error {
|
|
|
//免费用户正文手机号替换
|
|
|
if obj["site"] == "剑鱼信息发布平台" && !isMember {
|
|
|
//采购电话中标单位电话置空
|
|
|
- if util.Int64All(obj["buyerhint"]) == 1 {
|
|
|
+ if obj["buyertel"] != "" {
|
|
|
obj["buyertel"] = "freeView"
|
|
|
}
|
|
|
- obj["winnertel"] = "freeView"
|
|
|
+ if obj["winnertel"] != "" {
|
|
|
+ obj["winnertel"] = "freeView"
|
|
|
+ }
|
|
|
//正文电话 手机号 邮箱处理
|
|
|
if detail, _ := obj["detail"].(string); detail != "" {
|
|
|
//手机号
|