| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // packageA/pages/historicalTrackDetailMap/historicalTrackDetailMap.js
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- latitude: null,
- longitude: null,
- markers: [],
- remark: '',
- imagesTU: [],
- },
- onLoad: function (options) {
- console.log(options);
- let arr = JSON.parse(options.images);
- let obj = {
- id: 0,
- latitude: options.url.split(',')[0],
- longitude: options.url.split(',')[1],
- width: 30,
- height: 50,
- iconPath: '/images/icon/wz.png',
- };
- this.data.markers.push(obj);
- this.setData({
- imagesTU: arr,
- latitude: options.url.split(',')[0],
- longitude: options.url.split(',')[1],
- markers: this.data.markers,
- remark: options.remark,
- });
- },
- viewMoviePostImg: function (e) {
- var src = e.currentTarget.dataset.src;
- wx.previewImage({
- current: src, // 当前显示图片的http链接
- urls: [src], // 需要预览的图片http链接列表
- });
- },
- });
|