取消首页下拉刷新

This commit is contained in:
TOP糯米 2023-04-01 13:20:52 +08:00
parent b015747510
commit 2d1f0f79e0
2 changed files with 21 additions and 29 deletions

View File

@ -3,8 +3,7 @@
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "熊熊安装队",
"enablePullDownRefresh": true
"navigationBarTitleText": "熊熊安装队"
}
},
{

View File

@ -120,38 +120,31 @@ export default {
WidgetModal,
},
onLoad() {
this.initPage();
//
this.$request({
api: "index.banner",
}).then((response) => {
response.data.forEach((item) => {
this.bannerList.push({
image: item.image,
});
});
});
//
this.$models.system.notifyList().then((list) => {
this.notifyList = list;
});
//
this.$models.system.navList().then((list) => {
this.installServiceList = list.install;
this.aftermarketServiceList = list.aftermarket;
});
},
onShow() {},
onReady() {},
onReachBottom() {},
onPullDownRefresh() {
this.initPage();
uni.stopPullDownRefresh();
},
onPullDownRefresh() {},
methods: {
initPage() {
this.bannerList = [];
//
this.$request({
api: "index.banner",
}).then((response) => {
response.data.forEach((item) => {
this.bannerList.push({
image: item.image,
});
});
});
//
this.$models.system.notifyList().then((list) => {
this.notifyList = list;
});
//
this.$models.system.navList().then((list) => {
this.installServiceList = list.install;
this.aftermarketServiceList = list.aftermarket;
});
},
/**
* 跳转
*/