Compare commits

...
2 Commits
Author SHA1 Message Date
li 4b2acdf0d8 fix: 划转页面账户选择器无法弹出
从/到 点击事件缺少 currType=true,导致 u-picker 不弹出
用户无法切换到合约账户
2026-03-31 11:23:02 +08:00
li e8d99fa6a4 fix: 首页公告改为水平跑马灯滚动效果
notice-bar 从 vertical(上下切换) 改为 horizontal(从右到左滚动)
speed=60 控制滚动速度
2026-03-31 11:13:55 +08:00
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -6,7 +6,7 @@
<view class="borderBox" :style="'background-color: '+theme.fu_bg"> <view class="borderBox" :style="'background-color: '+theme.fu_bg">
<view class="height-260 padding-22 flex align-center justify-between"> <view class="height-260 padding-22 flex align-center justify-between">
<view class="flex-1"> <view class="flex-1">
<view @click="showPoup='accountL'" <view @click="showPoup='accountL',currType=true"
:class="[animationName?'animation-slide-bottom':'']" :class="[animationName?'animation-slide-bottom':'']"
class="width-100b height-110 flex align-center"> class="width-100b height-110 flex align-center">
<i class="cuIcon-title color-00C481"></i> <i class="cuIcon-title color-00C481"></i>
@@ -14,7 +14,7 @@
<text class="font-32">{{leftObj.name}}</text> <text class="font-32">{{leftObj.name}}</text>
</view> </view>
<view class="width-100b height-2 margin-c-4" style="background-color: #D1D3D8;"> </view> <view class="width-100b height-2 margin-c-4" style="background-color: #D1D3D8;"> </view>
<view @click="showPoup='accountR'" <view @click="showPoup='accountR',currType=true"
:class="[animationName?'animation-slide-top':'']" :class="[animationName?'animation-slide-top':'']"
class="width-100b height-110 flex align-center"> class="width-100b height-110 flex align-center">
<i class="cuIcon-title color-FF4040"></i> <i class="cuIcon-title color-FF4040"></i>
+2 -2
View File
@@ -30,8 +30,8 @@
<view @click="router.push('/pages/index/notice')" class="width-750 height-80 padding-w-30 flex align-center justify-between notice-container" :style="'margin:0 30rpx 8rpx 30rpx'"> <view @click="router.push('/pages/index/notice')" class="width-750 height-80 padding-w-30 flex align-center justify-between notice-container" :style="'margin:0 30rpx 8rpx 30rpx'">
<view class="notice-left flex align-center"> <view class="notice-left flex align-center">
<image class="notice-icon-left" src="/static/imgs/index/naba.png" mode="aspectFit"></image> <image class="notice-icon-left" src="/static/imgs/index/naba.png" mode="aspectFit"></image>
<u-notice-bar class="flex-1" type="none" mode="vertical" :volume-icon="false" <u-notice-bar class="flex-1" type="none" mode="horizontal" :volume-icon="false"
:list="noticelist" color="#2C2C2C"></u-notice-bar> :list="noticelist" color="#2C2C2C" speed="60"></u-notice-bar>
</view> </view>
<view class="notice-right flex align-center justify-center"> <view class="notice-right flex align-center justify-center">
<image class="notice-icon-right" src="/static/imgs/index/gonggao.png" mode="aspectFit"></image> <image class="notice-icon-right" src="/static/imgs/index/gonggao.png" mode="aspectFit"></image>