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, + }, +];