fe-drone-ci/src/api/qiniu.js

9 lines
162 B
JavaScript
Raw Normal View History

2017-08-22 07:43:34 +00:00
import fetch from 'utils/fetch'
2017-04-18 07:09:13 +00:00
2017-08-23 03:16:54 +00:00
export function getToken() {
2017-06-02 10:14:19 +00:00
return fetch({
url: '/qiniu/upload/token', // 假地址 自行替换
method: 'get'
2017-08-22 07:43:34 +00:00
})
2017-06-02 10:14:19 +00:00
}