yd-header
Version:
> yd-header
22 lines (21 loc) • 664 B
JavaScript
/*
* @Description: getBoardConfig
* @Author: huangyanmei
* @Date: 2021-06-07 16:40:06
*/
module.exports = function(app) {
/* 这里的 app 是 express 创建的一个应用 */
// get
app.get('/cep/custom/get-logo-url', function(req, res) {
res.json({
"code": 200,
"message": "操作成功",
"cacheTime": null,
"data": {
"logo": "http://project-repo02.ctyundao.test/artifactory/yundao-cep-repo/train/staticImages/logo.png",
"help": "http://help.ctyundao.test/user/_book/",
"logoIcon": "http://project-repo02.ctyundao.test/artifactory/yundao-cep-repo/train/staticImages/logo.png",
}
})
});
}