|
@@ -23,10 +23,17 @@ func Address(r *GinRouter) {
|
|
|
if err != nil {
|
|
|
return nil, errors.New("非法用户")
|
|
|
}
|
|
|
+ if entity.Addr == "" {
|
|
|
+ return nil, errors.New("地址不能为空")
|
|
|
+ }
|
|
|
+ if entity.Contact == "" {
|
|
|
+ return nil, errors.New("联系人不能为空")
|
|
|
+ }
|
|
|
entity.UserId = userId
|
|
|
+ // 默认设置第一条数据为默认数据
|
|
|
first, _ := repo.RepoCountDoc(apictx.CreateRepoCtx(), repo.CollectionAddress, repo.Map{"userId": userId})
|
|
|
if first > 0 {
|
|
|
- entity.Defualt = 2
|
|
|
+ entity.Defualt = -1
|
|
|
} else {
|
|
|
entity.Defualt = 1
|
|
|
}
|
|
@@ -39,18 +46,20 @@ func Address(r *GinRouter) {
|
|
|
return &model.Address{}
|
|
|
},
|
|
|
JWT: true,
|
|
|
- SearchFilter: func(c *gin.Context, apictx *ApiSession, query map[string]interface{}) map[string]interface{} {
|
|
|
+ SearchFilter: func(_ *gin.Context, apictx *ApiSession, query map[string]interface{}) map[string]interface{} {
|
|
|
_userId := apictx.User.ID
|
|
|
userId, err := primitive.ObjectIDFromHex(_userId)
|
|
|
if err != nil {
|
|
|
// 6369f4b028c4bf8b14f47a6b
|
|
|
invalidId, _ := primitive.ObjectIDFromHex("6369f4b028c4bf8b14f47a6b")
|
|
|
- return repo.Map{"userId": invalidId}
|
|
|
+ query["userId"] = invalidId
|
|
|
+ return query
|
|
|
}
|
|
|
|
|
|
- return repo.Map{"userId": userId}
|
|
|
+ query["userId"] = userId
|
|
|
+ return query
|
|
|
},
|
|
|
- SearchProject: []string{"area", "addr", "contact", "phone", "defualt", "createTime"},
|
|
|
- DetailProject: []string{"area", "addr", "contact", "phone", "defualt", "createTime"},
|
|
|
+ SearchProject: []string{"province", "city", "area", "addr", "contact", "phone", "defualt", "createTime"},
|
|
|
+ DetailProject: []string{"province", "city", "area", "addr", "contact", "phone", "defualt", "createTime"},
|
|
|
})
|
|
|
}
|