123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- const baseUrl = 'http://test.mrmf.hdlkeji.com' //请求接口地址
- let isJson=true
- const httpRequest = (url, method, data,isJson) => {
- let meth = method.toUpperCase();//小写改为大写
- if (!data) {
- data = {}
- }
- if(getApp().globalData.token){
- data['token'] = getApp().globalData.token; //token
- }
- //
- let httpDefaultOpts = {
- url: baseUrl + url,
- data: data,
- method: meth,
- header:{
- 'X-Requested-With': 'XMLHttpRequest',
- 'content-type': isJson==false ? 'application/x-www-form-urlencoded' : 'application/json',
- // 'content-type': 'application/json',
- },
- dataType: 'json',
- }
- return new Promise(function(resolve, reject) {
- uni.request(httpDefaultOpts).then(
- (res) => {
- console.log(res)
- if(res[1].data.code == 200){//成功返回
- resolve(res[1].data)
- }else{//错误信息
- uni.showToast({
- title:res[1].data.message,
- icon:'none'
- })
- //resolve(res[1]) //错误信息返不返回 看个人情况
- }
- }
- ).catch(
- (response) => {
- reject(response)
- }
- )
- })
- };
-
- export default {
- baseUrl,
- httpRequest
- }
|