first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1 @@
d4a4ea02-6951-4cee-bb90-ea1cf1896a6e

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,3 @@
{
"component": true
}

View File

@@ -0,0 +1,22 @@
<view class="wux-class {{ classes.wrap }}" wx:if="{{ visible }}" bindtap="onClick">
<view class="{{ classes.hd }}">
<image class="{{ classes.icon }}" src="{{ icon }}" wx:if="{{ icon }}" />
<block wx:else>
<slot name="header"></slot>
</block>
</view>
<view class="{{ classes.bd }}">
<view class="{{ classes.container }}">
<view class="{{ classes.marquee }}" style="transform: translate3d({{ -animatedWidth + 'px' }}, 0px, 0px)">
<block wx:if="{{ content }}">{{ content }}</block>
<slot></slot>
</view>
</view>
</view>
<view class="{{ classes.ft }}" catchtap="onAction" wx:if="{{ mode === 'closable' || mode === 'link' }}">
<image class="{{ classes.action }}" src="{{ action }}" wx:if="{{ action }}" />
<block wx:else>
<slot name="footer"></slot>
</block>
</view>
</view>

View File

@@ -0,0 +1 @@
.wux-notice-bar{background-color:#fefcec;height:72rpx;overflow:hidden;font-size:28rpx;line-height:72rpx;color:#f76a24;display:-ms-flexbox;display:flex;padding:0 20rpx}.wux-notice-bar__icon{width:30rpx;height:30rpx;margin-right:20rpx}.wux-notice-bar__action{width:30rpx;height:30rpx;margin-left:20rpx}.wux-notice-bar__hd{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.wux-notice-bar__bd{-ms-flex:1;flex:1;width:100%;width:auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wux-notice-bar__marquee-container{overflow:hidden}.wux-notice-bar__marquee{position:relative;transform:translate3d(0,0,0);white-space:nowrap;display:inline-block}.wux-notice-bar__ft{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}