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

29 lines
557 B
JavaScript
Raw Normal View History

2017-05-15 09:56:45 +00:00
// import fetch, { tpFetch } from 'utils/fetch';
2017-04-18 07:09:13 +00:00
2017-05-15 09:56:45 +00:00
// export function getToken() {
// return fetch({
// url: '/qiniu/upload/token',
// method: 'get'
// });
// }
// export function upload(data) {
// return tpFetch({
// url: 'https://upload.qbox.me',
// method: 'post',
// data
// });
// }
2017-04-18 07:09:13 +00:00
2017-05-15 09:56:45 +00:00
// /* 外部uri转七牛uri*/
// export function netUpload(token, net_url) {
// const imgData = {
// net_url
// };
// return fetch({
// url: '/qiniu/upload/net/async',
// method: 'post',
// data: imgData
// });
// }