classList.vue
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<template>
<search></search>
<view class="mainBox">
<shops :list="shopList" :shopWidth="344" :shopHeight="344" :isClass="true" />
</view>
<view class="null flexV" v-if="!shopList.length">
<image class="sss" src="/static/pointsMallic/pointsShopNull.png" mode=""></image>
<text>暂无商品信息</text>
</view>
</template>
<script setup>
import { ref } from 'vue'
import { onShow, onLoad } from '@dcloudio/uni-app'
import { getCategoryGoods } from '@/api'
import search from '@/componets/searchBox.vue'
import shops from '@/componets/shops.vue'
const shopList = ref([])
onLoad(async ({ pid }) => {
const res = await getCategoryGoods({ pid })
shopList.value = res
console.log(res, '分类商品列表')
})
</script>
<style lang="scss">
page {
background: #f7f8fa;
}
.mainBox {
width: 100%;
padding: 16rpx 24rpx;
box-sizing: border-box;
}
.null {
margin-top: 266rpx;
text {
position: relative;
margin-top: -80rpx;
color: #00000066;
font-size: 26rpx;
}
image {
width: 348rpx;
height: 348rpx;
}
}
</style>