|
@@ -239,7 +239,8 @@ Page({
|
|
|
const top = e.detail.scrollTop || 0
|
|
|
|
|
|
this.setData({
|
|
|
- opacity: top < 100 ? 0 : (top - 100) > 150 ? 1 : (top - 100) / 150
|
|
|
+
|
|
|
+ opacity: top < 100 ? 0 : (top - 100) > 150 ? 1 : 1
|
|
|
})
|
|
|
if(this.data.scrollIntoViewType) {
|
|
|
this.setData({
|
|
@@ -290,5 +291,10 @@ Page({
|
|
|
scrollDiscount: type !== 'type3' ? true : false,
|
|
|
scrollIntoViewType: true,
|
|
|
})
|
|
|
+ },
|
|
|
+ onLookMore() {
|
|
|
+ this.setData({
|
|
|
+ popupShow: true
|
|
|
+ })
|
|
|
}
|
|
|
})
|