From 9bce51f651aad297ef9eb6df832bfdaf1de05d84 Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期三, 22 四月 2026 14:27:54 +0800
Subject: [PATCH] 青岛推送
---
node_modules/@dcloudio/uni-ui/lib/uni-notice-bar/uni-notice-bar.vue | 38 +++++++++++++++-----------------------
1 files changed, 15 insertions(+), 23 deletions(-)
diff --git a/node_modules/@dcloudio/uni-ui/lib/uni-notice-bar/uni-notice-bar.vue b/node_modules/@dcloudio/uni-ui/lib/uni-notice-bar/uni-notice-bar.vue
index 47fb9b3..81416d9 100644
--- a/node_modules/@dcloudio/uni-ui/lib/uni-notice-bar/uni-notice-bar.vue
+++ b/node_modules/@dcloudio/uni-ui/lib/uni-notice-bar/uni-notice-bar.vue
@@ -1,26 +1,20 @@
<template>
<view v-if="show" class="uni-noticebar" :style="{ backgroundColor }" @click="onClick">
- <uni-icons v-if="showIcon === true || showIcon === 'true'" class="uni-noticebar-icon" type="sound"
- :color="color" :size="fontSize * 1.5" />
- <view ref="textBox" class="uni-noticebar__content-wrapper"
- :class="{
+ <slot v-if="showIcon === true || showIcon === 'true'" name="noticebarIcon">
+ <uni-icons class="uni-noticebar-icon" type="sound" :color="color" :size="fontSize * 1.5" />
+ </slot>
+ <view ref="textBox" class="uni-noticebar__content-wrapper" :class="{
'uni-noticebar__content-wrapper--scrollable': scrollable,
'uni-noticebar__content-wrapper--single': !scrollable && (single || moreText)
- }"
- :style="{ height: scrollable ? fontSize * 1.5 + 'px' : 'auto' }"
- >
- <view :id="elIdBox" class="uni-noticebar__content"
- :class="{
+ }" :style="{ height: scrollable ? fontSize * 1.5 + 'px' : 'auto' }">
+ <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="{
+ }">
+ <text :id="elId" ref="animationEle" class="uni-noticebar__content-text" :class="{
'uni-noticebar__content-text--scrollable': scrollable,
'uni-noticebar__content-text--single': !scrollable && (single || showGetMore)
- }"
- :style="{
+ }" :style="{
color: color,
fontSize: fontSize + 'px',
lineHeight: fontSize * 1.5 + 'px',
@@ -31,12 +25,10 @@
'-webkit-animationPlayState': webviewHide ? 'paused' : animationPlayState,
animationDelay: animationDelay,
'-webkit-animationDelay': animationDelay
- }"
- >{{text}}</text>
+ }">{{text}}</text>
</view>
</view>
- <view v-if="isShowGetMore" class="uni-noticebar__more uni-cursor-point"
- @click="clickMore">
+ <view v-if="isShowGetMore" class="uni-noticebar__more uni-cursor-point" @click="clickMore">
<text v-if="moreText.length > 0" :style="{ color: moreColor, fontSize: fontSize + 'px' }">{{ moreText }}</text>
<uni-icons v-else type="right" :color="moreColor" :size="fontSize * 1.1" />
</view>
@@ -150,8 +142,8 @@
animationDelay: '0s'
}
},
- watch:{
- text:function(newValue,oldValue){
+ watch: {
+ text(newValue, oldValue) {
this.initSize();
}
},
@@ -160,8 +152,8 @@
return this.showGetMore === true || this.showGetMore === 'true'
},
isShowClose() {
- return (this.showClose === true || this.showClose === 'true')
- && (this.showGetMore === false || this.showGetMore === 'false')
+ return (this.showClose === true || this.showClose === 'true') &&
+ (this.showGetMore === false || this.showGetMore === 'false')
}
},
mounted() {
--
Gitblit v1.9.3