|
@@ -25,8 +25,20 @@
|
|
|
<text class="label">住址</text>
|
|
|
<text class="value address-value">{{userInfo.address}}</text>
|
|
|
</view>
|
|
|
- </view>
|
|
|
|
|
|
+ <!-- 通知轮播区域 -->
|
|
|
+ <view class="notice-bar" wx:if="{{noticeList && noticeList.length > 0}}">
|
|
|
+ <view class="notice-icon">
|
|
|
+ <image src="/static_file/speaker.png" mode="aspectFit"></image>
|
|
|
+ </view>
|
|
|
+ <view class="notice-swiper-container">
|
|
|
+ <view class="notice-content {{isScrolling ? 'scrolling' : ''}}" bindanimationend="onScrollComplete" bindtap="goToNoticeDetail" style="animation-duration: {{scrollDuration}}s;">
|
|
|
+ <text class="notice-title">{{noticeList[currentIndex].noticetitle}}:</text>
|
|
|
+ <text>{{noticeList[currentIndex].scrollingcontent}}</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
|
|
|
<!-- 票据式分割线 -->
|
|
@@ -60,18 +72,6 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <!-- 通知轮播区域 -->
|
|
|
- <view class="notice-bar" wx:if="{{noticeList && noticeList.length > 0}}">
|
|
|
- <view class="notice-icon">
|
|
|
- <image src="/static_file/speaker.png" mode="aspectFit"></image>
|
|
|
- </view>
|
|
|
- <view class="notice-swiper-container">
|
|
|
- <view class="notice-content {{isScrolling ? 'scrolling' : ''}}" bindanimationend="onScrollComplete" bindtap="goToNoticeDetail" style="animation-duration: {{scrollDuration}}s;">
|
|
|
- <text class="notice-title">{{noticeList[currentIndex].noticetitle}}:</text>
|
|
|
- <text>{{noticeList[currentIndex].scrollingcontent}}</text>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
|
|
|
<!-- 充值缴费按钮 -->
|
|
|
<button class="pay-btn" hover-class="pay-btn-hover" hover-stay-time="100" bindtap="goToPayment">立即缴费</button>
|