|
|
@@ -64,7 +64,7 @@
|
|
|
<view class="d-flex flex-col">
|
|
|
<view class="d-flex flex-row justify-between">
|
|
|
<view class="d-flex flex-col">
|
|
|
- <text class="size-lll font-bold color-text-content">{{ content.title }}</text>
|
|
|
+ <text :class="'size-lll font-bold color-text-content'+(content.titleBox?' border-all-text':'')">{{ content.title }}</text>
|
|
|
<text class="size-base color-text-content-second mt-2">{{ content.birthplace || content.desc }}</text>
|
|
|
<RoundTags
|
|
|
:tags="content.tags"
|
|
|
@@ -142,6 +142,7 @@ async function load(id: number, tabsArray: Ref<TabControlItem[]>) {
|
|
|
tabsArray.value[4].visible = Boolean(d.prize);
|
|
|
tabsArray.value[5].visible = Boolean(d.associationMeList && d.associationMeList.length > 0);
|
|
|
tabsArray.value[6].visible = Boolean(d.ichSitesList && (d.ichSitesList as any[]).length > 0);
|
|
|
+ d.titleBox = Boolean(d.deathBirth);
|
|
|
return d;
|
|
|
}
|
|
|
async function loadSubList(page: number, pageSize: number, content: any, subList: string) {
|