peng
2025-10-29 65956f8f44f764dd007b1a0141302b5614c9ca89
manager/src/views/activity-prize/prize.vue
@@ -67,12 +67,12 @@
        ref="table"
        class="prize-table"
      >
        <template slot-scope="{ row }" slot="prizeCoverUrl">
        <template slot-scope="{ row }" slot="prizeImgUrl">
          <img
            :src="row.prizeCoverUrl"
            :src="row.prizeImgUrl"
            alt="奖品封面"
            class="thumbnail"
            @click="previewImage(row.prizeCoverUrl)"
            @click="previewImage(row.prizeImgUrl)"
          >
        </template>
        <!-- 操作按钮插槽 -->
@@ -501,9 +501,9 @@
      columns:[
        {
          title: '奖品封面',
          key: 'prizeCoverUrl',
          slot:'prizeCoverUrl',
          title: '奖品图片',
          key: 'prizeImgUrl',
          slot:'prizeImgUrl',
          align: 'center',
          minWidth: 100,
        },