Browse Source

小程序换行

master
王健 4 years ago
parent
commit
5096599202
  1. 4
      components/detail-clinch/detail-clinch.wxml
  2. 16
      pages/look/look.js
  3. 2
      pages/look/look.wxml
  4. 3
      utils/api.js

4
components/detail-clinch/detail-clinch.wxml

@ -67,9 +67,7 @@
</view>
</view>
<view class="table-item">
<view class="table-lable">
成交楼面价(元/㎡)
</view>
<view class="table-lable" style="white-space:pre-wrap">成交楼面价\n(元/㎡)</view>
<view class="table-info">
{{info.dealFloorPrice?info.dealFloorPrice:'暂无数据'}}
</view>

16
pages/look/look.js

@ -23,6 +23,7 @@ for (let idx = min; idx < max; idx++) {
});
};
const CITY = wx.getStorageSync('city')
let start;
Page({
/**
@ -181,7 +182,6 @@ Page({
landListedId: landListedId,
}, true).then(res => {
if (res && res.data && res.data.length > 0) {
this.setWKT1(res, 3);
if (res.data[0].centerPoint) {
let centerPoint = res.data[0].centerPoint;
let point = WKT.parse(centerPoint);
@ -865,7 +865,12 @@ Page({
that.setWKT(data, id);
})
},
bindupdated(e) {
if (start) {
let time = (new Date().getTime() - start) / 1000
console.log("渲染耗时====》" + time);
}
},
// 地块数据解析
setWKT(data, id) {
let {
@ -911,9 +916,16 @@ Page({
}
return polygon
});
let length = newPolygons.map(item => {
return item.points.length
}).reduce((a, b) => {
return a + b;
})
console.log(length);
this.setData({
polygons: polygons.concat(newPolygons)
})
start = new Date().getTime();
},
//复制了一份,因为参数问题
setWKT1(data, id) {

2
pages/look/look.wxml

@ -158,7 +158,7 @@
</view>
</mp-half-screen-dialog>
<map class="map" enable-satellite="{{satellite==1?true:false}}" scale="{{scale}}" markers="{{markers}}"
latitude="{{latitude}}" longitude="{{longitude}}" bindmarkertap="markertap" polygons="{{polygons}}"
latitude="{{latitude}}" longitude="{{longitude}}" bindmarkertap="markertap" polygons="{{polygons}}" bindupdated='bindupdated'
circles="{{circles}}" bindtap="onMapTaped" show-location>
<cover-image bindtap="changeVision" class="map-scale map-scale-vision" src="../../assets/images/mapVision.png" />
<cover-image bindtap="showLayerSetting" class="map-scale map-scale-layer" src="../../assets/images/add.png" />

3
utils/api.js

@ -20,6 +20,7 @@ function request(method, url, data, hasToke = true) {
url += `?city=${city}`
}
}
let start = new Date().getTime();
return new Promise(function (resolve, reject) {
let header = {
'content-type': 'application/json',
@ -31,6 +32,8 @@ function request(method, url, data, hasToke = true) {
data: method === POST ? JSON.stringify(data) : data,
header: header,
success(res) {
let time = (new Date().getTime() - start) / 1000;
console.log(url + "耗时=====》" + time);
if (res.statusCode == 401) {
wx.showToast({
title: '登录过期,请重新登录',

Loading…
Cancel
Save