386 lines
9.7 KiB
Vue
386 lines
9.7 KiB
Vue
<!-- +----------------------------------------------------------------------
|
||
| 麦沃德科技赋能开发者,助力商协会发展
|
||
+----------------------------------------------------------------------
|
||
| Copyright (c) 2017~2024 www.wdsxh.cn All rights reserved.
|
||
+----------------------------------------------------------------------
|
||
| 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
|
||
+----------------------------------------------------------------------
|
||
| Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
|
||
+----------------------------------------------------------------------
|
||
| 组件-消息通知 开发者: 麦沃德科技-半夏
|
||
+---------------------------------------------------------------------- -->
|
||
|
||
<template>
|
||
<view v-if="show" class="uni-noticebar" :style="{padding: paddingTop + ' ' + paddingLeft, background: showStyle.background, borderRadius: itemBorderRadius}" @click="onClick">
|
||
<view v-if="showParams.showImg && showParams.icon" class="zan-noticebar__left-icon" style="float: left;">
|
||
<image :src="getImagePath(showParams.icon)" mode="aspectFit" />
|
||
</view>
|
||
<view ref="textBox" class="uni-noticebar__content-wrapper" :class="{'uni-noticebar__content-wrapper--scrollable':scrollable, 'uni-noticebar__content-wrapper--single':!scrollable && (single || moreText)}">
|
||
<view :id="elIdBox" class="uni-noticebar__content" :class="{'uni-noticebar__content--scrollable':scrollable, 'uni-noticebar__content--single':!scrollable && (single || moreText)}">
|
||
<text :id="elId" ref="animationEle" class="uni-noticebar__content-text" :class="{'uni-noticebar__content-text--scrollable':scrollable,'uni-noticebar__content-text--single':!scrollable && (single || moreText)}" :style="{color: showStyle.textColor, width:wrapWidth+'px', 'animationDuration': animationDuration, '-webkit-animationDuration': animationDuration ,animationPlayState: webviewHide?'paused':animationPlayState,'-webkit-animationPlayState':webviewHide?'paused':animationPlayState, animationDelay: animationDelay, '-webkit-animationDelay':animationDelay}">{{showParams.text}}</text>
|
||
</view>
|
||
</view>
|
||
<view v-if="showGetMore === true || showGetMore === 'true'" class="uni-noticebar__more" @click="clickMore">
|
||
<text v-if="moreText" :style="{ color: moreColor }" class="uni-noticebar__more-text">{{ moreText }}</text>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
// #ifdef APP-NVUE
|
||
const dom = weex.requireModule('dom');
|
||
const animation = weex.requireModule('animation');
|
||
// #endif
|
||
export default {
|
||
name: 'notice',
|
||
props: {
|
||
moreText: {
|
||
type: String,
|
||
default: ''
|
||
},
|
||
speed: {
|
||
// 默认1s滚动100px
|
||
type: Number,
|
||
default: 100
|
||
},
|
||
moreColor: {
|
||
type: String,
|
||
default: '#999999'
|
||
},
|
||
single: {
|
||
// 是否单行
|
||
type: [Boolean, String],
|
||
default: false
|
||
},
|
||
scrollable: {
|
||
// 是否滚动,添加后控制单行效果取消
|
||
type: [Boolean, String],
|
||
default: true
|
||
},
|
||
showGetMore: {
|
||
// 是否显示右侧查看更多
|
||
type: [Boolean, String],
|
||
default: false
|
||
},
|
||
showClose: {
|
||
// 是否显示左侧关闭按钮
|
||
type: [Boolean, String],
|
||
default: false
|
||
},
|
||
showStyle: {},
|
||
showParams: {},
|
||
domain: '',
|
||
},
|
||
computed: {
|
||
itemBorderRadius() {
|
||
return uni.upx2px(this.showStyle.itemBorderRadius * 2) + 'px';
|
||
},
|
||
paddingTop() {
|
||
return uni.upx2px(this.showStyle.paddingTop * 2) + 'px';
|
||
},
|
||
paddingLeft() {
|
||
return uni.upx2px(this.showStyle.paddingLeft * 2) + 'px';
|
||
},
|
||
},
|
||
data() {
|
||
const elId = `Uni_${Math.ceil(Math.random() * 10e5).toString(36)}`
|
||
const elIdBox = `Uni_${Math.ceil(Math.random() * 10e5).toString(36)}`
|
||
return {
|
||
textWidth: 0,
|
||
boxWidth: 0,
|
||
wrapWidth: '',
|
||
webviewHide: false,
|
||
// #ifdef APP-NVUE
|
||
stopAnimation: false,
|
||
// #endif
|
||
elId: elId,
|
||
elIdBox: elIdBox,
|
||
show: true,
|
||
animationDuration: 'none',
|
||
animationPlayState: 'paused',
|
||
animationDelay: '0s',
|
||
}
|
||
},
|
||
mounted() {
|
||
// #ifdef APP-PLUS
|
||
var pages = getCurrentPages();
|
||
var page = pages[pages.length - 1];
|
||
var currentWebview = page.$getAppWebview();
|
||
currentWebview.addEventListener('hide', () => {
|
||
this.webviewHide = true
|
||
})
|
||
currentWebview.addEventListener('show', () => {
|
||
this.webviewHide = false
|
||
})
|
||
// #endif
|
||
this.$nextTick(() => {
|
||
this.initSize()
|
||
})
|
||
},
|
||
// #ifdef APP-NVUE
|
||
beforeDestroy() {
|
||
this.stopAnimation = true
|
||
},
|
||
// #endif
|
||
methods: {
|
||
// 获取图片地址
|
||
getImagePath(url) {
|
||
if (url.indexOf('http') > -1) {
|
||
return url
|
||
} else {
|
||
return this.domain + url
|
||
}
|
||
},
|
||
initSize() {
|
||
if (this.scrollable) {
|
||
// #ifndef APP-NVUE
|
||
let query = [],
|
||
boxWidth = 0,
|
||
textWidth = 0;
|
||
let textQuery = new Promise((resolve, reject) => {
|
||
uni.createSelectorQuery()
|
||
// #ifndef MP-ALIPAY
|
||
.in(this)
|
||
// #endif
|
||
.select(`#${this.elId}`)
|
||
.boundingClientRect()
|
||
.exec(ret => {
|
||
this.textWidth = ret[0].width
|
||
resolve()
|
||
})
|
||
})
|
||
let boxQuery = new Promise((resolve, reject) => {
|
||
uni.createSelectorQuery()
|
||
// #ifndef MP-ALIPAY
|
||
.in(this)
|
||
// #endif
|
||
.select(`#${this.elIdBox}`)
|
||
.boundingClientRect()
|
||
.exec(ret => {
|
||
this.boxWidth = ret[0].width
|
||
resolve()
|
||
})
|
||
})
|
||
query.push(textQuery)
|
||
query.push(boxQuery)
|
||
Promise.all(query).then(() => {
|
||
this.animationDuration = `${this.textWidth / this.speed}s`
|
||
this.animationDelay = `-${this.boxWidth / this.speed}s`
|
||
setTimeout(() => {
|
||
this.animationPlayState = 'running'
|
||
}, 1000)
|
||
})
|
||
// #endif
|
||
// #ifdef APP-NVUE
|
||
dom.getComponentRect(this.$refs['animationEle'], (res) => {
|
||
let winWidth = uni.getSystemInfoSync().windowWidth
|
||
this.textWidth = res.size.width
|
||
animation.transition(this.$refs['animationEle'], {
|
||
styles: {
|
||
transform: `translateX(-${winWidth}px)`
|
||
},
|
||
duration: 0,
|
||
timingFunction: 'linear',
|
||
delay: 0
|
||
}, () => {
|
||
if (!this.stopAnimation) {
|
||
animation.transition(this.$refs['animationEle'], {
|
||
styles: {
|
||
transform: `translateX(-${this.textWidth}px)`
|
||
},
|
||
timingFunction: 'linear',
|
||
duration: (this.textWidth - winWidth) / this.speed * 1000,
|
||
delay: 1000
|
||
}, () => {
|
||
if (!this.stopAnimation) {
|
||
this.loopAnimation()
|
||
}
|
||
});
|
||
}
|
||
});
|
||
})
|
||
// #endif
|
||
}
|
||
// #ifdef APP-NVUE
|
||
if (!this.scrollable && (this.single || this.moreText)) {
|
||
dom.getComponentRect(this.$refs['textBox'], (res) => {
|
||
this.wrapWidth = res.size.width
|
||
})
|
||
}
|
||
// #endif
|
||
},
|
||
loopAnimation() {
|
||
// #ifdef APP-NVUE
|
||
animation.transition(this.$refs['animationEle'], {
|
||
styles: {
|
||
transform: `translateX(0px)`
|
||
},
|
||
duration: 0
|
||
}, () => {
|
||
if (!this.stopAnimation) {
|
||
animation.transition(this.$refs['animationEle'], {
|
||
styles: {
|
||
transform: `translateX(-${this.textWidth}px)`
|
||
},
|
||
duration: this.textWidth / this.speed * 1000,
|
||
timingFunction: 'linear',
|
||
delay: 0
|
||
}, () => {
|
||
if (!this.stopAnimation) {
|
||
this.loopAnimation()
|
||
}
|
||
});
|
||
}
|
||
});
|
||
// #endif
|
||
},
|
||
clickMore() {
|
||
this.$emit('getmore')
|
||
},
|
||
close() {
|
||
this.show = false;
|
||
this.$emit('close')
|
||
},
|
||
onClick() {
|
||
this.$emit('click')
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.uni-noticebar {
|
||
/* #ifndef APP-NVUE */
|
||
display: flex;
|
||
width: 100%;
|
||
box-sizing: border-box;
|
||
/* #endif */
|
||
flex-direction: row;
|
||
align-items: center;
|
||
padding: 6px 12px;
|
||
// margin-bottom: 10px;
|
||
}
|
||
|
||
.uni-noticebar-close {
|
||
margin-right: 5px;
|
||
}
|
||
|
||
.uni-noticebar-icon {
|
||
margin-right: 5px;
|
||
}
|
||
|
||
.uni-noticebar__content-wrapper {
|
||
flex: 1;
|
||
flex-direction: column;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.uni-noticebar__content-wrapper--single {
|
||
/* #ifndef APP-NVUE */
|
||
line-height: 18px;
|
||
/* #endif */
|
||
}
|
||
|
||
.uni-noticebar__content-wrapper--single,
|
||
.uni-noticebar__content-wrapper--scrollable {
|
||
flex-direction: row;
|
||
}
|
||
|
||
/* #ifndef APP-NVUE */
|
||
.uni-noticebar__content-wrapper--scrollable {
|
||
position: relative;
|
||
height: 18px;
|
||
}
|
||
|
||
/* #endif */
|
||
|
||
.uni-noticebar__content--scrollable {
|
||
/* #ifdef APP-NVUE */
|
||
flex: 0;
|
||
/* #endif */
|
||
/* #ifndef APP-NVUE */
|
||
flex: 1;
|
||
display: block;
|
||
overflow: hidden;
|
||
/* #endif */
|
||
}
|
||
|
||
.uni-noticebar__content--single {
|
||
/* #ifndef APP-NVUE */
|
||
display: flex;
|
||
flex: none;
|
||
width: 100%;
|
||
justify-content: center;
|
||
/* #endif */
|
||
}
|
||
|
||
.uni-noticebar__content-text {
|
||
font-size: 14px;
|
||
line-height: 18px;
|
||
/* #ifndef APP-NVUE */
|
||
word-break: break-all;
|
||
/* #endif */
|
||
}
|
||
|
||
.uni-noticebar__content-text--single {
|
||
/* #ifdef APP-NVUE */
|
||
lines: 1;
|
||
/* #endif */
|
||
/* #ifndef APP-NVUE */
|
||
display: block;
|
||
width: 100%;
|
||
white-space: nowrap;
|
||
/* #endif */
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.uni-noticebar__content-text--scrollable {
|
||
/* #ifdef APP-NVUE */
|
||
lines: 1;
|
||
padding-left: 750rpx;
|
||
/* #endif */
|
||
/* #ifndef APP-NVUE */
|
||
position: absolute;
|
||
display: block;
|
||
height: 18px;
|
||
line-height: 18px;
|
||
white-space: nowrap;
|
||
padding-left: 100%;
|
||
animation: notice 10s 0s linear infinite both;
|
||
animation-play-state: paused;
|
||
/* #endif */
|
||
}
|
||
|
||
.uni-noticebar__more {
|
||
/* #ifndef APP-NVUE */
|
||
display: inline-flex;
|
||
/* #endif */
|
||
flex-direction: row;
|
||
flex-wrap: nowrap;
|
||
align-items: center;
|
||
padding-left: 5px;
|
||
}
|
||
|
||
.uni-noticebar__more-text {
|
||
font-size: 14px;
|
||
}
|
||
|
||
@keyframes notice {
|
||
100% {
|
||
transform: translate3d(-100%, 0, 0);
|
||
}
|
||
}
|
||
|
||
.zan-noticebar__left-icon {
|
||
height: 36upx;
|
||
min-width: 40upx;
|
||
padding-top: 2upx;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.zan-noticebar__left-icon>image {
|
||
width: 32upx;
|
||
height: 32upx;
|
||
}
|
||
</style> |