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

View File

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