系统菜单部分功能及planToAdd文件中的config.ts文件修改
This commit is contained in:
104
hx-ai-intelligent/src/components/icon/IconPicker.vue
Normal file
104
hx-ai-intelligent/src/components/icon/IconPicker.vue
Normal file
@@ -0,0 +1,104 @@
|
||||
<template>
|
||||
<a-modal :bodyStyle="{ padding: '24px'}" :visible="iconOpen" :width="800" @ok="iconHandleOk(iconChecked)" @cancel="closeOpenIcon" title="选择图标">
|
||||
<a-input
|
||||
v-model:value="searchValue"
|
||||
placeholder="请输入英文关键词进行搜索"
|
||||
@change="filterIcon"
|
||||
/>
|
||||
<div class="icon-box">
|
||||
<div
|
||||
v-for="(item,index) in iconArr"
|
||||
:key="index"
|
||||
@click="sendData(item)"
|
||||
class="icon-content"
|
||||
:style="{ background: iconChecked === item ? '#1890ff' : ''}"
|
||||
>
|
||||
<component :is="$icons[item]" />
|
||||
</div>
|
||||
</div>
|
||||
</a-modal>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
import { ref, watch,defineProps} from 'vue';
|
||||
import { NsMessage } from '/nerv-lib/saas';
|
||||
import icons from './icons.json';
|
||||
const props = defineProps(['iconHandleOk']);
|
||||
const iconArr = ref<string[]>(icons);
|
||||
const searchValue = ref('');
|
||||
const iconOpen = ref<boolean>(false);
|
||||
const iconChecked =ref('');//选中数据
|
||||
/**
|
||||
* 进行搜索过滤
|
||||
*/
|
||||
const filterIcon = () => {
|
||||
if (searchValue.value){
|
||||
iconArr.value = icons.filter(item => item.toLowerCase().includes(searchValue.value.toLowerCase()) )
|
||||
}else{
|
||||
iconArr.value = icons;
|
||||
}
|
||||
}
|
||||
watch(iconOpen,()=>{
|
||||
searchValue.value = ''
|
||||
iconArr.value = icons;
|
||||
})
|
||||
const sendData = (data:any) => {
|
||||
iconChecked.value = data;
|
||||
}
|
||||
const iconHandleOk = (e: MouseEvent) => {
|
||||
if(!iconChecked.value){
|
||||
NsMessage.error('请选择图标');
|
||||
return;
|
||||
}else{
|
||||
props.iconHandleOk(iconChecked.value);//调用父组件传递来的函数
|
||||
iconOpen.value = false;
|
||||
iconChecked.value = '';
|
||||
}
|
||||
};
|
||||
// 关闭图标选择弹窗
|
||||
const closeOpenIcon = () => {
|
||||
iconOpen.value = false;
|
||||
iconChecked.value = '';
|
||||
};
|
||||
// 暴露给父组件
|
||||
const isIconOpenToggle = (data:any)=>{
|
||||
if(data){
|
||||
iconChecked.value = data;//记住上一次选择的数据
|
||||
}
|
||||
iconOpen.value = true;
|
||||
}
|
||||
const isIconData = ()=>{
|
||||
if(!iconChecked.value){
|
||||
NsMessage.warn('请先选择图标');
|
||||
iconOpen.value = true;
|
||||
}
|
||||
}
|
||||
defineExpose({
|
||||
isIconOpenToggle,
|
||||
isIconData
|
||||
})
|
||||
|
||||
</script>
|
||||
<style lang="less">
|
||||
.icon-box{
|
||||
overflow: auto;
|
||||
font-size: 20px;
|
||||
width: 100%;
|
||||
height: 280px;
|
||||
padding-top:10px;
|
||||
}
|
||||
|
||||
.icon-content{
|
||||
width: 45px;
|
||||
height: 40px;
|
||||
margin: 6px;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
border-radius: 6px;
|
||||
border: 1px solid #ccc;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.icon-content:hover{
|
||||
background: rgba(26, 144, 255,.3);
|
||||
}
|
||||
</style>
|
||||
790
hx-ai-intelligent/src/components/icon/icons.json
Normal file
790
hx-ai-intelligent/src/components/icon/icons.json
Normal file
@@ -0,0 +1,790 @@
|
||||
[
|
||||
"AccountBookFilled",
|
||||
"AccountBookOutlined",
|
||||
"AccountBookTwoTone",
|
||||
"AimOutlined",
|
||||
"AlertFilled",
|
||||
"AlertOutlined",
|
||||
"AlertTwoTone",
|
||||
"AlibabaOutlined",
|
||||
"AlignCenterOutlined",
|
||||
"AlignLeftOutlined",
|
||||
"AlignRightOutlined",
|
||||
"AlipayCircleFilled",
|
||||
"AlipayCircleOutlined",
|
||||
"AlipayOutlined",
|
||||
"AlipaySquareFilled",
|
||||
"AliwangwangFilled",
|
||||
"AliwangwangOutlined",
|
||||
"AliyunOutlined",
|
||||
"AmazonCircleFilled",
|
||||
"AmazonOutlined",
|
||||
"AmazonSquareFilled",
|
||||
"AndroidFilled",
|
||||
"AndroidOutlined",
|
||||
"AntCloudOutlined",
|
||||
"AntDesignOutlined",
|
||||
"ApartmentOutlined",
|
||||
"ApiFilled",
|
||||
"ApiOutlined",
|
||||
"ApiTwoTone",
|
||||
"AppleFilled",
|
||||
"AppleOutlined",
|
||||
"AppstoreAddOutlined",
|
||||
"AppstoreFilled",
|
||||
"AppstoreOutlined",
|
||||
"AppstoreTwoTone",
|
||||
"AreaChartOutlined",
|
||||
"ArrowDownOutlined",
|
||||
"ArrowLeftOutlined",
|
||||
"ArrowRightOutlined",
|
||||
"ArrowUpOutlined",
|
||||
"ArrowsAltOutlined",
|
||||
"AudioFilled",
|
||||
"AudioMutedOutlined",
|
||||
"AudioOutlined",
|
||||
"AudioTwoTone",
|
||||
"AuditOutlined",
|
||||
"BackwardFilled",
|
||||
"BackwardOutlined",
|
||||
"BankFilled",
|
||||
"BankOutlined",
|
||||
"BankTwoTone",
|
||||
"BarChartOutlined",
|
||||
"BarcodeOutlined",
|
||||
"BarsOutlined",
|
||||
"BehanceCircleFilled",
|
||||
"BehanceOutlined",
|
||||
"BehanceSquareFilled",
|
||||
"BehanceSquareOutlined",
|
||||
"BellFilled",
|
||||
"BellOutlined",
|
||||
"BellTwoTone",
|
||||
"BgColorsOutlined",
|
||||
"BlockOutlined",
|
||||
"BoldOutlined",
|
||||
"BookFilled",
|
||||
"BookOutlined",
|
||||
"BookTwoTone",
|
||||
"BorderBottomOutlined",
|
||||
"BorderHorizontalOutlined",
|
||||
"BorderInnerOutlined",
|
||||
"BorderLeftOutlined",
|
||||
"BorderOuterOutlined",
|
||||
"BorderOutlined",
|
||||
"BorderRightOutlined",
|
||||
"BorderTopOutlined",
|
||||
"BorderVerticleOutlined",
|
||||
"BorderlessTableOutlined",
|
||||
"BoxPlotFilled",
|
||||
"BoxPlotOutlined",
|
||||
"BoxPlotTwoTone",
|
||||
"BranchesOutlined",
|
||||
"BugFilled",
|
||||
"BugOutlined",
|
||||
"BugTwoTone",
|
||||
"BuildFilled",
|
||||
"BuildOutlined",
|
||||
"BuildTwoTone",
|
||||
"BulbFilled",
|
||||
"BulbOutlined",
|
||||
"BulbTwoTone",
|
||||
"CalculatorFilled",
|
||||
"CalculatorOutlined",
|
||||
"CalculatorTwoTone",
|
||||
"CalendarFilled",
|
||||
"CalendarOutlined",
|
||||
"CalendarTwoTone",
|
||||
"CameraFilled",
|
||||
"CameraOutlined",
|
||||
"CameraTwoTone",
|
||||
"CarFilled",
|
||||
"CarOutlined",
|
||||
"CarTwoTone",
|
||||
"CaretDownFilled",
|
||||
"CaretDownOutlined",
|
||||
"CaretLeftFilled",
|
||||
"CaretLeftOutlined",
|
||||
"CaretRightFilled",
|
||||
"CaretRightOutlined",
|
||||
"CaretUpFilled",
|
||||
"CaretUpOutlined",
|
||||
"CarryOutFilled",
|
||||
"CarryOutOutlined",
|
||||
"CarryOutTwoTone",
|
||||
"CheckCircleFilled",
|
||||
"CheckCircleOutlined",
|
||||
"CheckCircleTwoTone",
|
||||
"CheckOutlined",
|
||||
"CheckSquareFilled",
|
||||
"CheckSquareOutlined",
|
||||
"CheckSquareTwoTone",
|
||||
"ChromeFilled",
|
||||
"ChromeOutlined",
|
||||
"CiCircleFilled",
|
||||
"CiCircleOutlined",
|
||||
"CiCircleTwoTone",
|
||||
"CiOutlined",
|
||||
"CiTwoTone",
|
||||
"ClearOutlined",
|
||||
"ClockCircleFilled",
|
||||
"ClockCircleOutlined",
|
||||
"ClockCircleTwoTone",
|
||||
"CloseCircleFilled",
|
||||
"CloseCircleOutlined",
|
||||
"CloseCircleTwoTone",
|
||||
"CloseOutlined",
|
||||
"CloseSquareFilled",
|
||||
"CloseSquareOutlined",
|
||||
"CloseSquareTwoTone",
|
||||
"CloudDownloadOutlined",
|
||||
"CloudFilled",
|
||||
"CloudOutlined",
|
||||
"CloudServerOutlined",
|
||||
"CloudSyncOutlined",
|
||||
"CloudTwoTone",
|
||||
"CloudUploadOutlined",
|
||||
"ClusterOutlined",
|
||||
"CodeFilled",
|
||||
"CodeOutlined",
|
||||
"CodeSandboxCircleFilled",
|
||||
"CodeSandboxOutlined",
|
||||
"CodeSandboxSquareFilled",
|
||||
"CodeTwoTone",
|
||||
"CodepenCircleFilled",
|
||||
"CodepenCircleOutlined",
|
||||
"CodepenOutlined",
|
||||
"CodepenSquareFilled",
|
||||
"CoffeeOutlined",
|
||||
"ColumnHeightOutlined",
|
||||
"ColumnWidthOutlined",
|
||||
"CommentOutlined",
|
||||
"CompassFilled",
|
||||
"CompassOutlined",
|
||||
"CompassTwoTone",
|
||||
"CompressOutlined",
|
||||
"ConsoleSqlOutlined",
|
||||
"ContactsFilled",
|
||||
"ContactsOutlined",
|
||||
"ContactsTwoTone",
|
||||
"ContainerFilled",
|
||||
"ContainerOutlined",
|
||||
"ContainerTwoTone",
|
||||
"ControlFilled",
|
||||
"ControlOutlined",
|
||||
"ControlTwoTone",
|
||||
"CopyFilled",
|
||||
"CopyOutlined",
|
||||
"CopyTwoTone",
|
||||
"CopyrightCircleFilled",
|
||||
"CopyrightCircleOutlined",
|
||||
"CopyrightCircleTwoTone",
|
||||
"CopyrightOutlined",
|
||||
"CopyrightTwoTone",
|
||||
"CreditCardFilled",
|
||||
"CreditCardOutlined",
|
||||
"CreditCardTwoTone",
|
||||
"CrownFilled",
|
||||
"CrownOutlined",
|
||||
"CrownTwoTone",
|
||||
"CustomerServiceFilled",
|
||||
"CustomerServiceOutlined",
|
||||
"CustomerServiceTwoTone",
|
||||
"DashOutlined",
|
||||
"DashboardFilled",
|
||||
"DashboardOutlined",
|
||||
"DashboardTwoTone",
|
||||
"DatabaseFilled",
|
||||
"DatabaseOutlined",
|
||||
"DatabaseTwoTone",
|
||||
"DeleteColumnOutlined",
|
||||
"DeleteFilled",
|
||||
"DeleteOutlined",
|
||||
"DeleteRowOutlined",
|
||||
"DeleteTwoTone",
|
||||
"DeliveredProcedureOutlined",
|
||||
"DeploymentUnitOutlined",
|
||||
"DesktopOutlined",
|
||||
"DiffFilled",
|
||||
"DiffOutlined",
|
||||
"DiffTwoTone",
|
||||
"DingdingOutlined",
|
||||
"DingtalkCircleFilled",
|
||||
"DingtalkOutlined",
|
||||
"DingtalkSquareFilled",
|
||||
"DisconnectOutlined",
|
||||
"DislikeFilled",
|
||||
"DislikeOutlined",
|
||||
"DislikeTwoTone",
|
||||
"DollarCircleFilled",
|
||||
"DollarCircleOutlined",
|
||||
"DollarCircleTwoTone",
|
||||
"DollarOutlined",
|
||||
"DollarTwoTone",
|
||||
"DotChartOutlined",
|
||||
"DoubleLeftOutlined",
|
||||
"DoubleRightOutlined",
|
||||
"DownCircleFilled",
|
||||
"DownCircleOutlined",
|
||||
"DownCircleTwoTone",
|
||||
"DownOutlined",
|
||||
"DownSquareFilled",
|
||||
"DownSquareOutlined",
|
||||
"DownSquareTwoTone",
|
||||
"DownloadOutlined",
|
||||
"DragOutlined",
|
||||
"DribbbleCircleFilled",
|
||||
"DribbbleOutlined",
|
||||
"DribbbleSquareFilled",
|
||||
"DribbbleSquareOutlined",
|
||||
"DropboxCircleFilled",
|
||||
"DropboxOutlined",
|
||||
"DropboxSquareFilled",
|
||||
"EditFilled",
|
||||
"EditOutlined",
|
||||
"EditTwoTone",
|
||||
"EllipsisOutlined",
|
||||
"EnterOutlined",
|
||||
"EnvironmentFilled",
|
||||
"EnvironmentOutlined",
|
||||
"EnvironmentTwoTone",
|
||||
"EuroCircleFilled",
|
||||
"EuroCircleOutlined",
|
||||
"EuroCircleTwoTone",
|
||||
"EuroOutlined",
|
||||
"EuroTwoTone",
|
||||
"ExceptionOutlined",
|
||||
"ExclamationCircleFilled",
|
||||
"ExclamationCircleOutlined",
|
||||
"ExclamationCircleTwoTone",
|
||||
"ExclamationOutlined",
|
||||
"ExpandAltOutlined",
|
||||
"ExpandOutlined",
|
||||
"ExperimentFilled",
|
||||
"ExperimentOutlined",
|
||||
"ExperimentTwoTone",
|
||||
"ExportOutlined",
|
||||
"EyeFilled",
|
||||
"EyeInvisibleFilled",
|
||||
"EyeInvisibleOutlined",
|
||||
"EyeInvisibleTwoTone",
|
||||
"EyeOutlined",
|
||||
"EyeTwoTone",
|
||||
"FacebookFilled",
|
||||
"FacebookOutlined",
|
||||
"FallOutlined",
|
||||
"FastBackwardFilled",
|
||||
"FastBackwardOutlined",
|
||||
"FastForwardFilled",
|
||||
"FastForwardOutlined",
|
||||
"FieldBinaryOutlined",
|
||||
"FieldNumberOutlined",
|
||||
"FieldStringOutlined",
|
||||
"FieldTimeOutlined",
|
||||
"FileAddFilled",
|
||||
"FileAddOutlined",
|
||||
"FileAddTwoTone",
|
||||
"FileDoneOutlined",
|
||||
"FileExcelFilled",
|
||||
"FileExcelOutlined",
|
||||
"FileExcelTwoTone",
|
||||
"FileExclamationFilled",
|
||||
"FileExclamationOutlined",
|
||||
"FileExclamationTwoTone",
|
||||
"FileFilled",
|
||||
"FileGifOutlined",
|
||||
"FileImageFilled",
|
||||
"FileImageOutlined",
|
||||
"FileImageTwoTone",
|
||||
"FileJpgOutlined",
|
||||
"FileMarkdownFilled",
|
||||
"FileMarkdownOutlined",
|
||||
"FileMarkdownTwoTone",
|
||||
"FileOutlined",
|
||||
"FilePdfFilled",
|
||||
"FilePdfOutlined",
|
||||
"FilePdfTwoTone",
|
||||
"FilePptFilled",
|
||||
"FilePptOutlined",
|
||||
"FilePptTwoTone",
|
||||
"FileProtectOutlined",
|
||||
"FileSearchOutlined",
|
||||
"FileSyncOutlined",
|
||||
"FileTextFilled",
|
||||
"FileTextOutlined",
|
||||
"FileTextTwoTone",
|
||||
"FileTwoTone",
|
||||
"FileUnknownFilled",
|
||||
"FileUnknownOutlined",
|
||||
"FileUnknownTwoTone",
|
||||
"FileWordFilled",
|
||||
"FileWordOutlined",
|
||||
"FileWordTwoTone",
|
||||
"FileZipFilled",
|
||||
"FileZipOutlined",
|
||||
"FileZipTwoTone",
|
||||
"FilterFilled",
|
||||
"FilterOutlined",
|
||||
"FilterTwoTone",
|
||||
"FireFilled",
|
||||
"FireOutlined",
|
||||
"FireTwoTone",
|
||||
"FlagFilled",
|
||||
"FlagOutlined",
|
||||
"FlagTwoTone",
|
||||
"FolderAddFilled",
|
||||
"FolderAddOutlined",
|
||||
"FolderAddTwoTone",
|
||||
"FolderFilled",
|
||||
"FolderOpenFilled",
|
||||
"FolderOpenOutlined",
|
||||
"FolderOpenTwoTone",
|
||||
"FolderOutlined",
|
||||
"FolderTwoTone",
|
||||
"FolderViewOutlined",
|
||||
"FontColorsOutlined",
|
||||
"FontSizeOutlined",
|
||||
"ForkOutlined",
|
||||
"FormOutlined",
|
||||
"FormatPainterFilled",
|
||||
"FormatPainterOutlined",
|
||||
"ForwardFilled",
|
||||
"ForwardOutlined",
|
||||
"FrownFilled",
|
||||
"FrownOutlined",
|
||||
"FrownTwoTone",
|
||||
"FullscreenExitOutlined",
|
||||
"FullscreenOutlined",
|
||||
"FunctionOutlined",
|
||||
"FundFilled",
|
||||
"FundOutlined",
|
||||
"FundProjectionScreenOutlined",
|
||||
"FundTwoTone",
|
||||
"FundViewOutlined",
|
||||
"FunnelPlotFilled",
|
||||
"FunnelPlotOutlined",
|
||||
"FunnelPlotTwoTone",
|
||||
"GatewayOutlined",
|
||||
"GifOutlined",
|
||||
"GiftFilled",
|
||||
"GiftOutlined",
|
||||
"GiftTwoTone",
|
||||
"GithubFilled",
|
||||
"GithubOutlined",
|
||||
"GitlabFilled",
|
||||
"GitlabOutlined",
|
||||
"GlobalOutlined",
|
||||
"GoldFilled",
|
||||
"GoldOutlined",
|
||||
"GoldTwoTone",
|
||||
"GoldenFilled",
|
||||
"GoogleCircleFilled",
|
||||
"GoogleOutlined",
|
||||
"GooglePlusCircleFilled",
|
||||
"GooglePlusOutlined",
|
||||
"GooglePlusSquareFilled",
|
||||
"GoogleSquareFilled",
|
||||
"GroupOutlined",
|
||||
"HddFilled",
|
||||
"HddOutlined",
|
||||
"HddTwoTone",
|
||||
"HeartFilled",
|
||||
"HeartOutlined",
|
||||
"HeartTwoTone",
|
||||
"HeatMapOutlined",
|
||||
"HighlightFilled",
|
||||
"HighlightOutlined",
|
||||
"HighlightTwoTone",
|
||||
"HistoryOutlined",
|
||||
"HomeFilled",
|
||||
"HomeOutlined",
|
||||
"HomeTwoTone",
|
||||
"HourglassFilled",
|
||||
"HourglassOutlined",
|
||||
"HourglassTwoTone",
|
||||
"Html5Filled",
|
||||
"Html5Outlined",
|
||||
"Html5TwoTone",
|
||||
"IdcardFilled",
|
||||
"IdcardOutlined",
|
||||
"IdcardTwoTone",
|
||||
"IeCircleFilled",
|
||||
"IeOutlined",
|
||||
"IeSquareFilled",
|
||||
"ImportOutlined",
|
||||
"InboxOutlined",
|
||||
"InfoCircleFilled",
|
||||
"InfoCircleOutlined",
|
||||
"InfoCircleTwoTone",
|
||||
"InfoOutlined",
|
||||
"InsertRowAboveOutlined",
|
||||
"InsertRowBelowOutlined",
|
||||
"InsertRowLeftOutlined",
|
||||
"InsertRowRightOutlined",
|
||||
"InstagramFilled",
|
||||
"InstagramOutlined",
|
||||
"InsuranceFilled",
|
||||
"InsuranceOutlined",
|
||||
"InsuranceTwoTone",
|
||||
"InteractionFilled",
|
||||
"InteractionOutlined",
|
||||
"InteractionTwoTone",
|
||||
"IssuesCloseOutlined",
|
||||
"ItalicOutlined",
|
||||
"KeyOutlined",
|
||||
"LaptopOutlined",
|
||||
"LayoutFilled",
|
||||
"LayoutOutlined",
|
||||
"LayoutTwoTone",
|
||||
"LeftCircleFilled",
|
||||
"LeftCircleOutlined",
|
||||
"LeftCircleTwoTone",
|
||||
"LeftOutlined",
|
||||
"LeftSquareFilled",
|
||||
"LeftSquareOutlined",
|
||||
"LeftSquareTwoTone",
|
||||
"LikeFilled",
|
||||
"LikeOutlined",
|
||||
"LikeTwoTone",
|
||||
"LineChartOutlined",
|
||||
"LineHeightOutlined",
|
||||
"LineOutlined",
|
||||
"LinkOutlined",
|
||||
"LinkedinFilled",
|
||||
"LinkedinOutlined",
|
||||
"Loading3QuartersOutlined",
|
||||
"LoadingOutlined",
|
||||
"LockFilled",
|
||||
"LockOutlined",
|
||||
"LockTwoTone",
|
||||
"LoginOutlined",
|
||||
"LogoutOutlined",
|
||||
"MacCommandFilled",
|
||||
"MacCommandOutlined",
|
||||
"MailFilled",
|
||||
"MailOutlined",
|
||||
"MailTwoTone",
|
||||
"ManOutlined",
|
||||
"MedicineBoxFilled",
|
||||
"MedicineBoxOutlined",
|
||||
"MedicineBoxTwoTone",
|
||||
"MediumCircleFilled",
|
||||
"MediumOutlined",
|
||||
"MediumSquareFilled",
|
||||
"MediumWorkmarkOutlined",
|
||||
"MehFilled",
|
||||
"MehOutlined",
|
||||
"MehTwoTone",
|
||||
"MenuFoldOutlined",
|
||||
"MenuOutlined",
|
||||
"MenuUnfoldOutlined",
|
||||
"MergeCellsOutlined",
|
||||
"MessageFilled",
|
||||
"MessageOutlined",
|
||||
"MessageTwoTone",
|
||||
"MinusCircleFilled",
|
||||
"MinusCircleOutlined",
|
||||
"MinusCircleTwoTone",
|
||||
"MinusOutlined",
|
||||
"MinusSquareFilled",
|
||||
"MinusSquareOutlined",
|
||||
"MinusSquareTwoTone",
|
||||
"MobileFilled",
|
||||
"MobileOutlined",
|
||||
"MobileTwoTone",
|
||||
"MoneyCollectFilled",
|
||||
"MoneyCollectOutlined",
|
||||
"MoneyCollectTwoTone",
|
||||
"MonitorOutlined",
|
||||
"MoreOutlined",
|
||||
"NodeCollapseOutlined",
|
||||
"NodeExpandOutlined",
|
||||
"NodeIndexOutlined",
|
||||
"NotificationFilled",
|
||||
"NotificationOutlined",
|
||||
"NotificationTwoTone",
|
||||
"NumberOutlined",
|
||||
"OneToOneOutlined",
|
||||
"OrderedListOutlined",
|
||||
"PaperClipOutlined",
|
||||
"PartitionOutlined",
|
||||
"PauseCircleFilled",
|
||||
"PauseCircleOutlined",
|
||||
"PauseCircleTwoTone",
|
||||
"PauseOutlined",
|
||||
"PayCircleFilled",
|
||||
"PayCircleOutlined",
|
||||
"PercentageOutlined",
|
||||
"PhoneFilled",
|
||||
"PhoneOutlined",
|
||||
"PhoneTwoTone",
|
||||
"PicCenterOutlined",
|
||||
"PicLeftOutlined",
|
||||
"PicRightOutlined",
|
||||
"PictureFilled",
|
||||
"PictureOutlined",
|
||||
"PictureTwoTone",
|
||||
"PieChartFilled",
|
||||
"PieChartOutlined",
|
||||
"PieChartTwoTone",
|
||||
"PlayCircleFilled",
|
||||
"PlayCircleOutlined",
|
||||
"PlayCircleTwoTone",
|
||||
"PlaySquareFilled",
|
||||
"PlaySquareOutlined",
|
||||
"PlaySquareTwoTone",
|
||||
"PlusCircleFilled",
|
||||
"PlusCircleOutlined",
|
||||
"PlusCircleTwoTone",
|
||||
"PlusOutlined",
|
||||
"PlusSquareFilled",
|
||||
"PlusSquareOutlined",
|
||||
"PlusSquareTwoTone",
|
||||
"PoundCircleFilled",
|
||||
"PoundCircleOutlined",
|
||||
"PoundCircleTwoTone",
|
||||
"PoundOutlined",
|
||||
"PoweroffOutlined",
|
||||
"PrinterFilled",
|
||||
"PrinterOutlined",
|
||||
"PrinterTwoTone",
|
||||
"ProfileFilled",
|
||||
"ProfileOutlined",
|
||||
"ProfileTwoTone",
|
||||
"ProjectFilled",
|
||||
"ProjectOutlined",
|
||||
"ProjectTwoTone",
|
||||
"PropertySafetyFilled",
|
||||
"PropertySafetyOutlined",
|
||||
"PropertySafetyTwoTone",
|
||||
"PullRequestOutlined",
|
||||
"PushpinFilled",
|
||||
"PushpinOutlined",
|
||||
"PushpinTwoTone",
|
||||
"QqCircleFilled",
|
||||
"QqOutlined",
|
||||
"QqSquareFilled",
|
||||
"QrcodeOutlined",
|
||||
"QuestionCircleFilled",
|
||||
"QuestionCircleOutlined",
|
||||
"QuestionCircleTwoTone",
|
||||
"QuestionOutlined",
|
||||
"RadarChartOutlined",
|
||||
"RadiusBottomleftOutlined",
|
||||
"RadiusBottomrightOutlined",
|
||||
"RadiusSettingOutlined",
|
||||
"RadiusUpleftOutlined",
|
||||
"RadiusUprightOutlined",
|
||||
"ReadFilled",
|
||||
"ReadOutlined",
|
||||
"ReconciliationFilled",
|
||||
"ReconciliationOutlined",
|
||||
"ReconciliationTwoTone",
|
||||
"RedEnvelopeFilled",
|
||||
"RedEnvelopeOutlined",
|
||||
"RedEnvelopeTwoTone",
|
||||
"RedditCircleFilled",
|
||||
"RedditOutlined",
|
||||
"RedditSquareFilled",
|
||||
"RedoOutlined",
|
||||
"ReloadOutlined",
|
||||
"RestFilled",
|
||||
"RestOutlined",
|
||||
"RestTwoTone",
|
||||
"RetweetOutlined",
|
||||
"RightCircleFilled",
|
||||
"RightCircleOutlined",
|
||||
"RightCircleTwoTone",
|
||||
"RightOutlined",
|
||||
"RightSquareFilled",
|
||||
"RightSquareOutlined",
|
||||
"RightSquareTwoTone",
|
||||
"RiseOutlined",
|
||||
"RobotFilled",
|
||||
"RobotOutlined",
|
||||
"RocketFilled",
|
||||
"RocketOutlined",
|
||||
"RocketTwoTone",
|
||||
"RollbackOutlined",
|
||||
"RotateLeftOutlined",
|
||||
"RotateRightOutlined",
|
||||
"SafetyCertificateFilled",
|
||||
"SafetyCertificateOutlined",
|
||||
"SafetyCertificateTwoTone",
|
||||
"SafetyOutlined",
|
||||
"SaveFilled",
|
||||
"SaveOutlined",
|
||||
"SaveTwoTone",
|
||||
"ScanOutlined",
|
||||
"ScheduleFilled",
|
||||
"ScheduleOutlined",
|
||||
"ScheduleTwoTone",
|
||||
"ScissorOutlined",
|
||||
"SearchOutlined",
|
||||
"SecurityScanFilled",
|
||||
"SecurityScanOutlined",
|
||||
"SecurityScanTwoTone",
|
||||
"SelectOutlined",
|
||||
"SendOutlined",
|
||||
"SettingFilled",
|
||||
"SettingOutlined",
|
||||
"SettingTwoTone",
|
||||
"ShakeOutlined",
|
||||
"ShareAltOutlined",
|
||||
"ShopFilled",
|
||||
"ShopOutlined",
|
||||
"ShopTwoTone",
|
||||
"ShoppingCartOutlined",
|
||||
"ShoppingFilled",
|
||||
"ShoppingOutlined",
|
||||
"ShoppingTwoTone",
|
||||
"ShrinkOutlined",
|
||||
"SignalFilled",
|
||||
"SisternodeOutlined",
|
||||
"SketchCircleFilled",
|
||||
"SketchOutlined",
|
||||
"SketchSquareFilled",
|
||||
"SkinFilled",
|
||||
"SkinOutlined",
|
||||
"SkinTwoTone",
|
||||
"SkypeFilled",
|
||||
"SkypeOutlined",
|
||||
"SlackCircleFilled",
|
||||
"SlackOutlined",
|
||||
"SlackSquareFilled",
|
||||
"SlackSquareOutlined",
|
||||
"SlidersFilled",
|
||||
"SlidersOutlined",
|
||||
"SlidersTwoTone",
|
||||
"SmallDashOutlined",
|
||||
"SmileFilled",
|
||||
"SmileOutlined",
|
||||
"SmileTwoTone",
|
||||
"SnippetsFilled",
|
||||
"SnippetsOutlined",
|
||||
"SnippetsTwoTone",
|
||||
"SolutionOutlined",
|
||||
"SortAscendingOutlined",
|
||||
"SortDescendingOutlined",
|
||||
"SoundFilled",
|
||||
"SoundOutlined",
|
||||
"SoundTwoTone",
|
||||
"SplitCellsOutlined",
|
||||
"StarFilled",
|
||||
"StarOutlined",
|
||||
"StarTwoTone",
|
||||
"StepBackwardFilled",
|
||||
"StepBackwardOutlined",
|
||||
"StepForwardFilled",
|
||||
"StepForwardOutlined",
|
||||
"StockOutlined",
|
||||
"StopFilled",
|
||||
"StopOutlined",
|
||||
"StopTwoTone",
|
||||
"StrikethroughOutlined",
|
||||
"SubnodeOutlined",
|
||||
"SwapLeftOutlined",
|
||||
"SwapOutlined",
|
||||
"SwapRightOutlined",
|
||||
"SwitcherFilled",
|
||||
"SwitcherOutlined",
|
||||
"SwitcherTwoTone",
|
||||
"SyncOutlined",
|
||||
"TableOutlined",
|
||||
"TabletFilled",
|
||||
"TabletOutlined",
|
||||
"TabletTwoTone",
|
||||
"TagFilled",
|
||||
"TagOutlined",
|
||||
"TagTwoTone",
|
||||
"TagsFilled",
|
||||
"TagsOutlined",
|
||||
"TagsTwoTone",
|
||||
"TaobaoCircleFilled",
|
||||
"TaobaoCircleOutlined",
|
||||
"TaobaoOutlined",
|
||||
"TaobaoSquareFilled",
|
||||
"TeamOutlined",
|
||||
"ThunderboltFilled",
|
||||
"ThunderboltOutlined",
|
||||
"ThunderboltTwoTone",
|
||||
"ToTopOutlined",
|
||||
"ToolFilled",
|
||||
"ToolOutlined",
|
||||
"ToolTwoTone",
|
||||
"TrademarkCircleFilled",
|
||||
"TrademarkCircleOutlined",
|
||||
"TrademarkCircleTwoTone",
|
||||
"TrademarkOutlined",
|
||||
"TransactionOutlined",
|
||||
"TranslationOutlined",
|
||||
"TrophyFilled",
|
||||
"TrophyOutlined",
|
||||
"TrophyTwoTone",
|
||||
"TwitterCircleFilled",
|
||||
"TwitterOutlined",
|
||||
"TwitterSquareFilled",
|
||||
"UnderlineOutlined",
|
||||
"UndoOutlined",
|
||||
"UngroupOutlined",
|
||||
"UnlockFilled",
|
||||
"UnlockOutlined",
|
||||
"UnlockTwoTone",
|
||||
"UnorderedListOutlined",
|
||||
"UpCircleFilled",
|
||||
"UpCircleOutlined",
|
||||
"UpCircleTwoTone",
|
||||
"UpOutlined",
|
||||
"UpSquareFilled",
|
||||
"UpSquareOutlined",
|
||||
"UpSquareTwoTone",
|
||||
"UploadOutlined",
|
||||
"UsbFilled",
|
||||
"UsbOutlined",
|
||||
"UsbTwoTone",
|
||||
"UserAddOutlined",
|
||||
"UserDeleteOutlined",
|
||||
"UserOutlined",
|
||||
"UserSwitchOutlined",
|
||||
"UsergroupAddOutlined",
|
||||
"UsergroupDeleteOutlined",
|
||||
"VerifiedOutlined",
|
||||
"VerticalAlignBottomOutlined",
|
||||
"VerticalAlignMiddleOutlined",
|
||||
"VerticalAlignTopOutlined",
|
||||
"VerticalLeftOutlined",
|
||||
"VerticalRightOutlined",
|
||||
"VideoCameraAddOutlined",
|
||||
"VideoCameraFilled",
|
||||
"VideoCameraOutlined",
|
||||
"VideoCameraTwoTone",
|
||||
"WalletFilled",
|
||||
"WalletOutlined",
|
||||
"WalletTwoTone",
|
||||
"WarningFilled",
|
||||
"WarningOutlined",
|
||||
"WarningTwoTone",
|
||||
"WechatFilled",
|
||||
"WechatOutlined",
|
||||
"WeiboCircleFilled",
|
||||
"WeiboCircleOutlined",
|
||||
"WeiboOutlined",
|
||||
"WeiboSquareFilled",
|
||||
"WeiboSquareOutlined",
|
||||
"WhatsAppOutlined",
|
||||
"WifiOutlined",
|
||||
"WindowsFilled",
|
||||
"WindowsOutlined",
|
||||
"WomanOutlined",
|
||||
"YahooFilled",
|
||||
"YahooOutlined",
|
||||
"YoutubeFilled",
|
||||
"YoutubeOutlined",
|
||||
"YuqueFilled",
|
||||
"YuqueOutlined",
|
||||
"ZhihuCircleFilled",
|
||||
"ZhihuOutlined",
|
||||
"ZhihuSquareFilled",
|
||||
"ZoomInOutlined",
|
||||
"ZoomOutOutlined"
|
||||
]
|
||||
Reference in New Issue
Block a user