|
|
@ -11,7 +11,16 @@ Page({ |
|
|
|
pageIndex:1, |
|
|
|
pageSize:10, |
|
|
|
noticeCategory:'', |
|
|
|
preloadVisible: true |
|
|
|
preloadVisible: true, |
|
|
|
isNeedBanner: false, |
|
|
|
bannerList: [], |
|
|
|
indicatorDots: false, //指示点
|
|
|
|
autoplay: true, //true,//自动播放
|
|
|
|
circular: true, //衔接滑动
|
|
|
|
interval: 5000, //自动播放间隔时长(ms)
|
|
|
|
duration: 500, //幻灯片切换时长(ms)
|
|
|
|
currentSwiper: 0, |
|
|
|
nodata: false |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
@ -30,6 +39,12 @@ Page({ |
|
|
|
wx.setNavigationBarTitle({ |
|
|
|
title: "锦水印象" |
|
|
|
}) |
|
|
|
this.setData({ |
|
|
|
isNeedBanner: true |
|
|
|
}) |
|
|
|
if (this.data.isNeedBanner) { |
|
|
|
this.videoBannerList() |
|
|
|
} |
|
|
|
this.noticelist() |
|
|
|
} else if(options.modulecode == 'notice_yh'){ |
|
|
|
wx.setNavigationBarTitle({ |
|
|
@ -41,9 +56,60 @@ Page({ |
|
|
|
title: "锦水警事" |
|
|
|
}) |
|
|
|
this.noticeDetail(options.id) |
|
|
|
} else if(options.modulecode == 'notice_points_rule'){ |
|
|
|
wx.setNavigationBarTitle({ |
|
|
|
title: '积分规则' |
|
|
|
}) |
|
|
|
this.noticelist() |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
swiperChange: function(e) { |
|
|
|
this.setData({ |
|
|
|
currentSwiper: e.detail.current |
|
|
|
}) |
|
|
|
}, |
|
|
|
bindplay() { |
|
|
|
this.setData({ |
|
|
|
autoplay: false |
|
|
|
}) |
|
|
|
wx.getNetworkType({ |
|
|
|
success (res) { |
|
|
|
const networkType = res.networkType |
|
|
|
if (res.networkType != 'wifi') { |
|
|
|
wx.showToast({ |
|
|
|
title: '当前为非WI-FI环境,请注意流量消耗', |
|
|
|
icon: 'none', |
|
|
|
duration: 3000 |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
bindended() { |
|
|
|
this.setData({ |
|
|
|
autoplay: true |
|
|
|
}) |
|
|
|
}, |
|
|
|
bindVideoEnterPictureInPicture() { |
|
|
|
console.log('进入小窗模式') |
|
|
|
}, |
|
|
|
bindVideoLeavePictureInPicture() { |
|
|
|
console.log('退出小窗模式') |
|
|
|
}, |
|
|
|
videoErrorCallback(e) { |
|
|
|
console.log('视频错误信息:') |
|
|
|
console.log(e.detail.errMsg) |
|
|
|
}, |
|
|
|
videoBannerList () { |
|
|
|
api.videoBannerList('3').then( res => { |
|
|
|
this.setData({ |
|
|
|
bannerList: res.data |
|
|
|
}) |
|
|
|
}).catch(err => { |
|
|
|
console.log(err) |
|
|
|
}) |
|
|
|
}, |
|
|
|
noticelist () { |
|
|
|
let that = this; |
|
|
|
let params = { |
|
|
@ -52,7 +118,16 @@ Page({ |
|
|
|
noticeCategory: that.data.noticeCategory |
|
|
|
} |
|
|
|
api.noticelist(params).then(function (res) { |
|
|
|
that.noticeDetail(res.data[0].id) |
|
|
|
if (res.data.length == 0) { |
|
|
|
that.setData({ |
|
|
|
nodata: true |
|
|
|
}) |
|
|
|
} else { |
|
|
|
that.setData({ |
|
|
|
nodata: false |
|
|
|
}) |
|
|
|
that.noticeDetail(res.data[0].id) |
|
|
|
} |
|
|
|
}).catch(err => { |
|
|
|
console.log(err) |
|
|
|
}) |
|
|
|