|
|
|
@ -41,7 +41,7 @@ |
|
|
|
:class="{ 'active': kStyle === 'common' }" |
|
|
|
@click="handleKStyleChange('common')" |
|
|
|
> |
|
|
|
<img src="/static/my/common.png" class="kline-icon" /> |
|
|
|
<image src="../../static/my/common.png" class="kline-icon" /> |
|
|
|
<text>普通</text> |
|
|
|
<view class="active-dot" v-if="kStyle === 'common'"></view> |
|
|
|
</view> |
|
|
|
@ -50,7 +50,7 @@ |
|
|
|
:class="{ 'active': kStyle === 'Outline' }" |
|
|
|
@click="handleKStyleChange('Outline')" |
|
|
|
> |
|
|
|
<img src="/static/my/outline.png" class="kline-icon" /> |
|
|
|
<image src="../../static/my/outline.png" class="kline-icon" /> |
|
|
|
<text>轮廓图</text> |
|
|
|
<view class="active-dot" v-if="kStyle === 'Outline'"></view> |
|
|
|
</view> |
|
|
|
@ -59,7 +59,7 @@ |
|
|
|
:class="{ 'active': kStyle === 'polylines' }" |
|
|
|
@click="handleKStyleChange('polylines')" |
|
|
|
> |
|
|
|
<img src="/static/my/polylines.png" class="kline-icon" /> |
|
|
|
<image src="../../static/my/polylines.png" class="kline-icon" /> |
|
|
|
<text>折线图</text> |
|
|
|
<view class="active-dot" v-if="kStyle === 'polylines'"></view> |
|
|
|
</view> |
|
|
|
@ -101,7 +101,7 @@ |
|
|
|
@click="handleRfColorChange('green')" |
|
|
|
> |
|
|
|
<view class="color-icon"> |
|
|
|
<img src="/static/my/greenRise.png" class="kline-icon" /> |
|
|
|
<image src="../../static/my/greenRise.png" class="kline-icon" /> |
|
|
|
</view> |
|
|
|
<text>绿涨红跌</text> |
|
|
|
<view class="active-dot" v-if="rfColor === 'green'"></view> |
|
|
|
@ -112,7 +112,7 @@ |
|
|
|
@click="handleRfColorChange('red')" |
|
|
|
> |
|
|
|
<view class="color-icon"> |
|
|
|
<img src="/static/my/redRise.png" class="kline-icon" /> |
|
|
|
<image src="../../static/my/redRise.png" class="kline-icon" /> |
|
|
|
</view> |
|
|
|
<text>红涨绿跌</text> |
|
|
|
<view class="active-dot" v-if="rfColor === 'red'"></view> |
|
|
|
@ -152,8 +152,8 @@ |
|
|
|
<view class="indicator-item" v-for="(item, index) in indicatorList" :key="index"> |
|
|
|
<text class="indicator-text">{{ item }}</text> |
|
|
|
<view class="indicator-icons"> |
|
|
|
<img src="/static/my/setting.png" class="icon" /> |
|
|
|
<img src="/static/my/menu.png" class="icon" /> |
|
|
|
<image src="../../static/my/setting.png" class="icon" /> |
|
|
|
<image src="../../static/my/menu.png" class="icon" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view style="height:10vh;background-color: white;"></view> |
|
|
|
@ -268,7 +268,6 @@ |
|
|
|
} |
|
|
|
|
|
|
|
.top-options { |
|
|
|
height: 5.5vh; |
|
|
|
display: flex; |
|
|
|
padding: 0 40rpx; |
|
|
|
} |
|
|
|
@ -300,6 +299,8 @@ |
|
|
|
.kline-icon { |
|
|
|
margin-right: 10rpx; |
|
|
|
font-size: 32rpx; |
|
|
|
width:60rpx; |
|
|
|
height:50rpx; |
|
|
|
} |
|
|
|
|
|
|
|
.color-icon { |
|
|
|
|