🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
**请求方式:** GET **请求地址:** `/taxi.php/getNotice` **参数说明:** | 参数 | 参数类型 | 必须 | 说明| | ----------- | ------------------------------ | ------------ | --- | | uuid | String | yes | 登录获取的uuid | **返回信息** | 参数 | 参数类型 | 必须 | 说明| | ----------- | ------------------------------ | ------------ | --- | | id| Integer| yes | id| | title| String| yes | 标题| | image| String| yes | 图片路径| | type| Integer | yes | 公告类型 1 文本、2 外链| | linkurl| String| yes | 外部url| | popup| Integer| yes | 是否弹窗 2 是、1 否 | **返回示例:** ``` { "errcode": 0, "errmsg": "ok", "data": [ { "title": "测试公告2", "image": "admin/20200704\\a617b39e8c1311be03ad43cd9d77c494.png", "type": 1, "content": "", "linkurl": "http://www.baidu.com", "popup": 2 }, { "title": "综合测试", "image": "admin/20200704\\0e4dad75fd45e4d1c8e3fc4b4bfd9b5a.png", "type": 1, "content": "测试公告3", "linkurl": "http://www.test3.com", "popup": 2 } ] } ```