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.
 

118 lines
4.5 KiB

const $api = require('../../utils/api').API;
const WKT = require('../../utils/terraformer-wkt-parser.min');
Component({
options: {
addGlobalClass: true
},
properties: {
info: {
type: Object
},
},
data: {},
attached: function () {
},
methods: {
setMark(e) {
this.triggerEvent('setMark', e)
},
previewImage(e) {
var type = e.target.dataset.type;
if (this.properties.info.transactionStatus == "toBeListed") {
$api.AJAX('GET', 'applets/landToListAttachment', {
fileType: type,
proposedseriaId: this.properties.info.proposedseriaId,
// proposedseriaId: 'CQ20210617152223'
}, true).then(res => {
if (res.data.length > 0) {
wx.navigateTo({
url: '/pages/preview/preview?src=' + res.data[0].filePath,
})
} else {
wx.showToast({
title: '暂无资料可预览',
icon: 'none',
duration: 2000
})
}
})
} else {
$api.AJAX('GET', 'applets/landAttachment', {
fileType: type,
landListedId: this.properties.info.landListedId,
// landListedId: 'CQ202106280037'
}, true).then(res => {
if (res.data.length > 0) {
wx.navigateTo({
url: '/pages/preview/preview?src=' + res.data[0].filePath,
})
} else {
wx.showToast({
title: '暂无资料可预览',
icon: 'none',
duration: 2000
})
}
})
}
// for (let i = 0; i < this.data.wawa.length; i++) {
// imgList.push(this.data.wawa[i].img_url);
// }
// wx.previewImage({
// urls: imgList//图片数组
// })
},
//导航
navigato() {
// wx.getLocation({
// type: 'gcj02', //返回可以用于wx.openLocation的经纬度
// success(res) {
// const latitude = res.latitude
// const longitude = res.longitude
// console.log(latitude);
// console.log(longitude);
// // wx.openLocation({
// // latitude,
// // longitude,
// // scale: 18
// // })
// }
// })
var proposedseriaId = this.properties.info.proposedseriaId
// var proposedseriaId = 'CQ20210617152223'
var landListedId = this.properties.info.landListedId
// var landListedId = 'CQ202106280037'
if (this.properties.info.transactionStatus == 'toBeListed') {
$api.AJAX('GET', 'applets/landtolistlonlat/list/' + proposedseriaId, true).then(res => {
if (res && res.data && res.data.length > 0) {
let point = WKT.parse(res.data[0].centerPoint).coordinates
let latitude = point[0]
let longitude = point[1]
wx.openLocation({
latitude: Number(longitude),
longitude: Number(latitude),
name: res.data[0].name,
scale: 28
})
}
})
} else {
$api.AJAX('GET', 'applets/landlistedlonlat/list/' + landListedId, true).then(res => {
if (res && res.data && res.data.length > 0) {
let point = WKT.parse(res.data[0].centerPoint).coordinates
let latitude = point[0]
let longitude = point[1]
wx.openLocation({
latitude: Number(longitude),
longitude: Number(latitude),
name: res.data[0].name,
scale: 28
})
}
})
}
}
}
})