Browse Source

小程序添加城市选择功能

master
王健 4 years ago
parent
commit
d74c8ca32c
  1. 1
      app.js
  2. 75
      pages/calendar/calendar.js
  3. 4
      pages/calendar/calendar.wxml
  4. 194
      pages/look-list/look-list.js
  5. 5
      pages/look-list/look-list.wxml
  6. 181
      pages/look/look.js
  7. 9
      pages/look/look.wxml
  8. 24
      pages/look/look.wxss
  9. 14
      utils/api.js

1
app.js

@ -6,7 +6,6 @@ App({
if (wx.canIUse('getUpdateManager')) {
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
console.log('onCheckForUpdate====', res)
// 请求完新版本信息的回调
if (res.hasUpdate) {
console.log('res.hasUpdate====')

75
pages/calendar/calendar.js

@ -10,6 +10,7 @@ moment.locale('en', {
import {
formatNumber
} from '../../utils/util'
const CITY = wx.getStorageSync('city')
Page({
@ -17,6 +18,7 @@ Page({
* 页面的初始数据
*/
data: {
cityList: [],
tabList: [{
id: 1,
name: '本日挂牌'
@ -36,25 +38,19 @@ Page({
calendarDisplayTime: '',
calendarSelectedDate: new Date().toString(),
calendarSelectedDateStr: '',
region: ["500000", "500100", "500104"],
cityName: '',
cityIndex: 0,
cityName: CITY,
timeValue: '',
year: '',
month: '',
info: [],//挂牌列表
infoT: [],//拍卖列表
auctionCount: [],//有拍卖数量日期
listedCount: [],//有挂牌数量日期
info: [], //挂牌列表
infoT: [], //拍卖列表
auctionCount: [], //有拍卖数量日期
listedCount: [], //有挂牌数量日期
},
bindDateChange(value) {
let calendarDisplayTime = value.detail;
console.log(calendarDisplayTime);
this.setData({
year: calendarDisplayTime.split('-')[0],
month: calendarDisplayTime.split('-')[1],
@ -79,7 +75,6 @@ Page({
let timer = new Date()
let year = timer.getFullYear()
let month = timer.getMonth() + 1
month = month.length > 1 ? month : '0' + month
let date = `${year}-${month}`
if (date !== this.data.calendarDisplayTime) {
@ -94,14 +89,14 @@ Page({
})
},
bindAddressChange(res) {
let cityName = res.detail.value[2]
if (cityName) {
this.setData({
cityName
})
}
;
bindAddressChange(e) {
let city = this.data.cityList[e.detail.value]
wx.setStorageSync('city', city)
let index = this.data.cityList.indexOf(city)
this.setData({
cityName: city,
cityIndex: index
})
this.onShow()
},
// 跳转
@ -117,41 +112,52 @@ Page({
*/
onLoad: function (options) {
this.backToday()
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
let demo = wx.getStorageSync("date");
let storeDate = wx.getStorageSync("date");
let timer = this.data.timer;
let getDate = new Date().getDate();
if (!timer) {
getDate = getDate > 9 ? getDate : '0' + getDate
timer = this.data.calendarDisplayTime + '-' + getDate;
}
if (demo) {
timer = demo.time
if (storeDate) {
timer = storeDate.time
this.setData({
timer
})
} else {
// timer = moment().format('YYYY-MM-DD')
this.setData({
timer
})
}
console.log(this.data.cityName);
$api.getLandlistedList({annoDate: timer, canton: this.data.cityName}).then(res => {
console.log(res);
$api.getCityList().then(res => {
let index = res.data.indexOf(CITY)
if (index !== -1) {
this.setData({
cityIndex: index
})
}
this.setData({
cityList: res.data
})
})
$api.getLandlistedList({
annoDate: timer
}).then(res => {
this.setData({
info: res.data.records
})
})
$api.getLandlistedList2({auctionDate: timer, canton: this.data.cityName}).then(res => {
// console.log(res.data)
$api.getLandlistedList2({
auctionDate: timer
}).then(res => {
this.setData({
infoT: res.data.records
})
@ -168,11 +174,10 @@ Page({
// 获取日历列表数据
let date = this.data.calendarDisplayTime.substring(0, 7);
$api.AJAX("GET", 'applets/landlisted/calendar', {
date: date,
canton: this.data.cityName
date: date
}, true).then(res => {
let auctionCount = [];// 拍卖数量的
let listedCount = [];//挂牌数量的
let auctionCount = []; // 拍卖数量的
let listedCount = []; //挂牌数量的
res.data.map((item, index) => {
if (item.auctionCount > 0) {

4
pages/calendar/calendar.wxml

@ -16,12 +16,12 @@
<view class="top">
<view class="screening">
<view class="address">
<picker mode="region" value="{{region}}" bindchange="bindAddressChange">
<picker value="{{cityIndex}}" range="{{cityList}}" bindchange="bindAddressChange">
<view class="picker">
当前选择
</view>
</picker>
<text>{{cityName?cityName:"重庆"}}</text>
<text>{{cityName?cityName:"重庆"}}</text>
<image class="tag" src="../../assets/images/arrow-down.png"></image>
</view>

194
pages/look-list/look-list.js

@ -1,14 +1,29 @@
// pages/look-list/look-list.js
const moment = require('../../utils/moment.min');
const $api = require('../../utils/api').API;
const CITY = wx.getStorageSync('city')
Page({
/**
* 页面的初始数据
*/
data: {
multiIndex: [],
multiRegion: [],
active: '',
tabs: [{id: 1, name: '排序'}, {id: 2, name: '日期'}, {id: 3, name: '交易状态'}, {id: 4, name: '区域'}, {
tabs: [{
id: 1,
name: '排序'
}, {
id: 2,
name: '日期'
}, {
id: 3,
name: '交易状态'
}, {
id: 4,
name: '区域'
}, {
id: 5,
name: '类型'
}],
@ -16,22 +31,31 @@ Page({
refresher: false,
setScroll: true,
inputShow: false,
region: ["500000", "500100"],
nowTime: new Date(),
page: {
size: 10,
current: 1,
startDate: '',
endDate: '',
city: CITY,
canton: '',
transactionStatus: '',
measureStatus: '',
landCode: ''
},
searchNode: {
date: {height: 0, bottom: 0},
sale: {height: 0, bottom: 0},
calcu: {height: 0, bottom: 0}
date: {
height: 0,
bottom: 0
},
sale: {
height: 0,
bottom: 0
},
calcu: {
height: 0,
bottom: 0
}
},
measureStatus: '',
transactionStatus: '',
@ -41,23 +65,21 @@ Page({
calcuList: [],
saleNum: null,
calcuNum: null,
region: ["500000", "500100"],
title: '',//传递待测算名
region: [],
title: '', //传递待测算名
// 搜索框
is_search: false,
is_focusing: false,//是否聚焦
is_focusing: false, //是否聚焦
},
// 地图搜索框
// 地图搜索框
searchFun() {
this.setData({
is_search: true,
is_focusing: true,
})
},
blurFun() {//隐藏
//隐藏
blurFun() {
this.setData({
is_search: this.data.page.landCode ? true : false,
is_focusing: false,
@ -71,21 +93,20 @@ Page({
})
this.refresh();
},
// 选择城市
bindAddressChangeCity(res) {
let cityName = res.detail.value[2];
if (cityName) {
this.setData({
['page.canton']: cityName
})
let value = res.detail.value;
let city = this.data.multiRegion[0][value[0]]
let canton = this.data.multiRegion[1][value[1]]
if (city && city !== '全部') {
wx.setStorageSync('city', city)
}
;
this.setData({
['page.city']: city,
['page.canton']: canton
})
this.refresh()
},
changeRadio(e) {
let type = e.currentTarget.dataset.type;
switch (type) {
@ -103,7 +124,6 @@ Page({
break;
}
},
comeBack() {
wx.navigateBack({
delta: 1
@ -141,15 +161,43 @@ Page({
})
this.refresh();
})
$api.getCityList().then(res => {
let data = res.data
data.unshift('全部')
this.setData({
multiRegion: [data, ['全部']]
})
let index = data.indexOf(CITY);
if (CITY && CITY !== '' && index !== -1) {
$api.getAreaList(CITY).then(res => {
let data = res.data
data.unshift('全部')
this.setData({
multiIndex: [index],
'multiRegion[1]': data
})
})
}
})
},
bindMultiPickerColumnChange(e) {
if (e.detail.column !== 0 || e.detail.value === 0) {
return
}
let city = this.data.multiRegion[e.detail.column][e.detail.value];
$api.getAreaList(city).then(res => {
let data = res.data
data.unshift('全部')
this.setData({
'multiRegion[1]': data
})
})
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
onReady: function () {},
// 清空
empty(e) {
let name = e.currentTarget.dataset.name;
@ -173,22 +221,36 @@ Page({
tabDowm(e) {
let active = e.currentTarget.dataset.id
if (active === this.data.active) {
this.setData({active: '', setScroll: true})
this.setData({
active: '',
setScroll: true
})
} else {
this.setData({active, setScroll: false})
this.setData({
active,
setScroll: false
})
}
},
getList() {
let t = "page.current"
let p = this.data.page.current + 1
this.setData({[t]: p})
this.setData({
[t]: p
})
$api.getLandlistedPage(this.data.page).then(res => {
let list = this.data.list.concat(res.data.records)
this.setData({list})
this.setData({
list
})
})
},
refresh() {
$api.getLandlistedPage(this.data.page).then(res => {
let params = this.data.page;
if (params.canton && params.canton === '全部') {
params.canton = ''
}
$api.getLandlistedPage(params).then(res => {
res.data.records.map(e => {
for (let key in e) {
if (!e[key]) {
@ -202,10 +264,9 @@ Page({
[t]: 1,
})
this.setData({
list: res.data.records,
refresher: false
}
)
list: res.data.records,
refresher: false
})
})
},
goSearch() {
@ -217,13 +278,19 @@ Page({
this.refresh()
},
hideMark() {
this.setData({active: '', setScroll: true})
this.setData({
active: '',
setScroll: true
})
},
inShow() {
for (let key in this.data.searchNode) {
if (this.data.searchNode[key].height > 0) {
this.setData({
[`searchNode.${key}`]: {height: 0, bottom: 0}
[`searchNode.${key}`]: {
height: 0,
bottom: 0
}
})
}
}
@ -243,7 +310,6 @@ Page({
},
bindTimeChange(res) {
console.log(res)
let queryDate = res.detail.value
if (res.currentTarget.dataset.type == 'start') {
let t = "page.startDate"
@ -251,28 +317,16 @@ Page({
this.setData({
[t]: queryDate
})
}
;
};
} else {
let t = "page.endDate"
if (queryDate) {
this.setData({
[t]: queryDate
})
}
;
};
}
},
// bindAddressChange(res) {
// let cityName = res.detail.value[1]
// let t="page.city"
// if (cityName) {
// this.setData({
// [t]:cityName
// })
// this.refresh()
// };
// },
bindSaleChange(res) {
let value = this.data.arraySale[res.detail.value].value;
let label = this.data.arraySale[res.detail.value].label
@ -283,8 +337,7 @@ Page({
transactionStatus: label
})
this.refresh()
}
;
};
},
bindCalcuChange(res) {
let value = this.data.arrayCalcu[res.detail.value].value;
@ -296,8 +349,7 @@ Page({
measureStatus: label
})
this.refresh()
}
;
};
},
showDown(e) {
const _this = this;
@ -305,31 +357,41 @@ Page({
for (let key in this.data.searchNode) {
if (this.data.searchNode[key].height > 0) {
this.setData({
[`searchNode.${key}`]: {height: 0, bottom: 0}
[`searchNode.${key}`]: {
height: 0,
bottom: 0
}
})
}
}
switch (e.currentTarget.dataset.type) {
case 'date':
setTimeout(() => {
_this.setData({'searchNode.date.height': 200, 'searchNode.date.bottom': -200,});
_this.setData({
'searchNode.date.height': 200,
'searchNode.date.bottom': -200,
});
}, 300)
break;
case 'sale':
setTimeout(() => {
_this.setData({'searchNode.sale.height': 200, 'searchNode.sale.bottom': -200,});
_this.setData({
'searchNode.sale.height': 200,
'searchNode.sale.bottom': -200,
});
}, 300)
break;
case 'calcu':
setTimeout(() => {
_this.setData({'searchNode.calcu.height': 200, 'searchNode.calcu.bottom': -200,});
_this.setData({
'searchNode.calcu.height': 200,
'searchNode.calcu.bottom': -200,
});
}, 300)
break;
}
},
demo() {
console.log(999)
},
vmodel(e) {
let t = "page.landCode"
this.setData({

5
pages/look-list/look-list.wxml

@ -52,8 +52,9 @@
<view class="table">
<!-- 城市 -->
<view style="margin-left:30rpx" class="table-item center">
<picker class="flex_center flex_items" mode="region" value="{{region}}" bindchange="bindAddressChangeCity">
<text>{{page.canton?page.canton:'城市'}}</text>
<picker class="flex_center flex_items" mode="multiSelector" range="{{multiRegion}}"
value="{{multiIndex}}" bindchange="bindAddressChangeCity" bindcolumnchange="bindMultiPickerColumnChange">
<text>{{page.city}}{{page.canton?page.canton:'城市'}}</text>
<image class="table-icon" src="../../assets/images/tab-icon.png"></image>
</picker>
</view>

181
pages/look/look.js

@ -16,16 +16,22 @@ const max = year + yearSpan;
const min = 1949;
const arryList = [];
for (let idx = min; idx < max; idx++) {
arryList.push({index: idx - min, value: idx, label: '' + idx + '年'});
}
;
arryList.push({
index: idx - min,
value: idx,
label: '' + idx + '年'
});
};
const CITY = wx.getStorageSync('city')
Page({
/**
* 页面的初始数据
*/
data: {
cityList: [],
cityIndex: 0,
cityName: '',
switchYear: true,
satellite: 1,
scale: 13,
@ -88,7 +94,11 @@ Page({
halfScreenDialogVisible: false,
visionDialogVisible: false,
dialogVisible: false,
buttons: [{text: '取消'}, {text: '详情'}],
buttons: [{
text: '取消'
}, {
text: '详情'
}],
titleLand: 'G01-XXXXXXXXXXX02',
landListedId: 'CQ20210617152223',
totalConsArea: '42356',
@ -102,10 +112,10 @@ Page({
// 搜索框
is_search: false,
is_focusing: false,//是否聚焦
is_searchList: false,//是否显示列表
land_name: '',//土地名称
list_arr: null,//搜索内容
is_focusing: false, //是否聚焦
is_searchList: false, //是否显示列表
land_name: '', //土地名称
list_arr: null, //搜索内容
},
//切换视图
changeVision() {
@ -127,7 +137,7 @@ Page({
})
},
escFun() {//关闭弹窗
escFun() { //关闭弹窗
this.setData({
land_name: '',
is_search: false,
@ -144,7 +154,7 @@ Page({
})
this.inputFun();
},
inputFun() {//输入框输入内容
inputFun() { //输入框输入内容
console.log(this.data.land_name);
$apiT.AJAX('get', 'applets/landlisted/page', {
landCode: this.data.land_name,
@ -157,7 +167,7 @@ Page({
}
})
},
chooseFun(e) {//选择看地列表
chooseFun(e) { //选择看地列表
console.log(e)
let item = e.currentTarget.dataset.item;
this.setData({
@ -231,7 +241,7 @@ Page({
global.selectFeature = feature;
console.log(555, feature)
//tid 代表地块类型,1:已出让,2:挂牌中;3:拟挂牌。
let tid = feature.tid;//tid:1,2,3
let tid = feature.tid; //tid:1,2,3
//属性property 包含 地块id字段,按需使用。
let property = feature.properties;
//添加---接口对接---获取地块数据------以下全部替换
@ -243,7 +253,7 @@ Page({
if (tid == 1 || tid == 2) {
$apiT.AJAX('GET', 'applets/landlisted/' + (property.land_listed_id || property.landListedId), true).then(res => {
this.setData({
type:'landlisted',
type: 'landlisted',
titleLand: res.data.landCode,
landListedId: res.data.landListedId,
totalConsArea: res.data.totalConsArea,
@ -255,7 +265,7 @@ Page({
} else {
$apiT.AJAX('GET', 'applets/landtolist/' + (property.proposedseria_id || property.proposedseriaId), true).then(res => {
this.setData({
type:'landtolist',
type: 'landtolist',
titleLand: res.data.landCode,
landListedId: res.data.proposedseriaId,
totalConsArea: res.data.totalConsArea,
@ -293,16 +303,16 @@ Page({
});
global.selectFeature = null;
} else {
this.navigateToLandDetail(this.data.landListedId,this.data.type);
this.navigateToLandDetail(this.data.landListedId, this.data.type);
}
},
//跳转到地块详情页面
navigateToLandDetail(id,type) {
if(type==='landlisted'){
navigateToLandDetail(id, type) {
if (type === 'landlisted') {
wx.navigateTo({
url: '/pages/look-detail/look-detail?active=1&id=' + id,
})
}else if(type==='landtolist'){
} else if (type === 'landtolist') {
wx.navigateTo({
url: '/pages/lookStay-detail/lookStay-detail?id=' + id,
})
@ -335,7 +345,9 @@ Page({
latitude,
longitude,
} = this.data.centerLocation;
let {actives} = this.data;
let {
actives
} = this.data;
let state = false;
let hasAc = actives.some(item => item === id);
if (hasAc) {
@ -356,11 +368,15 @@ Page({
case 1:
// 已出让
if (state) {
this.setData({switchYear: true})
this.setData({
switchYear: true
})
this.deletPolygon(id);
this.removeFeaturesToList(id);
} else {
this.setData({switchYear: false})
this.setData({
switchYear: false
})
this.inWhich({
latitude,
longitude
@ -469,7 +485,10 @@ Page({
latitude,
longitude
} = e.detail;
let point = {latitude, longitude} // 地图点击点的经纬度
let point = {
latitude,
longitude
} // 地图点击点的经纬度
console.log(point);
let features = that.selectFeatureList(point);
console.log(features);
@ -659,14 +678,14 @@ Page({
longitude,
},
})
that.showCenterLocation({latitude, longitude})
that.showCenterLocation({
latitude,
longitude
})
}
})
},
markertap(e) {
},
regionchange(e) {
if (e.type === 'end') {
let {
@ -679,7 +698,9 @@ Page({
this.setData({
centerLocation: e.detail.centerLocation
});
let {actives} = this.data;
let {
actives
} = this.data;
let id9 = 9;
let state9 = actives.some(item => item === id9);
if (state9) {
@ -704,7 +725,10 @@ Page({
this.clearPoint(7);
}
//中心点--重绘
this.showCenterLocation({latitude, longitude})
this.showCenterLocation({
latitude,
longitude
})
}
},
@ -755,9 +779,11 @@ Page({
let features = data.data.map(item => {
let geomPoints = WKT.parse(item.geoms || item.geom).coordinates;
let properties = item;
properties.tid = tid;//类型
properties.tid = tid; //类型
let polygon = {
key, tid, properties,
key,
tid,
properties,
type: "Feature",
geometry: {
type: "Polygon",
@ -862,7 +888,7 @@ Page({
let {
polygons
} = this.data;
let newPolygons = data.data.filter(item=>{
let newPolygons = data.data.filter(item => {
return item.geoms || item.geom;
}).map(item => {
let geomPoints = WKT.parse(item.geoms || item.geom);
@ -885,11 +911,11 @@ Page({
})
let strokeColor;
let fillColor;
if(item.line_color){
strokeColor = '' + item.line_color + util.ten2XO(item.line_opaqueness);
if (item.line_color) {
strokeColor = '' + item.line_color + util.ten2XO(item.line_opaqueness);
}
let strokeWidth = item.line_width ? Number(item.line_width) : 2;
if(item.fill_color){
if (item.fill_color) {
fillColor = '' + item.fill_color + util.ten2XO(item.fill_opaqueness);
}
let polygon = {
@ -912,7 +938,7 @@ Page({
let {
polygons
} = this.data;
let newPolygons = data.data.filter(item=>{
let newPolygons = data.data.filter(item => {
return item.geoms || item.geom;
}).map(item => {
let geomPoints = WKT.parse(item.geoms || item.geom);
@ -935,11 +961,11 @@ Page({
})
let strokeColor;
let fillColor;
if(item.lineColor){
if (item.lineColor) {
strokeColor = '' + item.lineColor + util.ten2XO(item.lineOpaqueness);
}
let strokeWidth = item.lineWidth ? Number(item.lineWidth) : 2;
if(item.fillColor){
if (item.fillColor) {
fillColor = '' + item.fillColor + util.ten2XO(item.fillOpaqueness);
}
let polygon = {
@ -958,12 +984,19 @@ Page({
})
},
bindAddressChange(e) {
let city = this.data.cityList[e.detail.value]
wx.setStorageSync('city', city)
let index = this.data.cityList.indexOf(city)
this.setData({
cityName: city,
cityIndex: index
})
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
global.bboxkey = 0;
global.features = {
key1: [],
@ -972,24 +1005,25 @@ Page({
};
let sIdx = year - yearSpan - min;
let eIdx = year - min;
this.setData(
{
indexStart: sIdx,
indexEnd: eIdx,
start: arryList[sIdx].value,
end: arryList[eIdx].value,
}
)
this.setData({
indexStart: sIdx,
indexEnd: eIdx,
start: arryList[sIdx].value,
end: arryList[eIdx].value,
})
this.scaleBack();
$apiT.getCityList().then(res => {
let index = res.data.indexOf(CITY)
if (index !== -1) {
this.setData({
cityIndex: index
})
}
this.setData({
cityList: res.data
})
})
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
@ -1000,40 +1034,5 @@ Page({
selected: 1
})
}
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})

9
pages/look/look.wxml

@ -16,6 +16,15 @@
<mp-navigation-bar ext-class="set-bar" title="看地" back="{{false}}"></mp-navigation-bar>
<view class="main">
<view class="look-top">
<view class="address">
<picker value="{{cityIndex}}" range="{{cityList}}" bindchange="bindAddressChange">
<view class="picker">
当前选择
</view>
</picker>
<text>{{cityName?cityName:"重庆"}}</text>
<image class="tag" src="../../assets/images/arrow-down.png"></image>
</view>
<view class="look-search center {{is_search?'focusing':''}}" bindtap="searchFun">
<image class="look-s-icon" src="../../assets/images/search.png"></image>
<input type="text" focus="{{is_focusing}}" auto-focus="{{is_focusing}}" model:value="{{land_name}}"

24
pages/look/look.wxss

@ -281,4 +281,28 @@
.list_li:last-child {
border-bottom: 0;
}
.address {
align-items: center;
font-size: 30rpx;
color: #222222;
line-height: 34rpx;
}
.address .tag {
width: 24rpx;
height: 24rpx;
margin-left: 12rpx;
}
.address {
position: relative;
}
.address picker {
position: absolute;
width: 150rpx;
height: 100%;
z-index: 2;
opacity: 0;
}

14
utils/api.js

@ -1,5 +1,5 @@
const baseURL = 'https://yoursairdata.com/api/'
// const baseURL = 'http://192.168.209.210:9002/'
// const baseURL = 'https://yoursairdata.com/api/'
const baseURL = 'http://192.168.209.210:9002/'
const defaultCity = '重庆'
const GET = 'GET';
const POST = 'POST';
@ -11,7 +11,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==';
if (method === GET) {
if (method === GET && url.indexOf('landlisted') !== -1&& url.indexOf('landtolist') !== -1) {
let city = wx.getStorageSync('city')
city = city ? city : defaultCity
if (url.indexOf('?') !== -1) {
@ -86,8 +86,8 @@ const API = {
//字典
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`), //拍卖
getLandlistedList: (data) => request(GET, `applets/landlisted/list?annoDate=${data.annoDate}&size=9999`), //挂牌
getLandlistedList2: (data) => request(GET, `applets/landlisted/list?auctionDate=${data.auctionDate}&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}`), //销售情况统计
@ -105,8 +105,8 @@ 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'),
getAreaList:(city)=>request(GET,`/cityArea/getArea/${city}`)
getCityList: () => request(GET, 'cityArea/city'),
getAreaList: (city) => request(GET, `cityArea/getArea/${city}`)
};
module.exports = {
API: API,

Loading…
Cancel
Save