import fetch from './_fetch'; import { message } from 'antd'; export default ({ title, channelIdd,author,status, createTime }) => fetch(`api/article/finds?title=${title || ''}&channelIdd=${channelIdd || ''}&author=${author || ''}&status=${status || ''}&createTime=${createTime || ''}`) .then( json => json ) .catch( error => message.error('列表加载失败,请联系管理员', 2) );