File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -168,6 +168,9 @@ const sponsorList = ref([
168
168
}
169
169
]
170
170
},
171
+ ]);
172
+
173
+ const sponsorsListHistoric = ref ([
171
174
{
172
175
title: ' 历史赞助方(服务与设施)' ,
173
176
list: [
@@ -301,7 +304,32 @@ const sponsorList = ref([
301
304
</tbody >
302
305
</table >
303
306
</div >
307
+
308
+ <div v-for =" item in sponsorsListHistoric" :key =" item.title" >
309
+ <category-second :title =" item.title" />
310
+ <div class =" p-6" >
311
+ <div class =" grid grid-cols-4 gap-6 p-2" >
312
+ <a
313
+ v-for =" sponsor in item.list"
314
+ :key =" sponsor.name"
315
+ class =" cursor-pointer text-center"
316
+ :href =" sponsor.web"
317
+ target =" _blank" >
318
+ <div class =" min-h-[91.74px]" >
319
+ <img
320
+ loading =" lazy"
321
+ :src =" `/assets/sponsors/${sponsor.img}.svg`"
322
+ :alt =" sponsor.name"
323
+ class =" w-[100%] max-w-[100%]" />
324
+ </div >
325
+ <div class =" text-link" >{{ sponsor.name }}</div >
326
+ </a >
327
+ </div >
328
+ </div >
329
+
330
+ </div >
304
331
</div >
332
+
305
333
</template >
306
334
307
335
<style scoped></style >
You can’t perform that action at this time.
0 commit comments