|
@@ -33,6 +33,7 @@ Page({
|
|
|
data: {
|
|
|
navBarHeight: app.globalData.navBarHeight,
|
|
|
safeBottomHeight: app.globalData.safeBottomHeight,
|
|
|
+ bannerList: app.globalData.bannerList,
|
|
|
nvabarData: {
|
|
|
showCapsule: 0, //是否显示左上角图标 1表示显示 0表示不显示
|
|
|
title: 'OhPlay', //导航栏 中间的标题
|
|
@@ -41,13 +42,13 @@ Page({
|
|
|
///下午好
|
|
|
isLogin: false,
|
|
|
greeting: "",
|
|
|
- bannerList: [{
|
|
|
- "pic": "https://music-play.oss-cn-shenzhen.aliyuncs.com/device/20241028142233669038262.png"
|
|
|
- },
|
|
|
- {
|
|
|
- "pic": "https://music-play.oss-cn-shenzhen.aliyuncs.com/device/20240823145816541223911.png"
|
|
|
- }
|
|
|
- ],
|
|
|
+ // bannerList: [{
|
|
|
+ // "pic": "https://music-play.oss-cn-shenzhen.aliyuncs.com/device/20241028142233669038262.png"
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // "pic": "https://music-play.oss-cn-shenzhen.aliyuncs.com/device/20240823145816541223911.png"
|
|
|
+ // }
|
|
|
+ // ],
|
|
|
autoplay: true,
|
|
|
interval: 3000, // 切换时间间隔
|
|
|
duration: 500, // 滑动动画时长
|
|
@@ -1195,15 +1196,9 @@ Page({
|
|
|
|
|
|
onBannerLoad() {
|
|
|
var that = this;
|
|
|
- var bannerList = wx.getStorageSync("homeBanner") || [];
|
|
|
- if (that.data.bannerList.length > 0) {
|
|
|
- that.setData({
|
|
|
- bannerList: bannerList
|
|
|
- });
|
|
|
- }
|
|
|
getBanner({}).then((res) => {
|
|
|
that.setData({
|
|
|
- bannerList: res
|
|
|
+ bannerList: res,
|
|
|
});
|
|
|
store.setStore("homeBanner", res);
|
|
|
});
|