From 648dd3b3c2c4c0fe6d9bc4b3e53563870dca442c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8E=E8=82=96=E7=A3=8A?= <18851179580@163.com> Date: Sun, 5 Jan 2025 10:48:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=A1=B5=E9=9D=A2=E6=98=BE?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/diy/custom.vue | 2 +- components/diy/modules/custom/model-icon.vue | 2 +- components/diy/modules/custom/model-image.vue | 2 +- components/diy/modules/custom/model-panel.vue | 2 +- components/diy/modules/custom/model-text.vue | 2 +- components/diy/modules/data-magic/custom/index.vue | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/diy/custom.vue b/components/diy/custom.vue index fc81dc56..95bec99f 100644 --- a/components/diy/custom.vue +++ b/components/diy/custom.vue @@ -300,7 +300,7 @@ } } } - app.globalData.url_event(e); + app.globalData.url_open(e); }, }, }; diff --git a/components/diy/modules/custom/model-icon.vue b/components/diy/modules/custom/model-icon.vue index 1bc11de2..930bb2f9 100644 --- a/components/diy/modules/custom/model-icon.vue +++ b/components/diy/modules/custom/model-icon.vue @@ -124,7 +124,7 @@ return style; }, url_event(e) { - this.$emit('url_event', e) + this.$emit('url_event', this.icon_url); }, }, }; diff --git a/components/diy/modules/custom/model-image.vue b/components/diy/modules/custom/model-image.vue index 3f276034..4e148d2b 100644 --- a/components/diy/modules/custom/model-image.vue +++ b/components/diy/modules/custom/model-image.vue @@ -138,7 +138,7 @@ return style; }, url_event(e) { - this.$emit('url_event', e); + this.$emit('url_event', this.img_url); }, }, }; diff --git a/components/diy/modules/custom/model-panel.vue b/components/diy/modules/custom/model-panel.vue index 2bad0fba..6a73d250 100644 --- a/components/diy/modules/custom/model-panel.vue +++ b/components/diy/modules/custom/model-panel.vue @@ -81,7 +81,7 @@ return background_computer(data); }, url_event(e) { - this.$emit('url_event', e); + this.$emit('url_event', this.panel_url); }, }, }; diff --git a/components/diy/modules/custom/model-text.vue b/components/diy/modules/custom/model-text.vue index b7839515..9f28b00e 100644 --- a/components/diy/modules/custom/model-text.vue +++ b/components/diy/modules/custom/model-text.vue @@ -156,7 +156,7 @@ return style; }, url_event(e) { - this.$emit('url_event', e) + this.$emit('url_event', this.text_url) }, }, }; diff --git a/components/diy/modules/data-magic/custom/index.vue b/components/diy/modules/data-magic/custom/index.vue index f70e7ca3..0ac46d1d 100644 --- a/components/diy/modules/data-magic/custom/index.vue +++ b/components/diy/modules/data-magic/custom/index.vue @@ -263,7 +263,7 @@ export default { } } } - app.globalData.url_event(e); + app.globalData.url_open(e); }, }, };