From c02bff2911f720d54388f4abb6456ec1777f8a96 Mon Sep 17 00:00:00 2001 From: zhangxiao <898441624@qq.com> Date: 星期五, 30 八月 2024 10:40:02 +0800 Subject: [PATCH] fix: 修改bug --- src/components/upload/index.vue | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/src/components/upload/index.vue b/src/components/upload/index.vue index ffae588..3600546 100644 --- a/src/components/upload/index.vue +++ b/src/components/upload/index.vue @@ -5,12 +5,16 @@ :limit="limit" :action="action" @change="handleChange" + @before-remove="beforeRemove" image-preview /> </template> <script setup> import { computed, ref, onMounted, watch, watchEffect } from 'vue'; + import { useUserStore } from '@/store'; + + const userStore = useUserStore(); const props = defineProps({ limit: { type: Number, @@ -20,7 +24,7 @@ url: String, //鍥炴樉鐨勬枃浠跺湴鍧� }); - const emit = defineEmits(['update:fileList', 'success']); + const emit = defineEmits(['update:fileList', 'success', 'handleRemove']); const urls = computed(() => props.url); const fileList = ref([]); @@ -50,9 +54,19 @@ url: item, })); } + + // console.log( + // window.location.origin, + // import.meta.env.VITE_API_BASE_URL, + // 8988 + // ); }); // console.log(urls.value, 8988); + const beforeRemove = (file) => { + emit('handleRemove'); + fileList.value = []; + }; const handleChange = (fileList) => { emit('update:fileList', fileList); -- Gitblit v1.8.0