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

9 lines
164 B
JavaScript
Raw Normal View History

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