只差最后一个细节

This commit is contained in:
zhcnyuyang 2025-06-10 19:30:28 +08:00
parent 33e8ab0cad
commit e8c0fa869e

View File

@ -72,16 +72,16 @@ export default defineComponent({
行业案例 行业案例
</span> </span>
<span class="normalcontenttext" style="width: 100%;"> <span class="normalcontenttext" style="width: 100%;">
<table class="table table-striped"> <table class="table table-bordered table-striped">
<tr v-for="item in titles"> <tbody>
<tr v-for="item in titles" :key="item.createdAt">
<td style="text-align: left;width: 100%;"> <td style="text-align: left;width: 100%;">
<span class="normalcontenttext"style="background-color: transparent;"> <a :href="`/ExampleItem?createdAt=${item.createdAt}`" style="color: blue;">
<a :href="`/ExampleItem?createdAt=${item.createdAt}`" style="background-color: transparent; color: blue;">
{{ item.title }} {{ item.title }}
</a> </a>
</span>
</td> </td>
</tr> </tr>
</tbody>
</table> </table>
</span> </span>
</div> </div>