123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- import http from './interface'
-
-
- export const $http = (url, method, data, json) => {
-
- http.interceptor.request = (config) => {
- uni.showLoading({
- title:'加载中...'
- })
- config.header = {
- 'content-type': json ? 'application/json' : 'application/x-www-form-urlencoded',
- "token": uni.getStorageSync('tokendata'),
-
- }
- }
-
- http.interceptor.response = async (response) => {
-
- uni.hideLoading()
-
-
- if (response.data.data.code === 401) {
-
- }else{
- if(response.data.code!==200&&response.data.msg){
- uni.showToast({
- title:response.data.msg,
- icon:'none',
- duration:1500
- })
- }
- }
- return response;
- }
- return http.request({
- method: method,
- url: url,
- dataType: 'json',
- data,
- })
- }
- function postJson(url, data) {
- return $http(url, 'POST', data)
- }
- function get(url, data) {
-
- return $http(url, 'GET', data, true)
- }
- function post(url, data) {
- return $http(url, 'POST', data, true)
- }
- function put(url, data) {
- return $http(url, 'PUT', data, true)
- }
- function del(url, data) {
- return $http(url, 'DELETE', data, true)
- }
- export default {
- postJson,
- get,
- post,
- put,
- del
- }
|