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.
 

170 lines
3.4 KiB

// pages/look-list/look-list.js
const moment = require('../../utils/moment.min');
const $api = require('../../utils/api').API;
Page({
/**
* 页面的初始数据
*/
data: {
active: '',
tabs:[{id:1,name:'排序'},{id:2,name:'日期'},{id:3,name:'交易状态'},{id:4,name:'区域'},{id:5,name:'类型'}],
list:[],
refresher: false,
setScroll: true,
inputShow:false,
region: ["500000", "500100"],
nowTime:new Date(),
page:{
size:10,
current:1,
startDate:'',
city:'',
transactionStatus:'',
measureStatus:'',
landCode:''
},
measureStatus:'',
transactionStatus:'',
arraySale:[],
arrayCalcu:[]
},
comeBack(){
wx.navigateBack({
delta: 1
})
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
$api.getDict('land_transaction').then(res=>{
this.setData({
arraySale:res.data
})
})
$api.getDict('measure_status').then(res=>{
this.setData({
arrayCalcu:res.data
})
})
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
this.refresh()
},
tabDowm(e){
let active = e.currentTarget.dataset.id
if(active===this.data.active){
this.setData({active:'',setScroll:true})
}else{
this.setData({active,setScroll:false})
}
},
getList(){
let t="page.current"
let p=this.data.page.current+1
this.setData({[t]:p})
$api.getLandlistedPage(this.data.page).then(res=>{
let list = this.data.list.concat(res.data.records)
this.setData({list})
})
},
refresh(){
$api.getLandlistedPage(this.data.page).then(res=>{
res.data.records.map(e=>{
for(let key in e){
if(!e[key]){
e[key]=''
}
}
})
let t="page.current"
this.setData({
list:[],
[t]:1,
})
this.setData({
list:res.data.records,
refresher:false}
)
})
},
hideMark(){
this.setData({active:'',setScroll:true})
},
comeDetail(){
wx.navigateTo({
url: '/pages/look-detail/look-detail',
})
},
bindTimeChange(res){
let queryDate = res.detail.value
let t="page.queryDate"
if (queryDate) {
this.setData({
[t]:queryDate
})
this.refresh()
};
},
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
let t="page.transactionStatus"
if (value) {
this.setData({
[t]:value,
transactionStatus:label
})
this.refresh()
};
},
bindCalcuChange(res){
let value= this.data.arrayCalcu[res.detail.value].value;
let label= this.data.arrayCalcu[res.detail.value].label
let t="page.measureStatus"
if (value) {
this.setData({
[t]:value,
measureStatus:label
})
this.refresh()
};
},
vmodel(e){
let t="page.landCode"
this.setData({
[t]:e.detail.value
})
},
showInput(){
if(this.data.inputShow==true){return false}
this.setData({
inputShow:true
})
},
hideInput(){
this.setData({
inputShow:false
})
}
})