From 954e4bc3082522c3035ab2c01146bfe970795f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E5=BF=97=E5=86=9B?= <543024265@qq.com> Date: Fri, 4 Jul 2025 10:35:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E5=8F=96=E5=85=AC=E5=85=B1=E5=B8=B8?= =?UTF-8?q?=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../put-account/common_constants.ts | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/views/property-marketing/put-account/common_constants.ts diff --git a/src/views/property-marketing/put-account/common_constants.ts b/src/views/property-marketing/put-account/common_constants.ts new file mode 100644 index 0000000..4986d1f --- /dev/null +++ b/src/views/property-marketing/put-account/common_constants.ts @@ -0,0 +1,21 @@ +import icon1 from '@/assets/img/media-account/icon-jl.png'; +import icon2 from '@/assets/img/media-account/icon-jg.png'; +import icon3 from '@/assets/img/media-account/icon-bili.png'; + +export const PLATFORM_LIST = [ + { + label: '巨量', + value: 0, + icon: icon1, + }, + { + label: '聚光', + value: 1, + icon: icon2, + }, + { + label: 'B站', + value: 2, + icon: icon3, + }, +];