作者 yangfu

Merge branch 'dev' into test

... ... @@ -86,8 +86,9 @@ type (
Options []CategoryOptions `json:"options"`
}
CategoryOptions {
Value int64 `json:"value"` // 分类ID
Value int64 `json:"value"` // 分类ID
Label string `json:"label"` // 分组名称
Enable int `json:"enable,optional,omitempty"` // 启用状态 1:启用
//Options []CategoryOptionValue `json:"options,omitempty"`
}
CategoryOptionValue {
... ...
... ... @@ -38,8 +38,9 @@ func (l *ArticleCategoryOptionsLogic) ArticleCategoryOptions(req *types.Category
list := make([]types.CategoryOptions, 0)
for _, item := range dms {
list = append(list, types.CategoryOptions{
Label: item.Name,
Value: item.Id,
Label: item.Name,
Value: item.Id,
Enable: item.Enable,
})
}
resp = &types.CategoryOptionsResponse{
... ...
... ... @@ -1793,8 +1793,9 @@ type CategoryOptionsResponse struct {
}
type CategoryOptions struct {
Value int64 `json:"value"` // 分类ID
Label string `json:"label"` // 分组名称
Value int64 `json:"value"` // 分类ID
Label string `json:"label"` // 分组名称
Enable int `json:"enable,optional,omitempty"` // 启用状态 1:启用
}
type CategoryOptionValue struct {
... ...