|
@@ -36,14 +36,14 @@
|
|
|
<van-grid
|
|
|
square
|
|
|
:column-num="4"
|
|
|
- class="h-full w-full object-cover md:h-[105px] mt-4"
|
|
|
+ class="w-full object-cover mt-4"
|
|
|
:gutter="10"
|
|
|
>
|
|
|
<van-grid-item
|
|
|
v-for="syt in sytList"
|
|
|
:key="syt.id"
|
|
|
@click="changeImg(syt)"
|
|
|
- :class="[syt.id === detailImg ? 'active' : '']"
|
|
|
+ :class="[syt.id === detailImg ? 'active' : '', 'cursor-pointer']"
|
|
|
>
|
|
|
<van-image class="max-w-[105px] max-h-[105px]" :src="devPath + syt.filePath" />
|
|
|
</van-grid-item>
|