主题接口

## 获取主题 ### 请求动作/路径 GET /v1/themes ### 请求参数 参数名|参数值类型|描述|是否必须|备注 :---:|:---:|:---:|:---:|:---: 租户id| tenantId| 租户id | 是 | 0为通用模板 ### 响应参数 参数名|参数值类型|描述|是否必须|备注 :---:|:---:|:---:|:---:|:---: code | int| 返回编码 |是 | msg|str|返回消息|是| data|object|数据|是| id|long|id|是| name|str|应用名称|是| logo|str|LOGO|是|LOGO文件路径名称 logoPath|str|LOGO路径|是|LOGO文件路径,与logo字段结合使用 themeColor|str|主题色|是| backgroundColor|str|大背景颜色|是| menuFontColor|str|菜单字体颜色|是| bodyFontColor|str|内容字体颜色|是| gameBackgroundColor|str|游戏背景色|是| menuBackgroundColor|str|菜单背景色|是| auxiliaryLineColor|str|辅助线色|是| imageUrl|str|图片路径|是|用当前主机拼接 createTime|datetime|创建时间|是| updateTime|datetime|更新时间|是| ### 请求示例 ### 响应示例 ```{ "code":0, "msg":"成功", "data":[ { "id":1, "name":"df", "logo": "1234.jpg", "logoPath": "/usr/local/ecloud-game/theme/", "themeColor":"#0000ff", "backgroundColor":"#0000ff", "menuFontColor":"#0000ff", "bodyFontColor":"#0000ff", "gameBackgroundColor": null, "menuBackgroundColor": null, "auxiliaryLineColor": "#9D1414", "imageUrl": "/v1/theme/1234.jpg" } ] } ```