From c6ca2709a4cfc27795c0f7b54285b6857dffb6ee Mon Sep 17 00:00:00 2001 From: sws <1141121512@qq.com> Date: Fri, 13 Sep 2024 16:37:29 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BB=A3=E7=A0=81=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/common/url-value/url-value-dialog.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/common/url-value/url-value-dialog.vue b/src/components/common/url-value/url-value-dialog.vue index 83b3d48f..e41545af 100644 --- a/src/components/common/url-value/url-value-dialog.vue +++ b/src/components/common/url-value/url-value-dialog.vue @@ -8,7 +8,7 @@
- + {{ item.name }} @@ -72,6 +72,7 @@ const app = getCurrentInstance(); * @param modelValue{Object} 默认值 * @param dialogVisible {Boolean} 弹窗显示 * @param type{String} 链接类型为空数组则表示无限制,全部可用,传过来则表示传的值可用 + * @param multiple{Boolean} 是否多选 默认单选 只生效 商品页面 goods/ 文章页面 article/ DIY页面 diy/ 设计页面 design/ 自定义页面 custom-view/ 品牌页面 brand * @return {*} update:modelValue */ const props = defineProps({ @@ -79,7 +80,6 @@ const props = defineProps({ type: Array as PropType, default: () => [], }, - // 是否多选 默认单选 只生效 商品页面 goods/ 文章页面 article/ DIY页面 diy/ 设计页面 design/ 自定义页面 custom-view/ 品牌页面 brand multiple: { type: Boolean, default: false,