🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 科室信息 ## 接口调用 #### 请求地址 ``` GET http://itnoob.net/hospital/api/getDepartment ``` #### 返回data参数 | 名称 | 类型 | 说明 | | --- | --- |--- | | hospital| string | 医院名称 | | code|int | 科室编号 | | name|string | 科室名称 | | logo | string| 科室LOGO 例如: "/public/upload/file/logo.png" 用时需加上域名 | | feature|string | 科室特色| | address|string |科室地址 | | tel | string |科室电话 | | description| string |科室简介| | sort| int|排序| | update_time|int |更新时间 (时间戳)| #### 返回数据示例 ``` [ { "hospital": "渠县人民医院", "name": "信息科", "code": "3", "logo": "", "address": "", "tel": "0818-7222902", "description": "<p>信息化建设</p>", "feature": null, "sort": "0", "update_time": "1650019731" }, { "hospital": "渠县人民医院", "name": "儿科", "code": "6", "logo": "", "address": "", "tel": "0818-7322335", "description": "<p>儿科</p>", "feature": null, "sort": "0", "update_time": "1650628787" } ] ```