From aa71262f769fcfe0153b7b67f9dc279e68c6aca5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8E=E8=82=96=E7=A3=8A?= <18851179580@163.com> Date: Fri, 7 Feb 2025 17:46:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E9=80=89=E9=A1=B9=E5=8D=A1?= =?UTF-8?q?=E5=86=85=E5=AE=B9=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/model-data-tabs/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/model-data-tabs/index.vue b/src/components/model-data-tabs/index.vue index 1c24b5c9..1325517b 100644 --- a/src/components/model-data-tabs/index.vue +++ b/src/components/model-data-tabs/index.vue @@ -91,19 +91,19 @@ watch( // 显示的数据处理 const tabs_data_list = new_data.content.tabs_list[tabs_active_index.value] || {}; tabs_data_type.value = tabs_data_list?.tabs_data_type || ''; - if (tabs_data_list.tabs_data_type === 'goods') { + if (tabs_data_type.value === 'goods') { tabs_list.value = tabs_data_list.goods_config; const new_style = tabs_data_list.goods_config.style; // 内容样式 data_content_container.value = common_styles_computer(new_style?.data_content_style || data_content_style); data_content_img_container.value = common_img_computer(new_style?.data_content_style || data_content_style); - } else if (tabs_data_list.tabs_data_type === 'article') { + } else if (tabs_data_type.value === 'article') { tabs_list.value = tabs_data_list.article_config; const new_style = tabs_data_list.article_config.style; // 内容样式 data_content_container.value = common_styles_computer(new_style?.data_content_style || data_content_style); data_content_img_container.value = common_img_computer(new_style?.data_content_style || data_content_style); - } else if (tabs_data_list.tabs_data_type === 'custom') { + } else if (tabs_data_type.value === 'custom') { tabs_list.value = tabs_data_list.custom_config; } // 公共样式