-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
115 lines (102 loc) · 2.28 KB
/
index.js
File metadata and controls
115 lines (102 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
// index.js
//test change
const app = getApp()
Page({
nextPage: function(){
wx.navigateTo({
url: "/pages/frisbee/frisbee",
})
},
nextPageLong: function(event){
wx.navigateTo({
url: "/pages/openuplong/openuplong",
})
},
jumptomap: function(){
wx.switchTab({
url: '/pages/map/map',
})
},
banner2jump: function(){
wx.navigateTo({
url: "/pages/banner2/banner2",
})
},
banner3jump: function(){
wx.navigateTo({
url: "/pages/banner3/banner3",
})
},
onLoad: function () {
this.getOpenid();
},
// 获取用户openid
getOpenid() {
let that = this;
wx.cloud.callFunction({
name: 'getOpenid',
complete: res => {
console.log('云函数获取到的openid: ', res.result.openid);
app.openid = res.result.openid;
console.log(app.openid)
}})
},
onShareAppMessage() {
return {
title: 'scroll-view',
path: 'page/component/pages/scroll-view/scroll-view'
}
},
data: {
toView: 'green',
imgUrls: ['https://github.com/Jackson-HX/HuaShui/blob/main/icons/Chicago.JPG?raw=true',
'https://github.com/Jackson-HX/HuaShui/blob/main/others/mapthumbnail.png?raw=true'],
indicatorDots: true,
vertical: false,
autoplay: true,
interval: 2000,
duration: 500,
color: '#FFFFFF',
windowHeight : 0
},
changeIndicatorDots() {
this.setData({
indicatorDots: !this.data.indicatorDots
})
},
changeAutoplay() {
this.setData({
autoplay: !this.data.autoplay
})
},
upper(e) {
console.log(e)
},
lower(e) {
console.log(e)
},
scroll(e) {
console.log(e)
},
scrollToTop() {
this.setAction({
scrollTop: 0
})
},
tap() {
for (let i = 0; i < order.length; ++i) {
if (order[i] === this.data.toView) {
this.setData({
toView: order[i + 1],
scrollTop: (i + 1) * 200
})
break
}
}
},
tapMove() {
this.setData({
scrollTop: this.data.scrollTop + 10
})
},
})