You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.4 KiB
69 lines
1.4 KiB
<template>
|
|
<view class="notice bottom-cell-group" v-if="jdata.options.colorGroup && count">
|
|
<view class="notice-icon">
|
|
<image class="icon news-icon" src="/static/image/news.png" mode=""></image>
|
|
</view>
|
|
<swiper class="notice-c" :indicator-dots="false" :autoplay="true" :interval="3000" :duration="1000" :vertical="true" :circular="true">
|
|
<swiper-item v-for="item in jdata.options.colorGroup" :key="item.id">
|
|
<view class="swiper-item" @click="goNotice(item.id)">{{ item.title }}</view>
|
|
</swiper-item>
|
|
</swiper>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "jshopnotice",
|
|
props: {
|
|
jdata:{
|
|
// type: Object,
|
|
required: true,
|
|
}
|
|
},
|
|
computed: {
|
|
count() {
|
|
return (this.jdata.options.colorGroup.length > 0)
|
|
}
|
|
},
|
|
methods: {
|
|
// 点击公告
|
|
goNotice(id) {
|
|
// 文章详情
|
|
this.$common.navigateTo('/pages/article/index?id=' + id+'&id_type=2')
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.notice {
|
|
padding: 6upx 26upx 6upx 60upx;
|
|
position: relative;
|
|
overflow: hidden;
|
|
background-color: #fff;
|
|
color: #333;
|
|
}
|
|
.notice-icon {
|
|
display: inline-block;
|
|
height: 40upx;
|
|
position: absolute;
|
|
top: 59%;
|
|
left: 26upx;
|
|
transform: translateY(-50%);
|
|
overflow: hidden;
|
|
}
|
|
.news-icon {
|
|
width: 30upx;
|
|
height: 30upx;
|
|
float: left;
|
|
}
|
|
.notice-c {
|
|
margin-left: 10upx;
|
|
height: 50upx;
|
|
line-height: 50upx;
|
|
width: 630upx;
|
|
display: inline-block;
|
|
font-size: 28upx;
|
|
float: left;
|
|
}
|
|
</style>
|
|
|