axios.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. import {
  2. base_url, appId
  3. } from '@/utils/config.js';
  4. import {urlEncode} from '@/utils/utils.js';
  5. import store from '../store/index.js';
  6. //封装的通用请求方法
  7. export const axios = function(obj = {}) {
  8. if (typeof obj !== 'object') {
  9. throw new Error('arguments must be object');
  10. }
  11. if (!obj.url) {
  12. throw new Error('url not defined');
  13. }
  14. return new Promise((resolve, reject) => {
  15. if (obj.isLoading) {
  16. uni.showLoading({
  17. title: '加载中',
  18. mask: true,
  19. })
  20. }
  21. let _url = base_url + obj.url;
  22. let isGet = obj.method && obj.method.toLowerCase() == 'get';
  23. if(isGet){
  24. _url += '?'+ urlEncode(obj.params)
  25. }
  26. uni.request({
  27. url: _url,
  28. data: isGet ? '' : (obj.params || ''),
  29. header: {
  30. 'content-type': obj.type || 'application/x-www-form-urlencoded',
  31. "x-token": uni.getStorageSync('token') || '',
  32. 'APPID': appId
  33. },
  34. method: obj.method ? obj.method : "POST",
  35. success: function(res) {
  36. if (obj.isLoading) {
  37. uni.hideLoading();
  38. }
  39. if (res.statusCode === 200) {
  40. if (res.data.code == 200 || res.data.code == 1100) {
  41. resolve(res.data)
  42. } else if (res.data.code == 1001) {
  43. uni.showToast({
  44. title: '未登录',
  45. icon: 'none'
  46. });
  47. store.commit('changeIsLogin', false);
  48. uni.removeStorageSync('token');
  49. uni.navigateTo({
  50. url: '/pages/login/index',
  51. })
  52. reject(res.data);
  53. } else {
  54. uni.showToast({
  55. title: res.data.message,
  56. icon: 'none'
  57. });
  58. reject(res.data);
  59. }
  60. } else {
  61. uni.showToast({
  62. title: '错误码:' + res.statusCode,
  63. icon: 'none'
  64. })
  65. reject(res.data);
  66. }
  67. },
  68. fail: function(err) {
  69. uni.showModal({
  70. title:'提示',
  71. content: '网络连接失败'+JSON.stringify(err),
  72. })
  73. reject(err);
  74. },
  75. })
  76. })
  77. }
  78. const getUUID = function(){
  79. return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => {
  80. return (c === 'x' ? (Math.random() * 16) | 0 : 'r&0x3' | '0x8').toString(16)
  81. })
  82. }
  83. const createName = function(name){
  84. const date = Date.now()
  85. const uuid = getUUID()
  86. const fileSuffix = name.substring(name.lastIndexOf('.') + 1)
  87. return `${date}${uuid}.${fileSuffix}`
  88. }
  89. // 图片上传
  90. export const uploadImg = async function(file) {
  91. console.log(file);
  92. uni.showLoading({
  93. mask: true,
  94. })
  95. // 获取oss配置
  96. const par = await axios({
  97. url: '/common/oss/config',
  98. method: 'get'
  99. }).then(res=>{
  100. return res.data;
  101. }).catch(err=>{
  102. uni.hideLoading();
  103. })
  104. const fileKey = par.dir + createName(file.path);
  105. return new Promise((resolve, reject) => {
  106. uni.uploadFile({
  107. url: par.host,
  108. // header: {
  109. // "Content-Type": 'multipart/form-data',
  110. // },
  111. name: 'file',
  112. formData:{
  113. ...par,
  114. name: file.name,
  115. key: fileKey
  116. },
  117. filePath: file.path,
  118. success(res) {
  119. resolve({
  120. url: fileKey
  121. })
  122. },
  123. fail(err) {
  124. reject(err)
  125. },
  126. complete(res) {
  127. uni.hideLoading();
  128. }
  129. })
  130. })
  131. }
  132. export default {
  133. axios,
  134. uploadImg,
  135. }