|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
const baseURL = 'https://yoursairdata.com/api/' |
|
|
|
|
// const baseURL = 'http://192.168.209.210:9002/'
|
|
|
|
|
// const baseURL = 'http://192.168.27.11:9002/'
|
|
|
|
|
const defaultCity = '重庆' |
|
|
|
|
const GET = 'GET'; |
|
|
|
|
const POST = 'POST'; |
|
|
|
@ -10,7 +10,7 @@ const DELETE = 'DELETE';
|
|
|
|
|
|
|
|
|
|
function request(method, url, data, hasToke = true) { |
|
|
|
|
let token = wx.getStorageSync('access_token') |
|
|
|
|
let Authorization = token && hasToke ? `Bearer ${token}` : 'Basic YXBwOmFwcA=='; |
|
|
|
|
let Authorization = token && hasToke ? `Bearer ${token}` : null; |
|
|
|
|
if (method.toUpperCase() === GET) { |
|
|
|
|
let city = wx.getStorageSync('city') |
|
|
|
|
city = city ? city : defaultCity |
|
|
|
@ -24,8 +24,10 @@ function request(method, url, data, hasToke = true) {
|
|
|
|
|
return new Promise(function (resolve, reject) { |
|
|
|
|
let header = { |
|
|
|
|
'content-type': 'application/json', |
|
|
|
|
'Authorization': Authorization, |
|
|
|
|
}; |
|
|
|
|
if (Authorization) { |
|
|
|
|
header['Authorization'] = Authorization |
|
|
|
|
} |
|
|
|
|
wx.request({ |
|
|
|
|
url: baseURL + url, |
|
|
|
|
method: method, |
|
|
|
@ -89,8 +91,9 @@ const API = {
|
|
|
|
|
//字典
|
|
|
|
|
getDict: (data) => request(GET, `dict/type/${data}`), |
|
|
|
|
//日历
|
|
|
|
|
getLandlistedList: (data) => request(GET, `applets/landlisted/list?annoDate=${data.annoDate}&size=9999`), //挂牌
|
|
|
|
|
getLandlistedList2: (data) => request(GET, `applets/landlisted/list?auctionDate=${data.auctionDate}&size=9999`), //拍卖
|
|
|
|
|
calendar: (date) => request(GET, `applets/landlisted/calendar?date=${date}`, false), //日历
|
|
|
|
|
getLandlistedList: (data) => request(GET, `applets/landlisted/list?annoDate=${data.annoDate}&size=9999`, false), //挂牌
|
|
|
|
|
getLandlistedList2: (data) => request(GET, `applets/landlisted/list?auctionDate=${data.auctionDate}&size=9999`, false), //拍卖
|
|
|
|
|
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}`), //销售情况统计
|
|
|
|
@ -108,7 +111,7 @@ const API = {
|
|
|
|
|
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), |
|
|
|
|
getCityList: () => request(GET, 'cityArea/city'), |
|
|
|
|
getCityList: () => request(GET, 'cityArea/city', false), |
|
|
|
|
getAreaList: (city) => request(GET, `cityArea/getArea/${city}`) |
|
|
|
|
}; |
|
|
|
|
module.exports = { |
|
|
|
|