删除多余action文件

This commit is contained in:
waliang.wang 2017-07-14 11:41:14 +08:00
parent 68079e102e
commit dac5c9e328

View File

@ -1,33 +0,0 @@
import {
FETCH_INTERFACE_DATA
} from '../constants/action-types.js';
export function fetchAuditIcons () {
const data = [{
key: '1',
name: 'John Brown',
age: 32,
address: 'New York No. 1 Lake Park',
date: '2015-11-11 13:00:15',
features: '3'
}, {
key: '2',
name: 'Jim Green',
age: 42,
address: 'London No. 1 Lake Park',
date: '2015-11-11 13:00:15',
features: '3'
}, {
key: '3',
name: 'Joe Black',
age: 32,
address: 'Sidney No. 1 Lake Park',
date: '2015-11-11 13:00:15',
features: '3'
}]
return {
type: FETCH_INTERFACE_DATA,
payload: data
};
}