|
@@ -121,7 +121,7 @@
|
|
</template>
|
|
</template>
|
|
<template #titleEnd="{ content }">
|
|
<template #titleEnd="{ content }">
|
|
<u-tag
|
|
<u-tag
|
|
- v-if="content.levelText && content.title.length <= 10"
|
|
|
|
|
|
+ v-if="content.levelText"
|
|
:text="StringUtils.cutString(content.levelText as string, 4)"
|
|
:text="StringUtils.cutString(content.levelText as string, 4)"
|
|
size="mini" plain color="#d9492e"
|
|
size="mini" plain color="#d9492e"
|
|
class="flex-shrink-0"
|
|
class="flex-shrink-0"
|
|
@@ -178,8 +178,13 @@
|
|
size="mini" plain color="#d9492e"
|
|
size="mini" plain color="#d9492e"
|
|
class="flex-shrink-0"
|
|
class="flex-shrink-0"
|
|
/>
|
|
/>
|
|
- <text class="ml-2">{{ item.title }}</text>
|
|
|
|
- <text v-if="item.regionText" class="ml-2">({{ item.regionText }})</text>
|
|
|
|
|
|
+ <view class="d-flex flex-col ml-2">
|
|
|
|
+ <view class="d-flex flex-row align-center">
|
|
|
|
+ <text>{{ item.title }}</text>
|
|
|
|
+ <text v-if="item.regionText" class="ml-2">({{ item.regionText }})</text>
|
|
|
|
+ </view>
|
|
|
|
+ <text class="size-s color-second">{{ item.title }}</text>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
<text class="iconfont icon-arrow-right"></text>
|
|
<text class="iconfont icon-arrow-right"></text>
|
|
</view>
|
|
</view>
|