Authored by biao

update

... ... @@ -17,9 +17,9 @@ const serviceApi = new ServiceAPI();
* @param undefined
* @return {Object} 配置对象
*/
//const commonConfig = () => ({
// const commonConfig = () => ({
// title: 'girls'
//});
// });
exports.getContent = () => {
let data = sign.apiSign({
... ...
... ... @@ -32,7 +32,7 @@ const getChannelIndex = (type) => {
const index = channelMap[type];
return index === undefined ? 0 : index;
return typeof index === 'undefined' ? 0 : index;
};
/**
... ...