1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="style-one" :class="list.length === 0 ? '' : 'padding'">
- <!-- 赵 张 朱 陶 宋 范 姚 金 冯 -->
- <image class="item" v-for="(it, k) in list" :key="k" @click="r(it)" :src="it.big_pic_url"></image>
- <view class="no-empty main-center" v-if="list.length === 0">
- <n background="#f7f7f7" title="该分类下无相关内容哦~"></n>
- </view>
- </view>
- </template>
- <script>
- import n from '../../components/page-component/app-no-goods/app-no-goods.vue';
- export default {
- name: 'style-one',
- props: ['list'],
- components: {'n': n},
- methods: {
- r(i) {
- console.log("测试..."+i);
- uni.navigateTo({url: i.page_url});
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .style-one {
- width: 750upx;
- background-color: #ffffff;
- }
- .padding {
- padding:0 24upx 24upx 24upx;
- }
- .item {
- width: 702upx;
- height: 212upx;
- margin-top: 20upx;
- }
- .no-empty {
- width: 100%;
- margin-top: 150upx;
- background-color: #f7f7f7;
- }
- </style>
|