getBanner.js 506 Bytes
/**
 * getBanner model
 * @author: gxh<xuhui.ge@yoho.cn>
 * @date: 2016/11/30
 */

'use strict';

const serviceApi = global.yoho.ServiceAPI;
const URL_OPERATIONS_RESOURCE_GET = 'operations/api/v5/resource/get';

/**
 * 获取资源数据
 *
 * @string content_code
 * @return array
 */
const getResource = content_code => {  //eslint-disable-line

    return serviceApi.get(URL_OPERATIONS_RESOURCE_GET, {
        content_code: content_code
    }, {cache: true});

};

module.exports = {
    getResource
};