只差最后一个细节

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

View File

@ -68,20 +68,20 @@ export default defineComponent({
<template> <template>
<div class="container-lg bg-light pageroot"> <div class="container-lg bg-light pageroot">
<div class="normalcontentdiv"> <div class="normalcontentdiv">
<span class="normalcontenttitle"> <span class="normalcontenttitle">
行业案例 行业案例
</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>
<td style="text-align: left;width: 100%;"> <tr v-for="item in titles" :key="item.createdAt">
<span class="normalcontenttext"style="background-color: transparent;"> <td style="text-align: left;width: 100%;">
<a :href="`/ExampleItem?createdAt=${item.createdAt}`" style="background-color: transparent; color: blue;"> <a :href="`/ExampleItem?createdAt=${item.createdAt}`" style="color: blue;">
{{ item.title }} {{ item.title }}
</a> </a>
</span> </td>
</td> </tr>
</tr> </tbody>
</table> </table>
</span> </span>
</div> </div>