mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
set white background color for close icon
This commit is contained in:
parent
b01b10014a
commit
989b4a64d6
@ -6,6 +6,6 @@ VUE_APP_ADMIN_USER=admin
|
|||||||
VUE_APP_ADMIN_PASS=admin123
|
VUE_APP_ADMIN_PASS=admin123
|
||||||
VUE_APP_KEY_PREFIX=GeekAI_DEV_
|
VUE_APP_KEY_PREFIX=GeekAI_DEV_
|
||||||
VUE_APP_TITLE="Geek-AI 创作系统"
|
VUE_APP_TITLE="Geek-AI 创作系统"
|
||||||
VUE_APP_VERSION=v4.1.7
|
VUE_APP_VERSION=v4.1.8
|
||||||
VUE_APP_DOCS_URL=https://docs.geekai.me
|
VUE_APP_DOCS_URL=https://docs.geekai.me
|
||||||
VUE_APP_GIT_URL=https://github.com/yangjian102621/geekai
|
VUE_APP_GIT_URL=https://github.com/yangjian102621/geekai
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
VUE_APP_API_HOST=
|
VUE_APP_API_HOST=
|
||||||
VUE_APP_WS_HOST=
|
VUE_APP_WS_HOST=
|
||||||
VUE_APP_KEY_PREFIX=GeekAI_
|
VUE_APP_KEY_PREFIX=GeekAI_
|
||||||
VUE_APP_VERSION=v4.1.7
|
VUE_APP_VERSION=v4.1.8
|
||||||
VUE_APP_DOCS_URL=https://docs.geekai.me
|
VUE_APP_DOCS_URL=https://docs.geekai.me
|
||||||
VUE_APP_GIT_URL=https://github.com/yangjian102621/geekai
|
VUE_APP_GIT_URL=https://github.com/yangjian102621/geekai
|
||||||
|
@ -13,12 +13,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="body">
|
<div class="body">
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<el-link
|
<el-link :href="file.url" target="_blank" style="--el-font-weight-primary: bold">{{ substr(file.name, 30) }}</el-link>
|
||||||
:href="file.url"
|
|
||||||
target="_blank"
|
|
||||||
style="--el-font-weight-primary: bold"
|
|
||||||
>{{ substr(file.name, 30) }}</el-link
|
|
||||||
>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="info">
|
<div class="info">
|
||||||
<span>{{ GetFileType(file.ext) }}</span>
|
<span>{{ GetFileType(file.ext) }}</span>
|
||||||
@ -42,18 +37,14 @@ import { FormatFileSize, GetFileIcon, GetFileType } from "@/store/system";
|
|||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
files: {
|
files: {
|
||||||
type: Array,
|
type: Array,
|
||||||
default: []
|
default: [],
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
const emits = defineEmits(["removeFile"]);
|
const emits = defineEmits(["removeFile"]);
|
||||||
const fileList = ref(props.files);
|
const fileList = ref(props.files);
|
||||||
|
|
||||||
const removeFile = (file) => {
|
const removeFile = (file) => {
|
||||||
fileList.value = removeArrayItem(
|
fileList.value = removeArrayItem(fileList.value, file, (v1, v2) => v1.url === v2.url);
|
||||||
fileList.value,
|
|
||||||
file,
|
|
||||||
(v1, v2) => v1.url === v2.url
|
|
||||||
);
|
|
||||||
emits("removeFile", file);
|
emits("removeFile", file);
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
@ -118,6 +109,10 @@ const removeFile = (file) => {
|
|||||||
color #da0d54
|
color #da0d54
|
||||||
cursor pointer
|
cursor pointer
|
||||||
font-size 20px
|
font-size 20px
|
||||||
|
.el-icon {
|
||||||
|
background-color #fff
|
||||||
|
border-radius 50%
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user