You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
4.6 KiB
117 lines
4.6 KiB
const baseURL = 'https://yoursairdata.com/api/' |
|
// const baseURL = 'http://192.168.209.210:9002/' |
|
const GET = 'GET'; |
|
const POST = 'POST'; |
|
const PUT = 'PUT'; |
|
const FORM = 'FORM'; |
|
const DELETE = 'DELETE'; |
|
|
|
|
|
function request(method, url, data, hasToke = true) { |
|
|
|
let token = wx.getStorageSync('access_token') |
|
let Authorization = token && hasToke ? `Bearer ${token}` : 'Basic YXBwOmFwcA=='; |
|
|
|
|
|
// console.log(Authorization) |
|
// console.log(method,url, data,hasToke) |
|
|
|
return new Promise(function (resolve, reject) { |
|
let header = { |
|
'content-type': 'application/json', |
|
'Authorization': Authorization, |
|
}; |
|
wx.request({ |
|
url: baseURL + url, |
|
method: method, |
|
data: method === POST ? JSON.stringify(data) : data, |
|
header: header, |
|
success(res) { |
|
// console.log(res); |
|
if (res.statusCode == 401) { |
|
wx.showToast({ |
|
title: '登录过期,请重新登录', |
|
icon: "none", |
|
mask: true, |
|
}) |
|
wx.clearStorage(); |
|
wx.navigateTo({ |
|
url: "/pages/auth/auth", |
|
}) |
|
// setTimeout(() => { |
|
|
|
// }, 1500) |
|
} else { |
|
resolve(res.data); |
|
} |
|
}, |
|
fail(err) { |
|
//请求失败 |
|
reject(err) |
|
} |
|
}) |
|
}) |
|
} |
|
|
|
// 登录方法 |
|
|
|
function requestLogin(method, url, data) { |
|
|
|
let Authorization = 'Basic YXBwOmFwcA=='; |
|
|
|
return new Promise(function (resolve, reject) { |
|
let header = { |
|
// 'content-type': 'application/json', |
|
'content-type': 'application/x-www-form-urlencoded', |
|
'Authorization': Authorization, |
|
}; |
|
wx.request({ |
|
url: baseURL + url, |
|
method: method, |
|
data: data, |
|
header: header, |
|
success(res) { |
|
resolve(res.data); |
|
}, |
|
fail(err) { |
|
//请求失败 |
|
reject(err) |
|
} |
|
}) |
|
}) |
|
} |
|
|
|
|
|
const API = { |
|
getOpenid: (data) => request(GET, `oauth/token?grant_type=password&username=${data.admin}&password=${data.password}`), |
|
getUserAuth: (data) => request(POST, `social/token?code=MINI@${data}`, '', false), |
|
registerBind: (data) => request(POST, `social/register-bind`, data, false), |
|
getUserInfo: () => request(GET, `user/info`), //获取用户信息 |
|
//字典 |
|
getDict: (data) => request(GET, `dict/type/${data}`), |
|
//日历 |
|
getLandlistedList: (data) => request(GET, `applets/landlisted/list?annoDate=${data.annoDate}&canton=${data.canton}&size=9999`),//挂牌 |
|
getLandlistedList2: (data) => request(GET, `applets/landlisted/list?auctionDate=${data.auctionDate}&canton=${data.canton}&size=9999`),//拍卖 |
|
getLandDetail: (data) => request(GET, `applets/landlisted/${data}`),//通过ID获取详情 |
|
getPreSaleDetailList: (data) => request(GET, `applets/blocks/getPreSaleDetailList?landListedId=${data.landListedId}`),//查询预售明细列表 |
|
getPreSaleTotal: (data) => request(GET, `applets/blocks/getPreSaleTotal?landListedId=${data.landListedId}`),//销售情况统计 |
|
//测算 |
|
getCalulaList: (data) => request(GET, `applets/measuredata/page?queryDate=${data.queryDate}¤t=${data.current}&size=${data.size}&landListedId=${data.landListedId}`),//分页 |
|
getCalulaDeatail: (data) => request(GET, `applets/measuredata/getByLandListedId/${data}`),//通过地块ID获取测算详情 |
|
//看地 |
|
getLandlistedPage: (data) => request(GET, `applets/landlisted/page?startDate=${data.startDate}¤t=${data.current}&size=${data.size}&measureStatus=${data.measureStatus}&transactionStatus=${data.transactionStatus}&canton=${data.canton}&landCode=${data.landCode}&endDate=${data.endDate}`),//分页 |
|
//消息管理 |
|
getMessage: (data) => request(GET, `applets/message/page?current=${data.current}&size=${data.size}&messageType=${data.messageType}`),//分页 |
|
//意见反馈 |
|
feedback: (data) => request(POST, `feedback`, data, true),//提交意见 |
|
uploadImg: (data) => request(POST, `file`, data, false),//图片上传 |
|
//保存测算数据 |
|
measureData: (data) => request(POST, `applets/measuredata`, data, true),//保存测算数据 |
|
AJAX: (GET, url, data, is_toke) => request(GET, url, data, is_toke), |
|
Login: (GET, url, data) => requestLogin(GET, url, data), |
|
|
|
}; |
|
module.exports = { |
|
API: API, |
|
baseURL:baseURL |
|
} |