add example page

This commit is contained in:
Pan
2017-06-26 18:45:30 +08:00
parent 40a5977d1f
commit 2bc84413e3
6 changed files with 170 additions and 12 deletions

11
src/api/table.js Normal file
View File

@@ -0,0 +1,11 @@
import fetch from '@/utils/fetch';
export function getList(params) {
return fetch({
url: '/table/list',
method: 'get',
params
});
}