Browse Source

Merge remote-tracking branch 'origin/dev4.5' into dev4.5

wangkaiyue 4 years ago
parent
commit
904bd05f9c

+ 0 - 1
src/jfw/modules/publicapply/src/bidcollection/entity/entity.go

@@ -19,7 +19,6 @@ func IsCollByBids(bids, userid string) map[string]interface{} {
 	res := map[string]interface{}{}
 	for _, v := range strings.Split(bids, ",") {
 		//招标信息解密
-		log.Println("v:", v)
 		res[url.QueryEscape(v)] = false
 		bid := util.DecodeId(v)
 		if labArr := *db.Mysql.SelectBySql(fmt.Sprintf("select * from %s where bid = ? and userid = ?", db.DbConf.Bdcollection), bid, userid); len(labArr) == 1 {

+ 0 - 1
src/jfw/modules/publicapply/src/bidcollection/service/service.go

@@ -19,7 +19,6 @@ func (this *ServiceStruct) IsCollAction() {
 		if this.GetString("bids") == "" {
 			return Result{Data: nil, Error_msg: Error_msg_1003}
 		}
-		log.Println(this.GetString("bids"), "++++++++")
 		return Result{Data: entity.IsCollByBids(this.GetString("bids"), userId)}
 	}()
 	this.ServeJson(r)