|
@@ -1,22 +1,22 @@
|
|
|
<script setup lang="ts">
|
|
|
-import { computed, ref, toRefs } from "vue";
|
|
|
+import { computed, ref, unref } from "vue";
|
|
|
import { useVModel } from "@vueuse/core";
|
|
|
import { ElMessage } from "element-plus";
|
|
|
-import { useRenderIcon } from "../../ReIcon/src/hooks";
|
|
|
import { httpImgUpload } from "/@/api/components/upload";
|
|
|
import { useResponseHandle } from "/@/hooks/useAsync";
|
|
|
import { getToken } from "/@/utils/auth";
|
|
|
import { loadEnv } from "@build/index";
|
|
|
import { Plus } from "@element-plus/icons-vue";
|
|
|
-import type { UploadFile, UploadProps, UploadUserFile } from "element-plus";
|
|
|
-const emit = defineEmits(["change", "update:url"]);
|
|
|
+import { useRenderIcon } from "../../ReIcon/src/hooks";
|
|
|
+
|
|
|
+const emit = defineEmits(["change", "update:urls"]);
|
|
|
|
|
|
const props = withDefaults(
|
|
|
defineProps<{
|
|
|
descs?: string[];
|
|
|
types?: string[];
|
|
|
size?: number;
|
|
|
- url: string;
|
|
|
+ urls: string[];
|
|
|
disabled?: boolean;
|
|
|
}>(),
|
|
|
{
|
|
@@ -27,18 +27,12 @@ const { VITE_PROXY_DOMAIN_REAL } = loadEnv();
|
|
|
const baseUrl = `${VITE_PROXY_DOMAIN_REAL}storage/`;
|
|
|
const token = getToken();
|
|
|
const inputer = ref(null);
|
|
|
-const arr = ref([]);
|
|
|
const loading = ref(false);
|
|
|
-const urls = ref("");
|
|
|
const imageTypes = computed(() => {
|
|
|
const { types } = props;
|
|
|
return types.map(type => "image/" + type);
|
|
|
});
|
|
|
-const imageUrl = useVModel(props, "url");
|
|
|
-// const imageUrl1 = computed(() => {
|
|
|
-// const { url } = props;
|
|
|
-// return url.split(",");
|
|
|
-// });
|
|
|
+const imageUrls = useVModel(props, "urls");
|
|
|
const responseHandle = useResponseHandle();
|
|
|
|
|
|
const onBeforeImageUpload = ({ type, size }) => {
|
|
@@ -97,6 +91,14 @@ const disabled = ref(false);
|
|
|
// const handleDownload = (file: UploadFile) => {
|
|
|
// console.log(file);
|
|
|
// };
|
|
|
+
|
|
|
+function handleRemove(url: string) {
|
|
|
+ const index = imageUrls.value.findIndex(u => u === url);
|
|
|
+ if (index >= 0) {
|
|
|
+ imageUrls.value.splice(index, 1);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
const handleChange = async () => {
|
|
|
if (loading.value) return;
|
|
|
const files = inputer.value.files;
|
|
@@ -108,21 +110,21 @@ const handleChange = async () => {
|
|
|
loading.value = false;
|
|
|
inputer.value = null;
|
|
|
} else {
|
|
|
- const str = await httpupLoad(files, i);
|
|
|
- if (!(str === "break" || str === "error")) {
|
|
|
- arr.value.push(str);
|
|
|
- // imageUrl.value += str;
|
|
|
+ const url = await httpupLoad(files, i);
|
|
|
+ if (!(url === "break" || url === "error")) {
|
|
|
+ imageUrls.value.push(url);
|
|
|
+ emit("change", unref(imageUrls));
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
};
|
|
|
|
|
|
-const httpupLoad = (file, i) => {
|
|
|
+const httpupLoad = (file, i): Promise<string> => {
|
|
|
return new Promise(resolve => {
|
|
|
if (!onBeforeImageUpload(file[i])) {
|
|
|
- console.log("22222222222");
|
|
|
resolve("break");
|
|
|
}
|
|
|
+
|
|
|
const _formData = new FormData();
|
|
|
_formData.append("image", file[i]);
|
|
|
_formData.append("token", token);
|
|
@@ -133,8 +135,8 @@ const httpupLoad = (file, i) => {
|
|
|
message,
|
|
|
code,
|
|
|
handler: () => {
|
|
|
- urls.value = baseUrl + data[0].url;
|
|
|
- resolve(toRefs(urls));
|
|
|
+ const url = baseUrl + data[0].url;
|
|
|
+ resolve(url);
|
|
|
},
|
|
|
errorHandler: () => {
|
|
|
resolve("break");
|
|
@@ -147,9 +149,22 @@ const httpupLoad = (file, i) => {
|
|
|
|
|
|
<template>
|
|
|
<ul class="image-upload-list">
|
|
|
- <li v-for="(item, index) in arr" :key="index + item" class="img-show">
|
|
|
- {{ item }}
|
|
|
- <!-- <img :src="file" alt="" /> -->
|
|
|
+ <li
|
|
|
+ class="img-show relative"
|
|
|
+ v-for="(item, index) in imageUrls"
|
|
|
+ :key="index + item"
|
|
|
+ >
|
|
|
+ <img :src="item" alt="" />
|
|
|
+
|
|
|
+ <div class="absolute top-[-3px] right-[5px]">
|
|
|
+ <ElButton
|
|
|
+ link
|
|
|
+ size="large"
|
|
|
+ type="primary"
|
|
|
+ :icon="useRenderIcon('close-bold')"
|
|
|
+ @click="() => handleRemove(item)"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
</li>
|
|
|
<li class="img-input">
|
|
|
<input
|
|
@@ -158,8 +173,8 @@ const httpupLoad = (file, i) => {
|
|
|
:accept="types.join('.')"
|
|
|
:multiple="true"
|
|
|
type="file"
|
|
|
- :disabled="disabled"
|
|
|
name="file"
|
|
|
+ :disabled="disabled"
|
|
|
@change="handleChange"
|
|
|
/>
|
|
|
<el-icon class="avatar-uploader-icon"><Plus /></el-icon>
|