|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
const baseURL = 'https://yoursairdata.com/api/' |
|
|
|
|
// const baseURL = 'http://192.168.209.210:9002/'
|
|
|
|
|
const defaultCity = '重庆' |
|
|
|
|
const GET = 'GET'; |
|
|
|
|
const POST = 'POST'; |
|
|
|
|
const PUT = 'PUT'; |
|
|
|
@ -8,14 +9,17 @@ 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)
|
|
|
|
|
|
|
|
|
|
if (method === GET) { |
|
|
|
|
let city = wx.getStorageSync('city') |
|
|
|
|
city = city ? city : defaultCity |
|
|
|
|
if (url.indexOf('?') !== -1) { |
|
|
|
|
url += `&city=${city}` |
|
|
|
|
} else { |
|
|
|
|
url += `?city=${city}` |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return new Promise(function (resolve, reject) { |
|
|
|
|
let header = { |
|
|
|
|
'content-type': 'application/json', |
|
|
|
@ -27,7 +31,6 @@ function request(method, url, data, hasToke = true) {
|
|
|
|
|
data: method === POST ? JSON.stringify(data) : data, |
|
|
|
|
header: header, |
|
|
|
|
success(res) { |
|
|
|
|
// console.log(res);
|
|
|
|
|
if (res.statusCode == 401) { |
|
|
|
|
wx.showToast({ |
|
|
|
|
title: '登录过期,请重新登录', |
|
|
|
@ -38,9 +41,6 @@ function request(method, url, data, hasToke = true) {
|
|
|
|
|
wx.navigateTo({ |
|
|
|
|
url: "/pages/auth/auth", |
|
|
|
|
}) |
|
|
|
|
// setTimeout(() => {
|
|
|
|
|
|
|
|
|
|
// }, 1500)
|
|
|
|
|
} else { |
|
|
|
|
resolve(res.data); |
|
|
|
|
} |
|
|
|
@ -54,14 +54,10 @@ function request(method, url, data, hasToke = true) {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 登录方法
|
|
|
|
|
|
|
|
|
|
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, |
|
|
|
|
}; |
|
|
|
@ -86,32 +82,34 @@ 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`), //获取用户信息
|
|
|
|
|
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}`),//销售情况统计
|
|
|
|
|
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获取测算详情
|
|
|
|
|
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}`),//分页
|
|
|
|
|
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}`),//分页
|
|
|
|
|
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),//图片上传
|
|
|
|
|
feedback: (data) => request(POST, `feedback`, data, true), //提交意见
|
|
|
|
|
uploadImg: (data) => request(POST, `file`, data, false), //图片上传
|
|
|
|
|
//保存测算数据
|
|
|
|
|
measureData: (data) => request(POST, `applets/measuredata`, data, true),//保存测算数据
|
|
|
|
|
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'), |
|
|
|
|
getAreaList:(city)=>request(GET,`/cityArea/getArea/${city}`) |
|
|
|
|
}; |
|
|
|
|
module.exports = { |
|
|
|
|
API: API, |
|
|
|
|
baseURL:baseURL |
|
|
|
|
baseURL: baseURL, |
|
|
|
|
request: request |
|
|
|
|
} |