Browse Source

14.37

master
zhangjy 4 years ago
parent
commit
0b69ce77f4
  1. 64
      pages/look-list/look-list.js
  2. 28
      pages/look-list/look-list.wxml
  3. 25
      pages/look-list/look-list.wxss
  4. 4
      utils/api.js
  5. 4
      utils/gisApi.js

64
pages/look-list/look-list.js

@ -27,11 +27,34 @@ Page({
},
searchNode:{
date:{height:0,bottom:0},
sale:{height:0,bottom:0},
calcu:{height:0,bottom:0}
},
measureStatus:'',
transactionStatus:'',
arraySale:[],
arrayCalcu:[]
arrayCalcu:[],
saleList:[],
calcuList:[],
saleNum:null,
calcuNum:null
},
changeRadio(e){
let type=e.currentTarget.dataset.type;
switch (type){
case 'sale':
this.setData({
saleNum:e.currentTarget.dataset.num,
'page.transactionStatus':this.data.saleList[e.currentTarget.dataset.num].value
});
break;
case 'calcu':
this.setData({
calcuNum:e.currentTarget.dataset.num,
'page.measureStatus':this.data.calcuList[e.currentTarget.dataset.num].value
});
break;
}
},
comeBack(){
@ -46,12 +69,12 @@ Page({
onLoad: function (options) {
$api.getDict('land_transaction').then(res=>{
this.setData({
arraySale:res.data
saleList:res.data
})
})
$api.getDict('measure_status').then(res=>{
this.setData({
arrayCalcu:res.data
calcuList:res.data
})
})
},
@ -101,6 +124,7 @@ Page({
})
},
goSearch(){
this.inShow();
this.setData({
'searchNode.date.height':0,
'searchNode.date.bottom':0,
@ -110,7 +134,15 @@ Page({
hideMark(){
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}
})
}
}
},
comeDetail(e){
let id=e.currentTarget.dataset.id;
console.log(e.currentTarget.dataset.id)
@ -172,10 +204,30 @@ Page({
};
},
showDown(e){
console.log(e.currentTarget.dataset.type)
const _this=this;
for(let key in this.data.searchNode){
if(this.data.searchNode[key].height>0){
this.setData({
[`searchNode.${key}`]:{height:0,bottom:0}
})
}
}
switch (e.currentTarget.dataset.type){
case 'date':
this.setData({'searchNode.date.height':200,'searchNode.date.bottom':-200,})
setTimeout(()=>{
_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,});
},300)
break;
case 'calcu':
setTimeout(()=>{
_this.setData({'searchNode.calcu.height':200,'searchNode.calcu.bottom':-200,});
},300)
break;
}
},
demo(){

28
pages/look-list/look-list.wxml

@ -24,7 +24,7 @@
</wxs>
<view class="pages">
<mp-navigation-bar ext-class="set-bar" title="土地池"></mp-navigation-bar>
<view class="look-top">
<view class="look-top" bindtap="inShow">
<view class="look-search center" bindtap="showInput">
<image wx:if="{{!inputShow}}" class="look-s-icon" src="../../assets/images/search.png"></image>
<input value="{{page.landCode}}" bindconfirm="refresh" wx:if="{{inputShow}}" focus="true" bindblur="hideInput" class="form-input" bindinput="vmodel" type="text" />
@ -76,8 +76,32 @@
<view class="toSearch" bindtap="goSearch">确定</view>
</view>
</view>
<!-- 交易状态下拉 -->
<view class="displayDown" style="height:{{searchNode.sale.height}}rpx;bottom:{{searchNode.sale.bottom}}rpx">
<view class="searchDate" style="justify-content:center">
<view class="{{saleNum==i?'radioView isChose':'radioView'}}" wx:for="{{saleList}}" wx:for-index="i" wx:for-item="item" bindtap="changeRadio" data-num="{{i}}" data-type="sale">
{{item.label}}
</view>
</view>
<view class="btnGp">
<view class="clearSearch">清空</view>
<view class="toSearch" bindtap="goSearch">确定</view>
</view>
</view>
<!-- 测算状态下拉 -->
<view class="displayDown" style="height:{{searchNode.calcu.height}}rpx;bottom:{{searchNode.calcu.bottom}}rpx">
<view class="searchDate" style="justify-content:center">
<view class="{{calcuNum==i?'radioView isChose':'radioView'}}" wx:for="{{calcuList}}" wx:for-index="i" wx:for-item="item" bindtap="changeRadio" data-num="{{i}}" data-type="calcu">
{{item.label}}
</view>
</view>
<view class="btnGp">
<view class="clearSearch">清空</view>
<view class="toSearch" bindtap="goSearch">确定</view>
</view>
</view>
</view>
<view class="main">
<view class="main" bindtap="inShow">
<view class="mark" wx:if="{{active}}" bindtap="hideMark">
</view>
<scroll-view class="list" style="height:100%" scroll-y="{{setScroll}}" refresher-enabled refresher-triggered="{{refresher}}"

25
pages/look-list/look-list.wxss

@ -140,7 +140,7 @@
width: 100%;
background-color: rgb(248, 248, 248);
/* bottom: -200rpx; */
transition:all .3s ease-in-out;
transition:all .2s ease-in-out;
z-index: 999999;
box-shadow:0 15px 10px -15px rgba(0,0,0,.2)
}
@ -188,4 +188,27 @@
.centerIn{
display: flex;
align-items: center;
}
.radioView{
display: block!important;
width: 120rpx!important;
height: 70rpx;
text-align: center;
line-height: 70rpx;
border:1px solid gray;
border-left: none;
}
.isChose{
background-color: rgb(22, 155, 213);
color: #ffffff;
border:1px solid rgb(22, 155, 213);
}
.radioView:nth-child(1){
border-top-left-radius: 8rpx;
border-bottom-left-radius: 8rpx;
border-left: 1px solid gray;
}
.radioView:last-child{
border-top-right-radius: 8rpx;
border-bottom-right-radius: 8rpx;
}

4
utils/api.js

@ -1,5 +1,5 @@
// const baseURL = 'https://yoursairdata.com/api/'
const baseURL = 'http://192.168.24.3:9002/'
const baseURL = 'https://yoursairdata.com/api/'
// const baseURL = 'http://192.168.24.3:9002/'
const GET = 'GET';
const POST = 'POST';
const PUT = 'PUT';

4
utils/gisApi.js

@ -1,5 +1,5 @@
// const baseURL = 'https://yoursairdata.com/gis/'
const baseURL = 'http://47.108.164.110:8080/'
const baseURL = 'https://yoursairdata.com/gis/'
// const baseURL = 'http://47.108.164.110:8080/'
const GET = 'GET';
const POST = 'POST';

Loading…
Cancel
Save