10.16 修改今日日期样式,增加风险提示,禁掉相关标的分时图tooltip展示

This commit is contained in:
尚政杰
2025-10-16 00:35:38 +08:00
parent b53bb9715e
commit 48f49c6cf0
23 changed files with 118 additions and 101 deletions

View File

@@ -137,11 +137,14 @@
</view>
<view class="monthDateList flexWrap">
<view class="item flexColumnCenter" v-for="(item,index) in monthDateList[selectMonthIndex]" :key="index" @click="clickSelectDate(item)">
<block v-if="item.isToday||item.date==startDate||item.date==endDate">
<block v-if="item.isToday">
<view class="date today">{{item.day}}</view>
</block>
<block v-else>
<block v-if="item.timestamp>startTimeStamp&&item.timestamp<endTimeStamp">
<block v-if="item.date==startDate||item.date==endDate">
<view class="date select">{{item.day}}</view>
</block>
<block v-else-if="item.timestamp>startTimeStamp&&item.timestamp<endTimeStamp">
<view class="date inRange">{{item.day}}</view>
</block>
<block v-else>
@@ -1625,11 +1628,16 @@
color: #333;
text-align: center;
}
.date.today
.date.select
{
background-color: #FF7E1A;
color: white;
}
.date.today
{
// background-color: #FF7E1A;
color: #FF7E1A;
}
.date.inRange
{
background-color: #FFF2EB;