bugfix: 剪切组件顶部来源按钮样式

This commit is contained in:
2026-05-05 15:10:14 +08:00
parent 88f0528553
commit 006c2e3f9c

View File

@@ -27,7 +27,7 @@
</div> </div>
<div <div
class="origin-item product" class="origin-item product"
:class="{ selected: currentOrigin === 'mainProducImage' }" :class="{ selected: currentOrigin === 'mainProductImage' }"
@click="handleChangeOrigin('mainProductImage')" @click="handleChangeOrigin('mainProductImage')"
> >
{{ $t("Seller.mainProductImage") }} {{ $t("Seller.mainProductImage") }}
@@ -79,14 +79,12 @@
</template> </template>
<script setup> <script setup>
import { ref, reactive, computed } from "vue" import { ref, reactive, computed } from "vue"
import ImageClip from "./image-clip.vue" import ImageClip from "./image-clip.vue"
import { useI18n } from "vue-i18n" import { useI18n } from "vue-i18n"
const { t } = useI18n() const { t } = useI18n()
const props = defineProps({
const props = defineProps({
type: { type: {
type: String, type: String,
default: "" default: ""
@@ -95,9 +93,9 @@ const props = defineProps({
type: Boolean, type: Boolean,
default: false default: false
} }
}) })
const tips = computed(() => { const tips = computed(() => {
if (props.type === "cover") { if (props.type === "cover") {
return t("Seller.imageClipCoverTip") return t("Seller.imageClipCoverTip")
} }
@@ -110,9 +108,9 @@ const tips = computed(() => {
if (props.type === "apparel") { if (props.type === "apparel") {
return t("Seller.imageClipApparelTip") return t("Seller.imageClipApparelTip")
} }
}) })
const data = reactive({ const data = reactive({
url: "", url: "",
title: "Crop Image", title: "Crop Image",
preview_url: "", preview_url: "",
@@ -120,17 +118,17 @@ const data = reactive({
isPreview: true, isPreview: true,
callback: null, callback: null,
isProduct: false // 是否商品编辑 isProduct: false // 是否商品编辑
}) })
const currentOrigin = ref("sketch") const currentOrigin = ref("sketch")
const coverOrigin = ref([]) const coverOrigin = ref([])
const handleChangeOrigin = (type) => { const handleChangeOrigin = (type) => {
currentOrigin.value = type currentOrigin.value = type
data.url = coverOrigin.value.filter((el) => el.type === type)[0].url data.url = coverOrigin.value.filter((el) => el.type === type)[0].url
} }
const show = ref(false) const show = ref(false)
const open = (url, callback, options, origin) => { const open = (url, callback, options, origin) => {
if (!props.isProduct) { if (!props.isProduct) {
if (!url || !callback) return if (!url || !callback) return
} }
@@ -149,27 +147,27 @@ const open = (url, callback, options, origin) => {
data.url = origin[0].url data.url = origin[0].url
} }
show.value = true show.value = true
} }
const onCancel = () => { const onCancel = () => {
show.value = false show.value = false
} }
const imageClipRef = ref(null) const imageClipRef = ref(null)
const onSubmit = () => { const onSubmit = () => {
imageClipRef.value.getCropBlob().then((blob) => { imageClipRef.value.getCropBlob().then((blob) => {
if (data.callback) data.callback(blobToFile(blob, "image.png")) if (data.callback) data.callback(blobToFile(blob, "image.png"))
onCancel() onCancel()
}) })
} }
// 将blob转换为file对象 // 将blob转换为file对象
const blobToFile = (blob, fileName) => { const blobToFile = (blob, fileName) => {
return new File([blob], fileName, { type: blob.type }) return new File([blob], fileName, { type: blob.type })
} }
defineExpose({ defineExpose({
open open
}) })
</script> </script>
<style scoped lang="less"> <style scoped lang="less">
.image-clip-dialog-box { .image-clip-dialog-box {
width: 100%; width: 100%;
height: 100%; height: 100%;
overflow: hidden; overflow: hidden;
@@ -332,5 +330,5 @@ defineExpose({
} }
} }
} }
} }
</style> </style>