perf:refine complexTable demo

This commit is contained in:
Pan
2017-11-30 18:02:31 +08:00
parent 72f653dcc7
commit 38192b828d
4 changed files with 124 additions and 102 deletions

View File

@@ -23,3 +23,18 @@ export function fetchPv(pv) {
})
}
export function createArticle(data) {
return request({
url: '/article/create',
method: 'post',
data
})
}
export function updateArticle(data) {
return request({
url: '/article/update',
method: 'post',
data
})
}