This commit is contained in:
王一嘉
2025-07-24 21:55:11 +08:00
parent ff61918d76
commit 775cb76aec
2 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
<script setup>
import XImage from "../../../../components/XImage/Index.vue";
import Filter from "../../../../components/Filter/index.vue";
import {reactive, ref} from "vue";
import useTableQuery from "../../../../hooks/useTableQuery.js";
@@ -188,12 +188,12 @@ const refuseExchangeAll = async () => {
<template v-slot:image="{record}">
<div class="flex gap-[12px]">
<a-image
<x-image
v-for="v in record.images_arr"
width="40px"
height="40px"
:src="v">
</a-image>
</x-image>
</div>
</template>

View File

@@ -1,5 +1,5 @@
<script setup>
import XImage from "../../../../components/XImage/Index.vue";
import Filter from "../../../../components/Filter/index.vue";
import {reactive, ref} from "vue";
import useTableQuery from "../../../../hooks/useTableQuery.js";
@@ -196,12 +196,12 @@ const refuseExchangeAll = async () => {
<template v-slot:image="{record}">
<div class="flex gap-[12px]">
<a-image
<x-image
v-for="v in record.images_arr"
width="40px"
height="40px"
:src="v">
</a-image>
</x-image>
</div>
</template>