|
@@ -160,7 +160,7 @@
|
|
|
v-for="(v, i) in ratios.article"
|
|
|
:key="i"
|
|
|
title-style="flex: 3"
|
|
|
- :title="v.title"
|
|
|
+ :title="(i + 1) + '、' + v.title"
|
|
|
>
|
|
|
<template #label>
|
|
|
<van-tag size="large" type="primary"
|
|
@@ -178,7 +178,7 @@
|
|
|
v-for="(v, i) in topic"
|
|
|
:key="i"
|
|
|
title-style="flex: 3"
|
|
|
- :title="v.topic"
|
|
|
+ :title="(i + 1) + '、' + v.topic"
|
|
|
>
|
|
|
<template #label>
|
|
|
<van-tag size="large" type="primary"
|
|
@@ -193,7 +193,7 @@
|
|
|
v-for="(v, i) in article"
|
|
|
:key="i"
|
|
|
title-style="flex: 3"
|
|
|
- :title="v.title"
|
|
|
+ :title="(i + 1) + '、' + v.title"
|
|
|
>
|
|
|
<template #label>
|
|
|
<van-tag size="large" type="primary"
|