新增商品列表

This commit is contained in:
lemon橪
2021-11-29 09:58:39 +08:00
parent f600b628ce
commit deed875c1b
5 changed files with 183 additions and 9 deletions

View File

@@ -113,7 +113,7 @@ export default {
},
onLoad() {
this.getGoodList();
this.getstoreList();
this.getStoreList();
},
methods: {
@@ -151,7 +151,7 @@ export default {
deleteStoreCollection(val.storeId).then((res) => {
if (res.statusCode == 200) {
this.storeList = [];
this.getstoreList();
this.getStoreList();
}
});
},
@@ -213,7 +213,7 @@ export default {
/**
* 获取店铺集合
*/
getstoreList() {
getStoreList() {
uni.showLoading({
title: "加载中",
});
@@ -246,7 +246,7 @@ export default {
this.getGoodList();
} else {
this.navList[1].params.pageNumber++;
this.getstoreList();
this.getStoreList();
}
},
},
@@ -262,7 +262,7 @@ export default {
} else {
this.navList[1].params.pageNumber = 1;
this.storeList = [];
this.getstoreList();
this.getStoreList();
}
},
};