Browse Source

修改参拍记录

master
王健 4 years ago
parent
commit
cdc4acf19e
  1. 2
      components/detail-clinch/detail-clinch.js
  2. 2
      pages/auctionRecord/auctionRecord.js
  3. 4
      pages/auctionRecord/auctionRecord.wxml
  4. 2
      pages/lookStay-detail/lookStay-detail.js

2
components/detail-clinch/detail-clinch.js

@ -27,7 +27,7 @@ Component({
methods: {
goRecord() {
wx.navigateTo({
url: '/pages/auctionRecord/auctionRecord?id=' + JSON.stringify(this.properties.info),
url: '/pages/auctionRecord/auctionRecord?id=' + this.properties.info.landListedId,
})
},
}

2
pages/auctionRecord/auctionRecord.js

@ -16,7 +16,7 @@ Page({
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
this.getList(JSON.parse(options.id).landListedId)
this.getList(options.id)
},
//请求列表
getList(id) {

4
pages/auctionRecord/auctionRecord.wxml

@ -9,7 +9,8 @@
<view class="th">名义楼面价(元/m2)</view>
<view class="th">无偿移交比例(%)</view>
</view>
<block wx:for="{{listData}}" wx:key="index">
<scroll-view scroll-y="{{true}}" style="height: 1120rpx;">
<block wx:for="{{listData}}" wx:key="index">
<view class="tr bg-g" wx:if="{{index % 2 == 0}}">
<view class="td1">{{item.ranking}}</view>
<view class="td2">{{item.raiseEnterprise}}</view>
@ -25,6 +26,7 @@
<view class="td">{{item.percentUnpaidTransfers}}</view>
</view>
</block>
</scroll-view>
</view>
<view wx:if="{{listData.length <= 0}}" class="noText">暂无数据</view>
</view>

2
pages/lookStay-detail/lookStay-detail.js

@ -104,7 +104,7 @@ Page({
if (res&&res.data&&res.data.length > 0) {
this.setWKT1(res, 3);
if(res.data[0].centerPoint){
centerPoint = res.data[0].centerPoint;
let centerPoint = res.data[0].centerPoint;
let point = WKT.parse(centerPoint);
this.setData({
latitude: point.coordinates[1],

Loading…
Cancel
Save