123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <template>
- <view>
- <view class="goods-list">
- <block v-for="(items, i) in goodsList" :key="i" @click="gotoDetail(item)">
-
- <my-goods :goods="item"></my-goods>
- </block>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- queryObj: {
-
- query: '',
-
- cid: '',
-
- pagenum: 1,
-
- pagesize: 10
- },
-
- goodsList: [],
-
- total: 0,
-
- isloading: false
- };
- },
- onLoad(options) {
-
- this.queryObj.query = options.query || ''
- this.queryObj.cid = options.cid || ''
-
- this.getGoodsList()
- },
- methods: {
-
- async getGoodsList(cb) {
-
- this.isloading = true
-
- const { data: res } = await
- uni.$http.get('/api/public/v1/goods/search', this.queryObj)
-
- this.isloading = false
-
- cb && cb()
-
- if (res.meta.status !== 200) return uni.$showMsg()
-
- this.goodsList = [...this.goodsList, ...res.message.goods]
- this.total = res.message.total
- },
-
- onReachBottom() {
-
- if (this.queryObj.pagenum * this.queryObj.pagesize >= this.total)
- return uni.$showMsg('数据加载完毕!')
-
-
- if (this.isloading) return
-
-
- this.queryObj.pagenum += 1
-
- this.getGoodsList()
- },
-
- onPullDownRefresh() {
-
- this.queryObj.pagenum = 1
- this.total = 0
- this.isloading = false
- this.goodsList = []
-
- this.getGoodsList(() => uni.stopPullDownRefresh())
- },
-
- gotoDetail(item) {
- uni.navigateTo({
- url: '/subpkg/goods_detail/goods_detail?goods_id=' + item.goods_id
- })
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|