From 5550e75893c393c81c5ea1b30e872571b32a5fc1 Mon Sep 17 00:00:00 2001 From: mtruning <1262327911@qq.com> Date: Sun, 16 Jan 2022 15:54:59 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E5=9B=BE=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/Create/components/CreateModal/index.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/views/project/layout/components/Create/components/CreateModal/index.vue b/src/views/project/layout/components/Create/components/CreateModal/index.vue index 21b86374..a91653c0 100644 --- a/src/views/project/layout/components/Create/components/CreateModal/index.vue +++ b/src/views/project/layout/components/Create/components/CreateModal/index.vue @@ -40,7 +40,8 @@ import { icon } from '@/plugins' import { PageEnum, ChartEnum } from '@/enums/pageEnum' import { routerTurnByName, renderLang } from '@/utils' -const { FishIcon, LaptopOutlineIcon, BeerIcon, CloseIcon } = icon.ionicons5 +const { FishIcon, CloseIcon } = icon.ionicons5 +const { StoreIcon, ObjectStorageIcon } = icon.carbon const t = window['$t'] const emit = defineEmits(['close']) const props = defineProps({ @@ -57,13 +58,13 @@ const typeList = reactive([ { title: renderLang('project.my_templete'), key: PageEnum.BASE_HOME_TEMPLATE_NAME, - icon: LaptopOutlineIcon, + icon: ObjectStorageIcon, disabled: true }, { title: renderLang('project.template_market'), key: PageEnum.BASE_HOME_TEMPLATE_MARKET_NAME, - icon: BeerIcon, + icon: StoreIcon, disabled: true } ])