123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- <template>
- <view class="xzw_notice" :style="{color:getColor(theme),backgroundColor:getBgColor(theme)}">
- <uni-icons v-if="showIcon === true || showIcon === 'true'" class="notice_left" type="sound" :color="getColor(theme)" size="22" />
- <!-- 垂直滚动用到轮播组件 -->
- <swiper class="notice_center" vertical v-if="direction=='column'" :autoplay="true" :interval="speed=='fast'?4000:speed=='normal'?6000:10000" :duration="500" :circular="true" disable-touch>
- <swiper-item v-for="(item, index) in list" :key="index" class="swiperIn" @click="goItem(item)">
- <view>{{item[theKey]}}</view>
- </swiper-item>
- </swiper>
- <!-- 水平滚动取第一条公告 -->
- <view class="notice_center2" v-else>
- <view :class="speed">{{list[rowIndex][theKey]}}</view>
- </view>
- <view class="notice_right" v-if="showMore">
- <view @click="goMore">更多</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: "xzw-notice",
- props: {
- //主题色,default|primary|error|warning|success|info
- theme: {
- type: String,
- default: 'default'
- },
- // 是否显示左侧icon
- showIcon: {
- type: [Boolean, String],
- default: true
- },
- // 是否显示更多
- showMore: {
- type: [Boolean, String],
- default: true
- },
- //公告数组,必须是二维数组
- list: {
- type: Array,
- default () {
- return [{ id: 1, title: '公告1' }, { id: 2, title: '公告2' }]
- }
- },
- //公告数组的键名
- theKey: {
- type: String,
- default: 'title'
- },
- //方向,column垂直,row水平时取第一条公告
- direction: {
- type: String,
- default: 'column'
- },
- //滚动速度,快fast,慢slow,默认normal
- speed: {
- type: String,
- default: 'normal'
- }
- },
- data() {
- return {
- rowIndex: 0
- }
- },
- methods: {
- getColor(theme) {
- if (theme == "primary") {
- return "#2979FF"
- } else if (theme == "error") {
- return "#FA3534"
- } else if (theme == "warning") {
- return "#FF9A43"
- } else if (theme == "success") {
- return "#1BBF6C"
- } else if (theme == "info") {
- return "#909399"
- }else if(theme.indexOf('#') != -1) {
- return theme
- } else {
- return "#303133"
- }
- },
- getBgColor(theme) {
- if (theme == "primary") {
- return "#ECF5FF"
- } else if (theme == "error") {
- return "#FEF0F0"
- } else if (theme == "warning") {
- return "#FDF6EC"
- } else if (theme == "success") {
- return "#DBF1E1"
- } else if (theme == "info") {
- return "#F4F4F5"
- } else {
- return "#FFFFFF"
- }
- },
- // 点击公告
- goItem(item) {
- this.$emit('goItem', item)
- },
- //点击更多
- goMore() {
- this.$emit('goMore')
- }
- },
- created() {
- if (this.direction == "row") {
- let time = this.speed == "fast" ? 4000 : this.speed == "normal" ? 6000 : 10000
- setInterval(() => {
- if (this.rowIndex == this.list.length - 1) {
- this.rowIndex = 0;
- } else {
- this.rowIndex++;
- }
- }, time);
- }
- }
- }
- </script>
- <style lang="scss">
- .xzw_notice {
- font-size: 26upx;
- height: 90upx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 20upx;
- box-sizing: border-box;
- width: 100%;
- .notice_left {
- margin: 0 20upx 0 0;
- }
- .notice_center {
- flex: 1;
- height: 90upx;
- .swiperIn {
- height: 80upx;
- display: flex;
- align-items: center;
- view {
- overflow: hidden;
- display: -webkit-box;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- }
- }
- }
- .notice_center2 {
- flex: 1;
- position: relative;
- display: flex;
- align-items: center;
- height: 90upx;
- overflow: hidden;
- view {
- position: absolute;
- white-space: nowrap;
- padding-left: 100%;
- &.fast {
- animation: notice 4s linear infinite both;
- }
- &.normal {
- animation: notice 6s linear infinite both;
- }
- &.slow {
- animation: notice 10s linear infinite both;
- }
- }
- }
- .notice_right {
- margin: 0 0 0 20upx;
- }
- @keyframes notice {
- 100% {
- transform: translate3d(-100%, 0, 0);
- }
- }
- }
- </style>
|