dashboard-shell-shell 3.0.5-test.6 → 3.0.5-test.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/brand/csp/favicon.png +0 -0
- package/assets/brand/harvester/favicon.png +0 -0
- package/assets/brand/suse/favicon.png +0 -0
- package/assets/icons/demo.css +539 -0
- package/assets/icons/demo.css:Zone.Identifier +0 -0
- package/assets/icons/demo_index.html +1131 -0
- package/assets/icons/demo_index.html:Zone.Identifier +0 -0
- package/assets/icons/iconfont.css +219 -0
- package/assets/icons/iconfont.css:Zone.Identifier +0 -0
- package/assets/icons/iconfont.js +1 -0
- package/assets/icons/iconfont.js:Zone.Identifier +0 -0
- package/assets/icons/iconfont.json +324 -0
- package/assets/icons/iconfont.json:Zone.Identifier +0 -0
- package/assets/icons/iconfont.ttf +0 -0
- package/assets/icons/iconfont.ttf:Zone.Identifier +0 -0
- package/assets/icons/iconfont.woff +0 -0
- package/assets/icons/iconfont.woff2 +0 -0
- package/assets/icons/iconfont.woff2:Zone.Identifier +0 -0
- package/assets/icons/iconfont.woff:Zone.Identifier +0 -0
- package/assets/iconsNew/demo.css +539 -0
- package/assets/iconsNew/demo.css:Zone.Identifier +0 -0
- package/assets/iconsNew/demo_index.html +303 -0
- package/assets/iconsNew/demo_index.html:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.css +43 -0
- package/assets/iconsNew/iconfont.css:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.js +1 -0
- package/assets/iconsNew/iconfont.js:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.json +44 -0
- package/assets/iconsNew/iconfont.json:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.ttf +0 -0
- package/assets/iconsNew/iconfont.ttf:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.woff +0 -0
- package/assets/iconsNew/iconfont.woff2 +0 -0
- package/assets/iconsNew/iconfont.woff2:Zone.Identifier +0 -0
- package/assets/iconsNew/iconfont.woff:Zone.Identifier +0 -0
- package/assets/images/API.svg +3 -0
- package/assets/images/action.svg +6 -0
- package/assets/images/login/password.svg +20 -0
- package/assets/images/login/user.svg +6 -0
- package/assets/images/login-bg.png +0 -0
- package/assets/images/login-left.png +0 -0
- package/assets/images/login-logo.svg +44 -0
- package/assets/images/logo.png +0 -0
- package/assets/images/logo.svg +47 -0
- package/assets/images/pl/dark/logo.png +0 -0
- package/assets/images/pl/half-logo.svg +2 -23
- package/assets/images/pl/harvester.png +0 -0
- package/assets/images/pl/logo.png +0 -0
- package/assets/images/promp-yellow.svg +5 -0
- package/assets/images/user.png +0 -0
- package/assets/styles/all.scss +83 -0
- package/assets/styles/app.scss +5 -0
- package/assets/styles/base/_basic.scss +2 -2
- package/assets/styles/base/_helpers.scss +1 -1
- package/assets/styles/base/_mixins.scss +1 -1
- package/assets/styles/base/_typography.scss +2 -1
- package/assets/styles/base/_variables.scss +14 -7
- package/assets/styles/fonts/_icons.scss +3 -2
- package/assets/styles/global/_button.scss +44 -26
- package/assets/styles/global/_columns.scss +3 -1
- package/assets/styles/global/_form.scss +46 -13
- package/assets/styles/global/_labeled-input.scss +54 -26
- package/assets/styles/global/_layout.scss +8 -3
- package/assets/styles/global/_select.scss +25 -17
- package/assets/styles/global/_table.scss +7 -1
- package/assets/styles/global/_tooltip.scss +60 -8
- package/assets/styles/themes/_dark.scss +3 -0
- package/assets/styles/themes/_light.scss +69 -46
- package/assets/styles/vendor/vue-select.scss +24 -10
- package/assets/translations/en-us.yaml +92 -4
- package/assets/translations/zh-hans.yaml +668 -206
- package/components/ActionDropdown.vue +2 -1
- package/components/ActionMenu.vue +2 -2
- package/components/ActionMenuShell.vue +2 -0
- package/components/AppModal.vue +46 -5
- package/components/BrandImage.vue +1 -0
- package/components/ButtonDropdown.vue +28 -4
- package/components/ButtonMultiAction.vue +1 -0
- package/components/ClusterIconMenu.vue +2 -2
- package/components/CodeMirror.vue +26 -10
- package/components/ConsumptionGauge.vue +24 -5
- package/components/ContainerResourceLimit.vue +2 -2
- package/components/CopyToClipboard.vue +15 -0
- package/components/CruResource.vue +12 -10
- package/components/CruResourceFooter.vue +2 -2
- package/components/DashboardOptions.vue +29 -17
- package/components/DotState.vue +84 -0
- package/components/Drawer/Chrome.vue +2 -2
- package/components/Drawer/ResourceDetailDrawer/ConfigTab.vue +30 -27
- package/components/Drawer/ResourceDetailDrawer/YamlTab.vue +1 -1
- package/components/Drawer/ResourceDetailDrawer/index.vue +5 -4
- package/components/ExplorerMembers.vue +28 -4
- package/components/ExplorerProjectsNamespaces.vue +19 -5
- package/components/GlobalRoleBindings.vue +23 -4
- package/components/GrafanaDashboard.vue +4 -4
- package/components/GrowlManager.vue +3 -1
- package/components/HardwareResourceGauge.vue +39 -3
- package/components/IndentedPanel.vue +4 -10
- package/components/InfoBox.vue +3 -3
- package/components/InputOrDisplay.vue +28 -2
- package/components/LabelValue.vue +20 -1
- package/components/ModalWithCard.vue +12 -3
- package/components/PodSecurityAdmission.vue +2 -2
- package/components/PromptModal.vue +1 -1
- package/components/PromptRemove.vue +53 -12
- package/components/RelatedResources.vue +3 -0
- package/components/Resource/Detail/Metadata/IdentifyingInformation/index.vue +1 -3
- package/components/Resource/Detail/Metadata/KeyValue.vue +8 -4
- package/components/Resource/Detail/Metadata/index.vue +3 -1
- package/components/Resource/Detail/TitleBar/Title.vue +4 -3
- package/components/Resource/Detail/TitleBar/Top.vue +2 -0
- package/components/Resource/Detail/TitleBar/composables.ts +16 -1
- package/components/Resource/Detail/TitleBar/index.vue +125 -27
- package/components/ResourceDetail/Masthead/index.vue +1 -1
- package/components/ResourceDetail/Masthead/latest.vue +1 -1
- package/components/ResourceDetail/Masthead/legacy.vue +183 -39
- package/components/ResourceDetail/legacy.vue +47 -29
- package/components/ResourceList/Masthead.vue +222 -54
- package/components/ResourceList/ResourceLoadingIndicator.vue +5 -2
- package/components/ResourceTable.vue +40 -2
- package/components/SideNav.vue +74 -20
- package/components/SingleClusterInfo.vue +2 -1
- package/components/SortableTable/THead.vue +79 -4
- package/components/SortableTable/index.vue +1053 -464
- package/components/SortableTable/paging.js +26 -16
- package/components/SortableTable/selection.js +2 -2
- package/components/Tabbed/Tab.vue +3 -3
- package/components/Tabbed/index.vue +53 -30
- package/components/YamlEditor.vue +0 -1
- package/components/auth/Principal.vue +51 -19
- package/components/auth/RoleDetailEdit.vue +69 -14
- package/components/auth/SelectPrincipal.vue +1 -0
- package/components/breadcrumb/index.vue +119 -0
- package/components/form/ArrayList.vue +177 -152
- package/components/form/ArrayListGrouped.vue +13 -3
- package/components/form/ArrayListSelect.vue +1 -1
- package/components/form/BannerSettings.vue +64 -59
- package/components/form/ChangePassword.vue +5 -5
- package/components/form/ClusterAppearance.vue +4 -3
- package/components/form/ColorInput.vue +32 -8
- package/components/form/Command.vue +4 -5
- package/components/form/Conditions.vue +15 -1
- package/components/form/Footer.vue +12 -8
- package/components/form/HealthCheck.vue +0 -2
- package/components/form/HookOption.vue +87 -58
- package/components/form/InputWithSelect.vue +8 -4
- package/components/form/KeyValue.vue +66 -8
- package/components/form/LabeledSelect.vue +216 -242
- package/components/form/Labels.vue +4 -4
- package/components/form/MatchExpressions.vue +28 -11
- package/components/form/Members/ClusterMembershipEditor.vue +1 -1
- package/components/form/Members/ClusterPermissionsEditor.vue +61 -43
- package/components/form/Members/MembershipEditor.vue +4 -4
- package/components/form/Members/ProjectMembershipEditor.vue +1 -1
- package/components/form/NameNsDescription.vue +62 -22
- package/components/form/Networking.vue +6 -9
- package/components/form/NodeAffinity.vue +29 -28
- package/components/form/Password.vue +16 -7
- package/components/form/PodAffinity.vue +24 -25
- package/components/form/Probe.vue +15 -11
- package/components/form/ProjectMemberEditor.vue +66 -48
- package/components/form/ResourceQuota/Namespace.vue +4 -4
- package/components/form/ResourceQuota/NamespaceRow.vue +26 -23
- package/components/form/ResourceQuota/Project.vue +4 -4
- package/components/form/ResourceQuota/ProjectRow.vue +38 -35
- package/components/form/ResourceSelector.vue +1 -1
- package/components/form/SecretSelector.vue +24 -23
- package/components/form/Security.vue +1 -3
- package/components/form/Select.vue +12 -3
- package/components/form/ServiceNameSelect.vue +2 -5
- package/components/form/ServicePorts.vue +149 -75
- package/components/form/SimpleSecretSelector.vue +29 -9
- package/components/form/Taints.vue +2 -1
- package/components/form/Tolerations.vue +13 -9
- package/components/form/UnitInput.vue +8 -3
- package/components/form/ValueFromResource.vue +110 -96
- package/components/form/WorkloadPorts.vue +143 -123
- package/components/formatter/BadgeStateFormatter.vue +8 -5
- package/components/formatter/LiveDate.vue +3 -3
- package/components/formatter/WorkloadHealthScale.vue +4 -3
- package/components/nav/Favorite.vue +5 -1
- package/components/nav/Group.vue +139 -99
- package/components/nav/Header.vue +138 -164
- package/components/nav/HeaderPageActionMenu.vue +1 -0
- package/components/nav/NamespaceFilter.vue +34 -36
- package/components/nav/TopLevelMenu.vue +62 -25
- package/components/nav/Type.vue +73 -43
- package/composables/useClickOutside.ts +1 -1
- package/config/menuRouteMap.js +10 -0
- package/config/private-label.js +14 -11
- package/config/product/auth.js +17 -7
- package/config/product/explorer.js +32 -10
- package/config/product/manager.js +28 -17
- package/config/product/settings.js +19 -9
- package/config/product/uiplugins.js +13 -10
- package/config/router/navigation-guards/index.js +61 -3
- package/config/settings.ts +28 -0
- package/config/table-headers.js +3 -2
- package/detail/node.vue +28 -23
- package/dialog/AddCustomBadgeDialog.vue +17 -9
- package/dialog/ForceMachineRemoveDialog.vue +2 -2
- package/dialog/RollbackWorkloadDialog.vue +1 -1
- package/dialog/ScalePoolDownDialog.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/external-metric.vue +1 -1
- package/edit/autoscaling.horizontalpodautoscaler/hpa-scaling-rule.vue +9 -6
- package/edit/autoscaling.horizontalpodautoscaler/index.vue +3 -1
- package/edit/autoscaling.horizontalpodautoscaler/metric-identifier.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/metric-object-reference.vue +7 -5
- package/edit/autoscaling.horizontalpodautoscaler/metric-target.vue +5 -3
- package/edit/autoscaling.horizontalpodautoscaler/metrics-row.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/object-metric.vue +2 -2
- package/edit/autoscaling.horizontalpodautoscaler/pod-metric.vue +1 -1
- package/edit/autoscaling.horizontalpodautoscaler/resource-metric.vue +2 -2
- package/edit/configmap.vue +4 -0
- package/edit/logging-flow/index.vue +1 -2
- package/edit/logging.banzaicloud.io.output/providers/awsElasticsearch.vue +3 -3
- package/edit/logging.banzaicloud.io.output/providers/azurestorage.vue +19 -19
- package/edit/logging.banzaicloud.io.output/providers/cloudwatch.vue +23 -23
- package/edit/logging.banzaicloud.io.output/providers/datadog.vue +19 -19
- package/edit/logging.banzaicloud.io.output/providers/elasticsearch.vue +14 -14
- package/edit/logging.banzaicloud.io.output/providers/forward.vue +12 -12
- package/edit/logging.banzaicloud.io.output/providers/gcs.vue +23 -23
- package/edit/logging.banzaicloud.io.output/providers/gelf.vue +6 -6
- package/edit/logging.banzaicloud.io.output/providers/kafka.vue +10 -10
- package/edit/logging.banzaicloud.io.output/providers/kinesisStream.vue +8 -8
- package/edit/logging.banzaicloud.io.output/providers/logdna.vue +17 -17
- package/edit/logging.banzaicloud.io.output/providers/logz.vue +7 -7
- package/edit/logging.banzaicloud.io.output/providers/loki.vue +12 -12
- package/edit/logging.banzaicloud.io.output/providers/newrelic.vue +3 -3
- package/edit/logging.banzaicloud.io.output/providers/opensearch.vue +14 -14
- package/edit/logging.banzaicloud.io.output/providers/redis.vue +6 -6
- package/edit/logging.banzaicloud.io.output/providers/s3.vue +23 -23
- package/edit/logging.banzaicloud.io.output/providers/splunkHec.vue +13 -13
- package/edit/logging.banzaicloud.io.output/providers/sumologic.vue +2 -2
- package/edit/logging.banzaicloud.io.output/providers/syslog.vue +54 -54
- package/edit/management.cattle.io.user.vue +17 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/auth.vue +19 -19
- package/edit/monitoring.coreos.com.alertmanagerconfig/receiverConfig.vue +50 -26
- package/edit/monitoring.coreos.com.alertmanagerconfig/routeConfig.vue +36 -12
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/dingding.vue +32 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/email.vue +6 -6
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/message.vue +52 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/opsgenie.vue +10 -10
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/pagerduty.vue +4 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/slack.vue +4 -4
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/snmp.vue +45 -0
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/webhook.vue +1 -1
- package/edit/monitoring.coreos.com.alertmanagerconfig/types/work.vue +31 -0
- package/edit/monitoring.coreos.com.receiver/types/email.vue +6 -6
- package/edit/monitoring.coreos.com.receiver/types/opsgenie.vue +10 -10
- package/edit/monitoring.coreos.com.receiver/types/pagerduty.vue +5 -5
- package/edit/monitoring.coreos.com.receiver/types/slack.vue +4 -4
- package/edit/namespace.vue +1 -2
- package/edit/networking.k8s.io.ingress/Certificate.vue +14 -5
- package/edit/networking.k8s.io.ingress/DefaultBackend.vue +2 -2
- package/edit/networking.k8s.io.ingress/Rule.vue +5 -11
- package/edit/networking.k8s.io.ingress/RulePath.vue +105 -96
- package/edit/networking.k8s.io.networkpolicy/PolicyRule.vue +3 -3
- package/edit/networking.k8s.io.networkpolicy/PolicyRulePort.vue +4 -2
- package/edit/networking.k8s.io.networkpolicy/PolicyRuleTarget.vue +12 -11
- package/edit/networking.k8s.io.networkpolicy/index.vue +1 -1
- package/edit/persistentvolume/index.vue +3 -1
- package/edit/persistentvolumeclaim.vue +2 -0
- package/edit/provisioning.cattle.io.cluster/tabs/Basics.vue +1 -1
- package/edit/secret/index.vue +2 -2
- package/edit/service.vue +4 -1
- package/edit/storage.k8s.io.storageclass/index.vue +10 -8
- package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/aws-ebs.vue +34 -27
- package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/gce-pd.vue +15 -13
- package/edit/storage.k8s.io.storageclass/provisioners/kubernetes.io/vsphere-volume.vue +41 -39
- package/edit/token.vue +31 -12
- package/edit/workload/Job.vue +31 -34
- package/edit/workload/Upgrading.vue +5 -5
- package/edit/workload/index.vue +22 -18
- package/edit/workload/storage/Mount.vue +1 -0
- package/edit/workload/storage/awsElasticBlockStore.vue +9 -7
- package/edit/workload/storage/azureDisk.vue +14 -10
- package/edit/workload/storage/azureFile.vue +9 -7
- package/edit/workload/storage/csi/index.vue +6 -9
- package/edit/workload/storage/emptyDir.vue +7 -5
- package/edit/workload/storage/gcePersistentDisk.vue +9 -7
- package/edit/workload/storage/hostPath.vue +7 -5
- package/edit/workload/storage/nfs.vue +8 -6
- package/edit/workload/storage/persistentVolumeClaim/index.vue +12 -10
- package/edit/workload/storage/persistentVolumeClaim/persistentvolumeclaim.vue +20 -15
- package/edit/workload/storage/secret.vue +9 -6
- package/edit/workload/storage/vsphereVolume.vue +11 -7
- package/initialize/app-extended.js +7 -1
- package/list/management.cattle.io.podsecurityadmissionconfigurationtemplate.vue +8 -6
- package/list/management.cattle.io.setting.vue +22 -13
- package/list/management.cattle.io.user.vue +7 -3
- package/list/namespace.vue +3 -0
- package/list/provisioning.cattle.io.cluster.vue +6 -7
- package/mixins/brand.js +17 -0
- package/mixins/create-edit-view/impl.js +10 -0
- package/models/provisioning.cattle.io.cluster.js +19 -18
- package/models/workload.js +2 -2
- package/package.json +1 -1
- package/pages/account/index.vue +93 -58
- package/pages/account/pri.vue +229 -0
- package/pages/auth/login.vue +216 -51
- package/pages/auth/setup.vue +175 -33
- package/pages/c/_cluster/_product/namespaces.vue +5 -5
- package/pages/c/_cluster/auth/roles/index.vue +83 -8
- package/pages/c/_cluster/explorer/ConfigBadge.vue +1 -1
- package/pages/c/_cluster/explorer/index.vue +2 -1
- package/pages/c/_cluster/explorer/tools/index.vue +6 -6
- package/pages/c/_cluster/monitoring/monitor/index.vue +2 -2
- package/pages/c/_cluster/settings/banners.vue +174 -102
- package/pages/c/_cluster/settings/brand.vue +350 -302
- package/pages/c/_cluster/settings/performance.vue +61 -38
- package/pages/home.vue +119 -37
- package/pages/prefs.vue +27 -25
- package/pkg/tsconfig.json +9 -9
- package/pkg/vue.config.js +1 -1
- package/plugins/dashboard-store/actions.js +1 -1
- package/plugins/dashboard-store/resource-class.js +28 -27
- package/promptRemove/mixin/roleDeletionCheck.js +2 -2
- package/public/index.html +4 -4
- package/rancher-components/BadgeState/BadgeState.vue +38 -55
- package/rancher-components/Banner/Banner.vue +25 -9
- package/rancher-components/Card/Card.vue +7 -8
- package/rancher-components/Form/Checkbox/Checkbox.vue +4 -0
- package/rancher-components/Form/LabeledInput/LabeledInput.vue +42 -3
- package/rancher-components/Form/Radio/RadioButton.vue +35 -11
- package/rancher-components/Form/Radio/RadioGroup.vue +22 -6
- package/rancher-components/Form/TextArea/TextAreaAutoGrow.vue +3 -3
- package/rancher-components/Form/ToggleSwitch/ToggleSwitch.vue +1 -0
- package/rancher-components/LabeledTooltip/LabeledTooltip.vue +41 -4
- package/rancher-components/RcDropdown/RcDropdown.vue +35 -7
- package/rancher-components/RcDropdown/RcDropdownItem.vue +2 -2
- package/rancher-components/RcDropdown/RcDropdownMenu.vue +12 -6
- package/rancher-components/RcDropdown/types.ts +1 -0
- package/rancher-components/StringList/StringList.vue +1 -1
- package/scripts/build-pkg.sh +18 -23
- package/scripts/publish-shell.sh +1 -1
- package/static/favicon.ico +0 -0
- package/static/favicon.png +0 -0
- package/static/loading-indicator.html +3 -3
- package/store/i18n.js +6 -2
- package/store/modal.ts +3 -3
- package/store/prefs.js +11 -4
- package/store/type-map.js +30 -2
- package/types/shell/index.d.ts +86 -97
- package/utils/error.js +109 -8
- package/utils/errorTranslate.json +1740 -0
- package/utils/errorTranslateNew.json +39 -0
- package/utils/roleFiltering.js +33 -0
- package/utils/router.js +21 -0
- package/utils/select.js +26 -3
- package/utils/string.js +8 -5
- package/utils/title.ts +1 -1
- package/vue.config.js +1 -1
|
@@ -0,0 +1,303 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8"/>
|
|
5
|
+
<title>iconfont Demo</title>
|
|
6
|
+
<link rel="shortcut icon" href="//img.alicdn.com/imgextra/i4/O1CN01Z5paLz1O0zuCC7osS_!!6000000001644-55-tps-83-82.svg" type="image/x-icon"/>
|
|
7
|
+
<link rel="icon" type="image/svg+xml" href="//img.alicdn.com/imgextra/i4/O1CN01Z5paLz1O0zuCC7osS_!!6000000001644-55-tps-83-82.svg"/>
|
|
8
|
+
<link rel="stylesheet" href="https://g.alicdn.com/thx/cube/1.3.2/cube.min.css">
|
|
9
|
+
<link rel="stylesheet" href="demo.css">
|
|
10
|
+
<link rel="stylesheet" href="iconfont.css">
|
|
11
|
+
<script src="iconfont.js"></script>
|
|
12
|
+
<!-- jQuery -->
|
|
13
|
+
<script src="https://a1.alicdn.com/oss/uploads/2018/12/26/7bfddb60-08e8-11e9-9b04-53e73bb6408b.js"></script>
|
|
14
|
+
<!-- 代码高亮 -->
|
|
15
|
+
<script src="https://a1.alicdn.com/oss/uploads/2018/12/26/a3f714d0-08e6-11e9-8a15-ebf944d7534c.js"></script>
|
|
16
|
+
<style>
|
|
17
|
+
.main .logo {
|
|
18
|
+
margin-top: 0;
|
|
19
|
+
height: auto;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.main .logo a {
|
|
23
|
+
display: flex;
|
|
24
|
+
align-items: center;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.main .logo .sub-title {
|
|
28
|
+
margin-left: 0.5em;
|
|
29
|
+
font-size: 22px;
|
|
30
|
+
color: #fff;
|
|
31
|
+
background: linear-gradient(-45deg, #3967FF, #B500FE);
|
|
32
|
+
-webkit-background-clip: text;
|
|
33
|
+
-webkit-text-fill-color: transparent;
|
|
34
|
+
}
|
|
35
|
+
</style>
|
|
36
|
+
</head>
|
|
37
|
+
<body>
|
|
38
|
+
<div class="main">
|
|
39
|
+
<h1 class="logo"><a href="https://www.iconfont.cn/" title="iconfont 首页" target="_blank">
|
|
40
|
+
<img width="200" src="https://img.alicdn.com/imgextra/i3/O1CN01Mn65HV1FfSEzR6DKv_!!6000000000514-55-tps-228-59.svg">
|
|
41
|
+
|
|
42
|
+
</a></h1>
|
|
43
|
+
<div class="nav-tabs">
|
|
44
|
+
<ul id="tabs" class="dib-box">
|
|
45
|
+
<li class="dib active"><span>Unicode</span></li>
|
|
46
|
+
<li class="dib"><span>Font class</span></li>
|
|
47
|
+
<li class="dib"><span>Symbol</span></li>
|
|
48
|
+
</ul>
|
|
49
|
+
|
|
50
|
+
<a href="https://www.iconfont.cn/manage/index?manage_type=myprojects&projectId=5059012" target="_blank" class="nav-more">查看项目</a>
|
|
51
|
+
|
|
52
|
+
</div>
|
|
53
|
+
<div class="tab-container">
|
|
54
|
+
<div class="content unicode" style="display: block;">
|
|
55
|
+
<ul class="icon_lists dib-box">
|
|
56
|
+
|
|
57
|
+
<li class="dib">
|
|
58
|
+
<span class="icon iconfont"></span>
|
|
59
|
+
<div class="name">flow</div>
|
|
60
|
+
<div class="code-name">&#xe606;</div>
|
|
61
|
+
</li>
|
|
62
|
+
|
|
63
|
+
<li class="dib">
|
|
64
|
+
<span class="icon iconfont"></span>
|
|
65
|
+
<div class="name">Logging</div>
|
|
66
|
+
<div class="code-name">&#xe607;</div>
|
|
67
|
+
</li>
|
|
68
|
+
|
|
69
|
+
<li class="dib">
|
|
70
|
+
<span class="icon iconfont"></span>
|
|
71
|
+
<div class="name">clusterFlow</div>
|
|
72
|
+
<div class="code-name">&#xe603;</div>
|
|
73
|
+
</li>
|
|
74
|
+
|
|
75
|
+
<li class="dib">
|
|
76
|
+
<span class="icon iconfont"></span>
|
|
77
|
+
<div class="name">outputs</div>
|
|
78
|
+
<div class="code-name">&#xe604;</div>
|
|
79
|
+
</li>
|
|
80
|
+
|
|
81
|
+
<li class="dib">
|
|
82
|
+
<span class="icon iconfont"></span>
|
|
83
|
+
<div class="name">clusterOutputs</div>
|
|
84
|
+
<div class="code-name">&#xe605;</div>
|
|
85
|
+
</li>
|
|
86
|
+
|
|
87
|
+
</ul>
|
|
88
|
+
<div class="article markdown">
|
|
89
|
+
<h2 id="unicode-">Unicode 引用</h2>
|
|
90
|
+
<hr>
|
|
91
|
+
|
|
92
|
+
<p>Unicode 是字体在网页端最原始的应用方式,特点是:</p>
|
|
93
|
+
<ul>
|
|
94
|
+
<li>支持按字体的方式去动态调整图标大小,颜色等等。</li>
|
|
95
|
+
<li>默认情况下不支持多色,直接添加多色图标会自动去色。</li>
|
|
96
|
+
</ul>
|
|
97
|
+
<blockquote>
|
|
98
|
+
<p>注意:新版 iconfont 支持两种方式引用多色图标:SVG symbol 引用方式和彩色字体图标模式。(使用彩色字体图标需要在「编辑项目」中开启「彩色」选项后并重新生成。)</p>
|
|
99
|
+
</blockquote>
|
|
100
|
+
<p>Unicode 使用步骤如下:</p>
|
|
101
|
+
<h3 id="-font-face">第一步:拷贝项目下面生成的 <code>@font-face</code></h3>
|
|
102
|
+
<pre><code class="language-css"
|
|
103
|
+
>@font-face {
|
|
104
|
+
font-family: 'iconfont';
|
|
105
|
+
src: url('iconfont.woff2?t=1762424772425') format('woff2'),
|
|
106
|
+
url('iconfont.woff?t=1762424772425') format('woff'),
|
|
107
|
+
url('iconfont.ttf?t=1762424772425') format('truetype');
|
|
108
|
+
}
|
|
109
|
+
</code></pre>
|
|
110
|
+
<h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
|
|
111
|
+
<pre><code class="language-css"
|
|
112
|
+
>.iconfont {
|
|
113
|
+
font-family: "iconfont" !important;
|
|
114
|
+
font-size: 16px;
|
|
115
|
+
font-style: normal;
|
|
116
|
+
-webkit-font-smoothing: antialiased;
|
|
117
|
+
-moz-osx-font-smoothing: grayscale;
|
|
118
|
+
}
|
|
119
|
+
</code></pre>
|
|
120
|
+
<h3 id="-">第三步:挑选相应图标并获取字体编码,应用于页面</h3>
|
|
121
|
+
<pre>
|
|
122
|
+
<code class="language-html"
|
|
123
|
+
><span class="iconfont">&#x33;</span>
|
|
124
|
+
</code></pre>
|
|
125
|
+
<blockquote>
|
|
126
|
+
<p>"iconfont" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。</p>
|
|
127
|
+
</blockquote>
|
|
128
|
+
</div>
|
|
129
|
+
</div>
|
|
130
|
+
<div class="content font-class">
|
|
131
|
+
<ul class="icon_lists dib-box">
|
|
132
|
+
|
|
133
|
+
<li class="dib">
|
|
134
|
+
<span class="icon iconfont icon-flow"></span>
|
|
135
|
+
<div class="name">
|
|
136
|
+
flow
|
|
137
|
+
</div>
|
|
138
|
+
<div class="code-name">.icon-flow
|
|
139
|
+
</div>
|
|
140
|
+
</li>
|
|
141
|
+
|
|
142
|
+
<li class="dib">
|
|
143
|
+
<span class="icon iconfont icon-Logging"></span>
|
|
144
|
+
<div class="name">
|
|
145
|
+
Logging
|
|
146
|
+
</div>
|
|
147
|
+
<div class="code-name">.icon-Logging
|
|
148
|
+
</div>
|
|
149
|
+
</li>
|
|
150
|
+
|
|
151
|
+
<li class="dib">
|
|
152
|
+
<span class="icon iconfont icon-clusterFlow"></span>
|
|
153
|
+
<div class="name">
|
|
154
|
+
clusterFlow
|
|
155
|
+
</div>
|
|
156
|
+
<div class="code-name">.icon-clusterFlow
|
|
157
|
+
</div>
|
|
158
|
+
</li>
|
|
159
|
+
|
|
160
|
+
<li class="dib">
|
|
161
|
+
<span class="icon iconfont icon-outputs"></span>
|
|
162
|
+
<div class="name">
|
|
163
|
+
outputs
|
|
164
|
+
</div>
|
|
165
|
+
<div class="code-name">.icon-outputs
|
|
166
|
+
</div>
|
|
167
|
+
</li>
|
|
168
|
+
|
|
169
|
+
<li class="dib">
|
|
170
|
+
<span class="icon iconfont icon-clusterOutputs"></span>
|
|
171
|
+
<div class="name">
|
|
172
|
+
clusterOutputs
|
|
173
|
+
</div>
|
|
174
|
+
<div class="code-name">.icon-clusterOutputs
|
|
175
|
+
</div>
|
|
176
|
+
</li>
|
|
177
|
+
|
|
178
|
+
</ul>
|
|
179
|
+
<div class="article markdown">
|
|
180
|
+
<h2 id="font-class-">font-class 引用</h2>
|
|
181
|
+
<hr>
|
|
182
|
+
|
|
183
|
+
<p>font-class 是 Unicode 使用方式的一种变种,主要是解决 Unicode 书写不直观,语意不明确的问题。</p>
|
|
184
|
+
<p>与 Unicode 使用方式相比,具有如下特点:</p>
|
|
185
|
+
<ul>
|
|
186
|
+
<li>相比于 Unicode 语意明确,书写更直观。可以很容易分辨这个 icon 是什么。</li>
|
|
187
|
+
<li>因为使用 class 来定义图标,所以当要替换图标时,只需要修改 class 里面的 Unicode 引用。</li>
|
|
188
|
+
</ul>
|
|
189
|
+
<p>使用步骤如下:</p>
|
|
190
|
+
<h3 id="-fontclass-">第一步:引入项目下面生成的 fontclass 代码:</h3>
|
|
191
|
+
<pre><code class="language-html"><link rel="stylesheet" href="./iconfont.css">
|
|
192
|
+
</code></pre>
|
|
193
|
+
<h3 id="-">第二步:挑选相应图标并获取类名,应用于页面:</h3>
|
|
194
|
+
<pre><code class="language-html"><span class="iconfont icon-xxx"></span>
|
|
195
|
+
</code></pre>
|
|
196
|
+
<blockquote>
|
|
197
|
+
<p>"
|
|
198
|
+
iconfont" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。</p>
|
|
199
|
+
</blockquote>
|
|
200
|
+
</div>
|
|
201
|
+
</div>
|
|
202
|
+
<div class="content symbol">
|
|
203
|
+
<ul class="icon_lists dib-box">
|
|
204
|
+
|
|
205
|
+
<li class="dib">
|
|
206
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
207
|
+
<use xlink:href="#icon-flow"></use>
|
|
208
|
+
</svg>
|
|
209
|
+
<div class="name">flow</div>
|
|
210
|
+
<div class="code-name">#icon-flow</div>
|
|
211
|
+
</li>
|
|
212
|
+
|
|
213
|
+
<li class="dib">
|
|
214
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
215
|
+
<use xlink:href="#icon-Logging"></use>
|
|
216
|
+
</svg>
|
|
217
|
+
<div class="name">Logging</div>
|
|
218
|
+
<div class="code-name">#icon-Logging</div>
|
|
219
|
+
</li>
|
|
220
|
+
|
|
221
|
+
<li class="dib">
|
|
222
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
223
|
+
<use xlink:href="#icon-clusterFlow"></use>
|
|
224
|
+
</svg>
|
|
225
|
+
<div class="name">clusterFlow</div>
|
|
226
|
+
<div class="code-name">#icon-clusterFlow</div>
|
|
227
|
+
</li>
|
|
228
|
+
|
|
229
|
+
<li class="dib">
|
|
230
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
231
|
+
<use xlink:href="#icon-outputs"></use>
|
|
232
|
+
</svg>
|
|
233
|
+
<div class="name">outputs</div>
|
|
234
|
+
<div class="code-name">#icon-outputs</div>
|
|
235
|
+
</li>
|
|
236
|
+
|
|
237
|
+
<li class="dib">
|
|
238
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
239
|
+
<use xlink:href="#icon-clusterOutputs"></use>
|
|
240
|
+
</svg>
|
|
241
|
+
<div class="name">clusterOutputs</div>
|
|
242
|
+
<div class="code-name">#icon-clusterOutputs</div>
|
|
243
|
+
</li>
|
|
244
|
+
|
|
245
|
+
</ul>
|
|
246
|
+
<div class="article markdown">
|
|
247
|
+
<h2 id="symbol-">Symbol 引用</h2>
|
|
248
|
+
<hr>
|
|
249
|
+
|
|
250
|
+
<p>这是一种全新的使用方式,应该说这才是未来的主流,也是平台目前推荐的用法。相关介绍可以参考这篇<a href="">文章</a>
|
|
251
|
+
这种用法其实是做了一个 SVG 的集合,与另外两种相比具有如下特点:</p>
|
|
252
|
+
<ul>
|
|
253
|
+
<li>支持多色图标了,不再受单色限制。</li>
|
|
254
|
+
<li>通过一些技巧,支持像字体那样,通过 <code>font-size</code>, <code>color</code> 来调整样式。</li>
|
|
255
|
+
<li>兼容性较差,支持 IE9+,及现代浏览器。</li>
|
|
256
|
+
<li>浏览器渲染 SVG 的性能一般,还不如 png。</li>
|
|
257
|
+
</ul>
|
|
258
|
+
<p>使用步骤如下:</p>
|
|
259
|
+
<h3 id="-symbol-">第一步:引入项目下面生成的 symbol 代码:</h3>
|
|
260
|
+
<pre><code class="language-html"><script src="./iconfont.js"></script>
|
|
261
|
+
</code></pre>
|
|
262
|
+
<h3 id="-css-">第二步:加入通用 CSS 代码(引入一次就行):</h3>
|
|
263
|
+
<pre><code class="language-html"><style>
|
|
264
|
+
.icon {
|
|
265
|
+
width: 1em;
|
|
266
|
+
height: 1em;
|
|
267
|
+
vertical-align: -0.15em;
|
|
268
|
+
fill: currentColor;
|
|
269
|
+
overflow: hidden;
|
|
270
|
+
}
|
|
271
|
+
</style>
|
|
272
|
+
</code></pre>
|
|
273
|
+
<h3 id="-">第三步:挑选相应图标并获取类名,应用于页面:</h3>
|
|
274
|
+
<pre><code class="language-html"><svg class="icon" aria-hidden="true">
|
|
275
|
+
<use xlink:href="#icon-xxx"></use>
|
|
276
|
+
</svg>
|
|
277
|
+
</code></pre>
|
|
278
|
+
</div>
|
|
279
|
+
</div>
|
|
280
|
+
|
|
281
|
+
</div>
|
|
282
|
+
</div>
|
|
283
|
+
<script>
|
|
284
|
+
$(document).ready(function () {
|
|
285
|
+
$('.tab-container .content:first').show()
|
|
286
|
+
|
|
287
|
+
$('#tabs li').click(function (e) {
|
|
288
|
+
var tabContent = $('.tab-container .content')
|
|
289
|
+
var index = $(this).index()
|
|
290
|
+
|
|
291
|
+
if ($(this).hasClass('active')) {
|
|
292
|
+
return
|
|
293
|
+
} else {
|
|
294
|
+
$('#tabs li').removeClass('active')
|
|
295
|
+
$(this).addClass('active')
|
|
296
|
+
|
|
297
|
+
tabContent.hide().eq(index).fadeIn()
|
|
298
|
+
}
|
|
299
|
+
})
|
|
300
|
+
})
|
|
301
|
+
</script>
|
|
302
|
+
</body>
|
|
303
|
+
</html>
|
|
Binary file
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "iconfont"; /* Project id 5059012 */
|
|
3
|
+
src: url('iconfont.woff2?t=1762414013778') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1762414013778') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1762414013778') format('truetype');
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.iconfont {
|
|
9
|
+
font-family: "iconfont" !important;
|
|
10
|
+
font-size: 32px;
|
|
11
|
+
width: 32px !important;
|
|
12
|
+
margin-top: -9px;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
-webkit-font-smoothing: antialiased;
|
|
15
|
+
-moz-osx-font-smoothing: grayscale;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.icon-new-flows:before {
|
|
19
|
+
content: "\e606";
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.icon-new-Logging:before {
|
|
23
|
+
content: "\e607";
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.icon-new-clusterFlow:before {
|
|
27
|
+
content: "\e603";
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.icon-new-outputs:before {
|
|
31
|
+
content: "\e604";
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.icon-new-clusterOutputs:before {
|
|
35
|
+
content: "\e605";
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/* 第二套 iconfont 通用规则 */
|
|
39
|
+
.icon-new-:before,
|
|
40
|
+
[class^="icon-new-"]:before,
|
|
41
|
+
[class*=" icon-new-"]:before {
|
|
42
|
+
font-family: "iconfont" !important;
|
|
43
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
window._iconfont_svg_string_5059012='<svg><symbol id="icon-flow" viewBox="0 0 1160 1024"><path d="M62.57056 362.08v-18.688a15.584 15.584 0 1 0-31.168 0v18.688a46.112 46.112 0 0 0 0 87.232v236.8a15.584 15.584 0 0 0 31.168 0v-236.8a46.112 46.112 0 0 0 0-87.232zM187.17856 580.16v-236.8a15.584 15.584 0 1 0-31.168 0v236.8a46.112 46.112 0 0 0 0 87.232v18.688a15.584 15.584 0 1 0 31.168 0v-18.688a46.112 46.112 0 0 0 0-87.232z m155.776-174.464a44 44 0 0 0-31.168-43.616v-18.688a15.584 15.584 0 1 0-31.168 0v18.688a46.112 46.112 0 0 0 0 87.232v236.8a15.584 15.584 0 0 0 31.168 0v-236.8a44 44 0 0 0 31.2-43.616z" fill="#A8ABB2" ></path></symbol><symbol id="icon-Logging" viewBox="0 0 1024 1024"><path d="M345.79232 287.968H15.10432A15.296 15.296 0 0 0 0.00032 303.392v402.176a15.264 15.264 0 0 0 15.104 15.424h330.688a15.264 15.264 0 0 0 15.104-15.424V303.392a15.264 15.264 0 0 0-15.104-15.424z m-19.2 381.856a12.512 12.512 0 0 1-12.224 12.8H46.88032a12.512 12.512 0 0 1-12.224-12.8V335.968a12.544 12.544 0 0 1 12.224-12.8h267.488a12.512 12.512 0 0 1 12.224 12.8V669.76z m0 0L187.77632 398.08h-93.44a18.144 18.144 0 0 0 0 36.096h93.44a18.144 18.144 0 0 0 0-36.096z m0 0l99.808 88.032H233.15232a18.144 18.144 0 0 0 0 36.096h193.248a18.144 18.144 0 0 0 0-36.096z m0 0l-40.576 88.032H133.31232a18.112 18.112 0 0 0 0 36.096h152.704a18.112 18.112 0 0 0 0-36.096z m0 0" fill="#A8ABB2" ></path></symbol><symbol id="icon-clusterFlow" viewBox="0 0 1030 1024"><path d="M6.368 663.968v-237.44h24.96v237.472h-24.96z m312.416-37.44V313.952h24.96v312.448h-24.96z m-199.936 0V276.576h24.96v349.92h-24.96z m99.968 74.88V364.032h24.96v337.44h-24.96z" fill="#A8ABB2" ></path></symbol><symbol id="icon-outputs" viewBox="0 0 1024 1024"><path d="M190.68832 568.768a14.656 14.656 0 0 0-14.656 14.656v44a14.688 14.688 0 1 0 29.344 0v-44.032a14.656 14.656 0 0 0-14.688-14.624z m-81.92-147.648a5.856 5.856 0 0 0 4.16 1.728h63.104v101.92a14.688 14.688 0 1 0 29.344 0v-101.92h64a5.856 5.856 0 0 0 4.16-10.016l-78.272-78.272a5.856 5.856 0 0 0-8.288 0l-78.272 78.272a5.856 5.856 0 0 0 0 8.288z" fill="#A8ABB2" ></path><path d="M365.02432 360.896l-79.84-39.456a14.688 14.688 0 0 0-13.024 26.304L352.00032 387.232v230.4l-161.344 67.616-161.344-67.616v-230.4l79.84-39.456a14.656 14.656 0 1 0-12.992-26.304l-80 39.456a29.184 29.184 0 0 0-16.16 26.304v230.4a29.216 29.216 0 0 0 17.984 27.04l167.04 69.984a14.624 14.624 0 0 0 11.36 0l167.008-69.984a29.248 29.248 0 0 0 17.984-27.072v-230.368a29.184 29.184 0 0 0-16.352-26.336z" fill="#A8ABB2" ></path></symbol><symbol id="icon-clusterOutputs" viewBox="0 0 1030 1024"><path d="M351.648 423.584a9.92 9.92 0 0 0-9.888 9.888v221.024a8.864 8.864 0 0 1-8.864 8.832H35.008a8.896 8.896 0 0 1-8.736-8.832v-265.28a8.896 8.896 0 0 1 8.832-8.864h237.888l-23.648 23.872a9.952 9.952 0 0 0 7.104 16.928 9.824 9.824 0 0 0 7.104-2.912l47.296-47.648-47.488-47.616a9.824 9.824 0 0 0-13.92 0 10.048 10.048 0 0 0 0 14.208l23.648 23.648h-238.08a28.8 28.8 0 0 0-28.608 28.8v264.832a28.8 28.8 0 0 0 28.608 28.8h297.92a28.8 28.8 0 0 0 28.64-28.8v-220.992a9.92 9.92 0 0 0-9.92-9.92z" fill="#A8ABB2" ></path><path d="M179.936 437.408v177.376a9.92 9.92 0 1 0 19.776 0v-177.376a9.888 9.888 0 1 0-19.776 0z m88.832 104.256v73.408a9.888 9.888 0 1 0 19.776 0v-73.408a9.888 9.888 0 1 0-19.776 0z m-167.936-42.624a9.92 9.92 0 0 0-9.888 9.952v106.08a9.92 9.92 0 1 0 19.776 0v-106.176a9.92 9.92 0 0 0-9.856-9.888z" fill="#A8ABB2" ></path></symbol></svg>',(a=>{var t=(e=(e=document.getElementsByTagName("script"))[e.length-1]).getAttribute("data-injectcss"),e=e.getAttribute("data-disable-injectsvg");if(!e){var n,o,i,l,v,d=function(t,e){e.parentNode.insertBefore(t,e)};if(t&&!a.__iconfont__svg__cssinject__){a.__iconfont__svg__cssinject__=!0;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(t){console&&console.log(t)}}n=function(){var t,e=document.createElement("div");e.innerHTML=a._iconfont_svg_string_5059012,(e=e.getElementsByTagName("svg")[0])&&(e.setAttribute("aria-hidden","true"),e.style.position="absolute",e.style.width=0,e.style.height=0,e.style.overflow="hidden",e=e,(t=document.body).firstChild?d(e,t.firstChild):t.appendChild(e))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(n,0):(o=function(){document.removeEventListener("DOMContentLoaded",o,!1),n()},document.addEventListener("DOMContentLoaded",o,!1)):document.attachEvent&&(i=n,l=a.document,v=!1,c(),l.onreadystatechange=function(){"complete"==l.readyState&&(l.onreadystatechange=null,s())})}function s(){v||(v=!0,i())}function c(){try{l.documentElement.doScroll("left")}catch(t){return void setTimeout(c,50)}s()}})(window);
|
|
Binary file
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "5059012",
|
|
3
|
+
"name": "logging",
|
|
4
|
+
"font_family": "iconfont",
|
|
5
|
+
"css_prefix_text": "icon-",
|
|
6
|
+
"description": "",
|
|
7
|
+
"glyphs": [
|
|
8
|
+
{
|
|
9
|
+
"icon_id": "46007411",
|
|
10
|
+
"name": "flow",
|
|
11
|
+
"font_class": "flow",
|
|
12
|
+
"unicode": "e606",
|
|
13
|
+
"unicode_decimal": 58886
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"icon_id": "46007409",
|
|
17
|
+
"name": "Logging",
|
|
18
|
+
"font_class": "Logging",
|
|
19
|
+
"unicode": "e607",
|
|
20
|
+
"unicode_decimal": 58887
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"icon_id": "46007413",
|
|
24
|
+
"name": "clusterFlow",
|
|
25
|
+
"font_class": "clusterFlow",
|
|
26
|
+
"unicode": "e603",
|
|
27
|
+
"unicode_decimal": 58883
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"icon_id": "46007412",
|
|
31
|
+
"name": "outputs",
|
|
32
|
+
"font_class": "outputs",
|
|
33
|
+
"unicode": "e604",
|
|
34
|
+
"unicode_decimal": 58884
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"icon_id": "46007410",
|
|
38
|
+
"name": "clusterOutputs",
|
|
39
|
+
"font_class": "clusterOutputs",
|
|
40
|
+
"unicode": "e605",
|
|
41
|
+
"unicode_decimal": 58885
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="13.231" height="16.465" viewBox="0 0 13.231 16.465">
|
|
2
|
+
<path id="API_密钥key" data-name="API 密钥key" d="M153.838,71.736a.735.735,0,0,0-.735.735v6.156a.735.735,0,0,0,.735.735h9.556a.735.735,0,0,0,.735-.735V72.471a.735.735,0,0,0-.735-.735Zm8.674-1.1V68.989a3.887,3.887,0,1,0-7.773,0v1.645Zm1.1.013a1.838,1.838,0,0,1,1.617,1.825v6.156a1.838,1.838,0,0,1-1.838,1.838h-9.556A1.838,1.838,0,0,1,152,78.627V72.471a1.838,1.838,0,0,1,1.635-1.827V68.989a4.989,4.989,0,1,1,9.978,0Zm-5,6.014a1.1,1.1,0,1,0-1.1-1.1A1.1,1.1,0,0,0,158.615,76.661Z" transform="translate(-152 -64)" fill="#fff"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="20px" height="20px" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g transform="matrix(1 0 0 1 -1960 -15 )">
|
|
4
|
+
<path d="M 4.8287499999999 2.354999999999997 L 6.447499999999991 3.571249999999999 C 6.944234952397892 3.296336798844159 7.471337243122889 3.0802940772178857 8.018125000000055 2.927500000000002 L 8.398124999999936 0.9375 L 11.7493750000001 0.9375 L 12.035000000000082 2.941875000000003 C 12.581875000000082 3.099375000000002 13.106250000000045 3.319375000000001 13.599999999999909 3.5974999999999966 L 15.275624999999991 2.458750000000002 L 17.64562500000011 4.828749999999999 L 16.429374999999936 6.447499999999998 C 16.704375000000027 6.943750000000001 16.920624999999973 7.469999999999999 17.07312499999989 8.018124999999998 L 19.0631249999999 8.3975 L 19.0631249999999 11.748750000000001 L 17.058749999999918 12.034374999999997 C 16.901757589331055 12.579743540043523 16.681731272105935 13.104954119959451 16.403125000000045 13.599375000000002 L 17.54187499999989 15.274999999999999 L 15.171875 17.645 L 13.553124999999909 16.428749999999997 C 13.056874999999991 16.70375 12.5306250000001 16.919999999999998 11.982500000000073 17.072499999999998 L 11.603125000000091 19.0625 L 8.251874999999927 19.0625 L 7.966249999999945 17.058124999999997 C 7.42088145995649 16.9011325893311 6.895670880040598 16.681106272105932 6.401249999999891 16.4025 L 4.724999999999909 17.541249999999998 L 2.355000000000018 15.17125 L 3.5712499999999636 13.552500000000002 C 3.2963316621476224 13.055767511417464 3.0802886889528054 12.52866460691385 2.927500000000009 11.981875000000002 L 0.9375 11.6025 L 0.9375 8.251249999999999 L 2.941874999999982 7.965625000000003 C 3.099375000000009 7.419375000000002 3.3193750000000364 6.894374999999997 3.597500000000082 6.400624999999998 L 2.458750000000009 4.725000000000001 L 4.8287499999999 2.354999999999997 Z M 10.916249999999991 3.958750000000002 L 10.664375000000064 2.1868750000000006 L 9.431250000000091 2.1868750000000006 L 9.09375 3.958750000000002 L 8.690624999999955 4.046875 C 7.99908602983669 4.198277484319469 7.339492954772595 4.469899520362475 6.741874999999936 4.849375000000002 L 6.376874999999927 5.080624999999998 L 4.945625000000064 4.005625000000002 L 4.073750000000018 4.877499999999998 L 5.087500000000091 6.369999999999997 L 4.865000000000009 6.716875000000002 C 4.482751297972072 7.31276074731386 4.207964337869953 7.971064842647195 4.053124999999909 8.661875000000002 L 3.959374999999909 9.083750000000002 L 2.1875 9.335625 L 2.1875 10.568125000000002 L 3.958750000000009 10.90625 L 4.046875 11.309375000000003 C 4.198388963584193 12.000879103122479 4.47000322511758 12.660453298964391 4.849375000000009 13.258125 L 5.080625000000055 13.623125000000002 L 4.005625000000009 15.054375 L 4.877500000000055 15.92625 L 6.369999999999891 14.912500000000001 L 6.716875000000073 15.135000000000002 C 7.31276074731386 15.517248702027885 7.971064842647138 15.792035662130075 8.661875000000009 15.946874999999999 L 9.083750000000009 16.040625 L 9.335624999999936 17.8125 L 10.568125000000009 17.8125 L 10.90625 16.04125 L 11.309375000000045 15.953125 C 12.000879103122543 15.801611036415771 12.660453298964285 15.529996774882413 13.258125000000064 15.150625000000002 L 13.623125000000073 14.919375000000002 L 15.054374999999936 15.994375000000002 L 15.926249999999982 15.122500000000002 L 14.912499999999909 13.629999999999995 L 15.134999999999991 13.283124999999998 C 15.517248702027928 12.68723925268614 15.792035662130047 12.028935157352805 15.946875000000091 11.338124999999998 L 16.04062500000009 10.916249999999998 L 17.8125 10.664375 L 17.8125 9.431249999999999 L 16.04124999999999 9.093125 L 15.953125 8.689999999999998 C 15.801611036415807 7.998495896877522 15.52999677488242 7.338921701035609 15.150624999999991 6.741250000000001 L 14.919374999999945 6.376249999999999 L 15.994374999999991 4.945 L 15.122499999999945 4.073124999999997 L 13.63000000000011 5.086874999999999 L 13.283124999999927 4.8643749999999955 C 12.687215183188528 4.482172208106064 12.028919443671839 4.207388735859226 11.338124999999991 4.052500000000002 L 10.916249999999991 3.958750000000002 Z M 10 6.25 C 12.071067811865532 6.25 13.75 7.9289321881345245 13.75 10 C 13.75 12.071067811865476 12.071067811865532 13.75 10 13.75 C 7.928932188134468 13.75 6.25 12.071067811865476 6.25 10 C 6.25 7.9289321881345245 7.928932188134468 6.25 10 6.25 Z M 10 7.5 C 8.619288125423054 7.5 7.5 8.619288125423019 7.5 10 C 7.5 11.380711874576981 8.619288125423054 12.5 10 12.5 C 11.380711874576946 12.5 12.5 11.380711874576981 12.5 10 C 12.5 8.619288125423019 11.380711874576946 7.5 10 7.5 Z " fill-rule="nonzero" fill="#555555" stroke="none" transform="matrix(1 0 0 1 1960 15 )" />
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30">
|
|
2
|
+
<g id="组_44732" data-name="组 44732" transform="translate(-13317 -3608)">
|
|
3
|
+
<g id="组_44729" data-name="组 44729" transform="translate(9 7)">
|
|
4
|
+
<path id="路径_23239" data-name="路径 23239" d="M152.895,82.183a1.772,1.772,0,0,1-1.067-.369c-.411-.328-9.606-6.9-9.606-12.479V60.262a1.571,1.571,0,0,1,1.231-1.519l9.031-2.5a1.539,1.539,0,0,1,.862,0l9.031,2.5a1.615,1.615,0,0,1,1.19,1.519v9.072c0,5.583-9.2,12.151-9.606,12.479A1.772,1.772,0,0,1,152.895,82.183ZM143.864,60.3v9.031c0,3.982,6.527,9.113,9.031,11.206l.534.616-.534-.616c2.5-2.094,9.031-7.225,9.031-11.206V60.3l-9.031-2.463L143.864,60.3Z" transform="translate(13169.778 3546.822)" fill="#0e2744"/>
|
|
5
|
+
<g id="组_44728" data-name="组 44728" transform="translate(-34 -9.25)">
|
|
6
|
+
<g id="椭圆_165" data-name="椭圆 165" transform="translate(13353 3617.25)" fill="none" stroke="#0e2744" stroke-width="1.6">
|
|
7
|
+
<circle cx="3.5" cy="3.5" r="3.5" stroke="none"/>
|
|
8
|
+
<circle cx="3.5" cy="3.5" r="2.7" fill="none"/>
|
|
9
|
+
</g>
|
|
10
|
+
<g id="组_44726" data-name="组 44726" transform="translate(0.5 -0.048)">
|
|
11
|
+
<line id="直线_122" data-name="直线 122" y2="8.5" transform="translate(13356 3623.5)" fill="none" stroke="#0e2744" stroke-linecap="round" stroke-width="1.6"/>
|
|
12
|
+
<line id="直线_123" data-name="直线 123" x1="3.5" transform="translate(13356.846 3628)" fill="none" stroke="#0e2744" stroke-linecap="round" stroke-width="1.6"/>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
<g id="组_44731" data-name="组 44731" transform="translate(25 24)">
|
|
17
|
+
<rect id="矩形_888" data-name="矩形 888" width="30" height="30" transform="translate(13292 3584)" fill="none"/>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30">
|
|
2
|
+
<g id="组_44730" data-name="组 44730" transform="translate(-13292 -3584)">
|
|
3
|
+
<path id="用户-角色-用户名-单人_jurassic" d="M111.773,108.571a6.857,6.857,0,1,0-7.546,0A11.271,11.271,0,0,0,96,119.143a.857.857,0,1,0,1.713,0c0-5.2,4.612-9.43,10.287-9.43s10.287,4.229,10.287,9.43a.857.857,0,0,0,1.713,0A11.271,11.271,0,0,0,111.773,108.571Zm-8.916-5.714A5.143,5.143,0,1,1,108,108,5.15,5.15,0,0,1,102.857,102.857Z" transform="translate(13199 3491)" fill="#0e2744"/>
|
|
4
|
+
<rect id="矩形_888" data-name="矩形 888" width="30" height="30" transform="translate(13292 3584)" fill="none"/>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="238" height="60" viewBox="0 0 238 60">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="clip-path">
|
|
4
|
+
<rect id="矩形_1173" data-name="矩形 1173" width="168.913" height="54.64" fill="#fff"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
<clipPath id="clip-登录页">
|
|
7
|
+
<rect width="238" height="60"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
<g id="登录页" clip-path="url(#clip-登录页)">
|
|
11
|
+
<g id="组_45541" data-name="组 45541" transform="translate(8.001 -4.998)">
|
|
12
|
+
<g id="组_45177" data-name="组 45177" transform="translate(0 7.999)">
|
|
13
|
+
<g id="公司logo" transform="translate(0 0)" clip-path="url(#clip-path)">
|
|
14
|
+
<g id="组_44436" data-name="组 44436" transform="translate(0)">
|
|
15
|
+
<path id="云" d="M30.854,31.541a23.208,23.208,0,0,0,6.156.523s10.918-.523,10.349-9.895-11.27-7.752-11.27-7.752S36.115,3.275,25.454,3.275,15.045,14.417,15.045,14.417,4.363,12.8,3.778,22.169c-.611,9.74,10.583,9.74,10.583,9.74-.525-.063,16.269,2.093,17.017-15.2,0,0-1.837-1.637-5.933-1.637S19.762,16.7,19.762,16.7c.249,5.715,2.16,9.317,4.621,11.576a7.767,7.767,0,0,1-2,1.2,4.48,4.48,0,0,1-1.769.6c-3.033-3.14-5.043-8.064-4.427-15.746a18.413,18.413,0,0,1,9.247-2.563,19.089,19.089,0,0,1,9.357,2.555c1.942,24.27-22.411,21.047-22.411,21.047S-.155,34.7,0,22.525s12.023-11.4,12.023-11.4S12.943,0,25.454,0,38.836,11.121,38.836,11.121s11.864-.769,12.023,11.4S38.485,35.38,38.485,35.38a27.543,27.543,0,0,1-11.194-1.174s1.065-.646,1.952-1.308a18.49,18.49,0,0,0,1.611-1.358Z" transform="translate(0)" fill="#fff"/>
|
|
16
|
+
</g>
|
|
17
|
+
<g id="组_44414" data-name="组 44414" transform="translate(0 39.259)">
|
|
18
|
+
<g id="组_44410" data-name="组 44410" transform="translate(0 0.015)">
|
|
19
|
+
<path id="路径_22151" data-name="路径 22151" d="M617.486,232.973h.925v2.654h-.925v1.2h.925v3.866l-1.083.342.164,1.149,3.095-.954v-1.224l-.82.259v-3.438h.823v-1.2h-.823v-2.654h.823v-1.2h-3.1Z" transform="translate(-617.328 -231.515)" fill="#fff"/>
|
|
20
|
+
<path id="路径_22152" data-name="路径 22152" d="M641.447,230.807v.976h-1.729V230.55h-1.355v1.234h-1.884v-.976h-1.3v2.126H642.8v-2.126Z" transform="translate(-631.42 -230.55)" fill="#fff"/>
|
|
21
|
+
<path id="路径_22153" data-name="路径 22153" d="M635.472,247.578h3.13l-.195,1.215H635.42v4.953h1.3v-3.8h.753v3.8h1.3v-3.8h.753v3.8h1.355v-3.8h.753v2.6h-.4v1.2l.032,0s.071.007.181.007c.462,0,1.536-.11,1.536-1.131v-3.829h-3.233l.195-1.215h3.038v-1.149h-7.523Z" transform="translate(-631.612 -243.088)" fill="#fff"/>
|
|
22
|
+
</g>
|
|
23
|
+
<g id="组_44411" data-name="组 44411" transform="translate(13.165 0.252)">
|
|
24
|
+
<path id="路径_22154" data-name="路径 22154" d="M679.883,259.732l1.09-.008L682.1,254h-1.232Z" transform="translate(-679.883 -249.303)" fill="#fff"/>
|
|
25
|
+
<path id="路径_22155" data-name="路径 22155" d="M686.948,234.629h-2.519v-1.64l2.313-.2.014-1.114-6.118.576-.032,0v1.054l2.52-.213v1.529h-2.519v1.2h2.519V242.1h1.3v-6.271h2.519Z" transform="translate(-680.454 -231.679)" fill="#fff"/>
|
|
26
|
+
<path id="路径_22156" data-name="路径 22156" d="M718.255,240.988v-9.213h-4.182v10.4h2.915a1.266,1.266,0,0,0,.958-.349A1.232,1.232,0,0,0,718.255,240.988Zm-1.355-8.013v8h-1.472v-8Z" transform="translate(-706.878 -231.755)" fill="#fff"/>
|
|
27
|
+
<path id="路径_22157" data-name="路径 22157" d="M702.306,254h-1.2l1.084,5.694.005.028,1.2.008-1.089-5.7Z" transform="translate(-696.641 -249.303)" fill="#fff"/>
|
|
28
|
+
</g>
|
|
29
|
+
<g id="组_44412" data-name="组 44412" transform="translate(26.761 0.272)">
|
|
30
|
+
<path id="路径_22158" data-name="路径 22158" d="M756.247,231.772h-8.76v1.149h9.9A1.107,1.107,0,0,0,756.247,231.772Z" transform="translate(-746.857 -231.772)" fill="#fff"/>
|
|
31
|
+
<path id="路径_22159" data-name="路径 22159" d="M755.536,252.514v-1.2H744.518v1.2h2.8l-2.8,5.037-.029.052H755.4l-1.839-4.1-1.086.814.966,2.135h-6.877l2.223-3.94Z" transform="translate(-744.494 -247.201)" fill="#fff"/>
|
|
32
|
+
</g>
|
|
33
|
+
<g id="组_44413" data-name="组 44413" transform="translate(39.944)">
|
|
34
|
+
<path id="路径_22160" data-name="路径 22160" d="M819.715,265.124v1.022l5.854.679v-1.038l-5.815-.659Z" transform="translate(-817.068 -257.833)" fill="#fff"/>
|
|
35
|
+
<path id="路径_22161" data-name="路径 22161" d="M817.926,244.4l3.958.471.039,0v-1l-3.785-.475,1.685-.631,3.575,1.283.011-1.062-2.139-.763,1.676-.628v-2.012h-5.6l-.952.9v1.771l1.648-1.622h3.5v.4l-1.747.663-1.564-.566-.836.762.968.348-1.945.738-.022.009v1.062l1.532-.574Z" transform="translate(-814.446 -237.671)" fill="#fff"/>
|
|
36
|
+
<path id="路径_22162" data-name="路径 22162" d="M818.052,240.03v-9.55H807.136v10.674h9.595a1.37,1.37,0,0,0,1.05-.372A1.072,1.072,0,0,0,818.052,240.03Zm-1.355-8.451v8.478h-8.206v-8.479Z" transform="translate(-807.136 -230.48)" fill="#fff"/>
|
|
37
|
+
</g>
|
|
38
|
+
</g>
|
|
39
|
+
</g>
|
|
40
|
+
</g>
|
|
41
|
+
<path id="路径_23779" data-name="路径 23779" d="M2.85-11.817H22.141v3.431H2.85ZM.563-4.111H24.428V-.68H12.881a72.308,72.308,0,0,1-5.8,7.035q5.233-.037,10.081-.3L13.788,1.906,16.771.091q4.9,5.519,7.632,9.2l-3.257,2.088q-.547-.82-1.4-1.989Q5.1,9.873,2.924,10.433L1.333,7.126A33.481,33.481,0,0,0,8.195-.68H.563ZM25.995-7.193l4.549-.634q-1.939-.721-3.6-1.206l.634-1.516h-1.7v-1.79H37.231V-5.7H34.248v-4.848h-5.9q1.84.547,3.915,1.342l-.534,1.218,1.952-.3q-.025.895.025,1.914-3.356.447-7.359,1.168Zm12.057-.124,4.276-.522q-1.976-.746-3.679-1.243l.646-1.467H37.977v-1.79H49.04V-5.7H46.057v-4.848h-5.9q2.237.684,3.841,1.318l-.584,1.243,2.051-.273a10.073,10.073,0,0,0,.149,1.84q-3.132.348-7.085,1.019ZM25.721,5.983h6.116V4.939H26.865V3.149h4.972V2.1H27.685V-5.229H48.12V2.1H43.844V3.149h4.9v1.79h-4.9V5.983h6.14V7.9H41.408q4.164.634,8.179,1.392l-.945,2.188L39.394,9.563,40.3,7.9H35.33l.883,1.591q-4.475,1.193-9.074,2.063-.522-1.168-1.069-2.262Q30,8.692,33.788,7.9H25.721ZM44.963-3.439H39.469V-2.37h5.494ZM30.842-2.37h5.469V-3.439H30.842ZM44.963.315V-.754H39.469V.315Zm-14.121,0h5.469V-.754H30.842Zm4.177,2.834h5.643V2.1H35.019Zm0,2.834h5.643V4.939H35.019Zm18.745-17.8H73.055v3.431H53.764ZM51.476-4.111H75.342V-.68H63.795a72.309,72.309,0,0,1-5.8,7.035q5.233-.037,10.081-.3L64.7,1.906,67.685.091q4.9,5.519,7.632,9.2l-3.257,2.088q-.547-.82-1.4-1.989-14.643.485-16.818,1.044L52.247,7.126A33.481,33.481,0,0,0,59.108-.68H51.476ZM77.182-6.447h1.293Q77.9-7.193,76.486-8.71a12.248,12.248,0,0,0,3.928-4.525h3.431q-.4.895-.845,1.715h6.414v2.362H84.64q.746.82,1.467,1.641L84.665-6.447h2.411q-.224-.646-.447-1.318l2.809-.472q.273.87.547,1.79H95.7q-1.019-1.293-1.79-2.113l.771-.6H93.565a17.478,17.478,0,0,1-1.84,2.411Q91-7.293,89.09-8.561a16.236,16.236,0,0,0,2.934-4.674h3.456a17.568,17.568,0,0,1-.671,1.715h5.743v2.362H96.822q.671.721,1.318,1.442L96.4-6.447h4.052v3.58H97.07V-3.912H80.563v1.044H77.182ZM95.529,6.878H82.9V8.32H95.529Zm-.8-5.668V-.133H82.9V1.209ZM78.524-6.447h5.022q-.671-.845-1.566-1.914L83-9.157H81.358A16.273,16.273,0,0,1,78.524-6.447ZM97.965-2.42V3.5H82.9V4.59H98.761v6.787H95.529v-.8H82.9v.8H79.519V-2.42ZM102.191.19H112.31V-8.934h-9.024v-3.282h21.976v3.282h-9.173V.19h10.267V3.472H116.088V11.2H112.31V3.472H102.191ZM103.633-6.7l2.61-1.765q2.387,2.784,4.947,6.165L108.183-.307Q105.672-4.111,103.633-6.7Zm21.678.249q-2.635,3.157-5.569,6.215L117.207-2.3a56.739,56.739,0,0,0,5.171-6.14Zm19.963-3.8q3.828,3.729,7.085,7.334L149.6-.58l-1.939-2.287q-10.69.174-18.571.895l-1.318-2.934a42.875,42.875,0,0,0,9.7-8.6l3.257,1.765q-3.53,3.331-7.458,6.513l11.958-.423-2.536-2.784ZM130.109,11.278V-.382h19.142V11.278h-3.381V9.811H133.49v1.467ZM145.871,2.7H133.49V6.728h12.38Z" transform="translate(68.748 35.828)" fill="#fff"/>
|
|
42
|
+
</g>
|
|
43
|
+
</g>
|
|
44
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="330" height="50" viewBox="0 0 330 50">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="clip-path">
|
|
4
|
+
<rect id="矩形_1173" data-name="矩形 1173" width="108.202" height="35.001" fill="#555"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
<linearGradient id="linear-gradient" x1="0.251" y1="0.33" x2="0.897" y2="0.864" gradientUnits="objectBoundingBox">
|
|
7
|
+
<stop offset="0" stop-color="#59c3f7"/>
|
|
8
|
+
<stop offset="0.488" stop-color="#2784fe"/>
|
|
9
|
+
<stop offset="1" stop-color="#0564e0"/>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
</defs>
|
|
12
|
+
<g id="组_45131" data-name="组 45131" transform="translate(-12763 -13359)">
|
|
13
|
+
<g id="组_44679" data-name="组 44679" transform="translate(3626 2783)">
|
|
14
|
+
<rect id="矩形_850" data-name="矩形 850" width="330" height="50" transform="translate(9137 10576)" fill="none"/>
|
|
15
|
+
</g>
|
|
16
|
+
<g id="组_45541" data-name="组 45541" transform="translate(12783 13358.501)">
|
|
17
|
+
<g id="组_45177" data-name="组 45177" transform="translate(0 7.999)">
|
|
18
|
+
<g id="公司logo" clip-path="url(#clip-path)">
|
|
19
|
+
<g id="组_44414" data-name="组 44414" transform="translate(0 25.142)">
|
|
20
|
+
<g id="组_44410" data-name="组 44410" transform="translate(0 0.014)">
|
|
21
|
+
<path id="路径_22151" data-name="路径 22151" d="M617.432,232.542h.593v1.7h-.593v.768h.593v2.476l-.7.219.1.737,1.983-.611v-.784l-.525.166v-2.2h.525v-.768h-.525v-1.7h.525v-.77h-1.988Z" transform="translate(-617.325 -231.606)" fill="#555"/>
|
|
22
|
+
<path id="路径_22152" data-name="路径 22152" d="M639.2,230.715v.623h-1.108v-.789h-.875v.789h-1.208v-.625h-.835v1.361h4.886v-1.361Z" transform="translate(-632.768 -230.549)" fill="#555"/>
|
|
23
|
+
<path id="路径_22153" data-name="路径 22153" d="M635.453,247.167h2.005l-.124.779H635.42v3.173h.835v-2.436h.483v2.436h.835v-2.436h.483v2.436h.875v-2.436h.483v1.668h-.254v.767h.136c.3,0,.984-.07.984-.724v-2.45h-2.07l.124-.779h1.946v-.737H635.46Z" transform="translate(-632.975 -244.289)" fill="#555"/>
|
|
24
|
+
</g>
|
|
25
|
+
<g id="组_44411" data-name="组 44411" transform="translate(8.438 0.168)">
|
|
26
|
+
<path id="路径_22154" data-name="路径 22154" d="M679.883,257.671h.7L681.3,254h-.789Z" transform="translate(-679.883 -250.988)" fill="#555"/>
|
|
27
|
+
<path id="路径_22155" data-name="路径 22155" d="M684.668,233.569h-1.613v-1.05l1.482-.126.009-.714-3.918.369h-.021v.675l1.614-.137v.98h-1.614v.768h1.614v4.025h.835v-4.025h1.613Z" transform="translate(-680.508 -231.679)" fill="#555"/>
|
|
28
|
+
<path id="路径_22156" data-name="路径 22156" d="M716.748,237.676v-5.9h-2.679v6.664h1.867a.812.812,0,0,0,.614-.224.789.789,0,0,0,.2-.539Zm-.875-5.133v5.126h-.943v-5.126Z" transform="translate(-709.467 -231.763)" fill="#555"/>
|
|
29
|
+
<path id="路径_22157" data-name="路径 22157" d="M701.875,254h-.768l.7,3.647v.018h.772l-.7-3.654Z" transform="translate(-698.246 -250.992)" fill="#555"/>
|
|
30
|
+
</g>
|
|
31
|
+
<g id="组_44412" data-name="组 44412" transform="translate(17.139 0.18)">
|
|
32
|
+
<path id="路径_22158" data-name="路径 22158" d="M753.1,231.772h-5.61v.737h6.34a.709.709,0,0,0-.73-.737Z" transform="translate(-747.075 -231.772)" fill="#555"/>
|
|
33
|
+
<path id="路径_22159" data-name="路径 22159" d="M751.571,252.082v-.768h-7.063v.768h1.8l-1.8,3.232-.019.033h6.988l-1.178-2.625-.7.525.62,1.368h-4.4l1.423-2.523Z" transform="translate(-744.489 -248.678)" fill="#555"/>
|
|
34
|
+
</g>
|
|
35
|
+
<g id="组_44413" data-name="组 44413" transform="translate(25.586 0)">
|
|
36
|
+
<path id="路径_22160" data-name="路径 22160" d="M819.715,265.124v.654l3.75.436v-.665l-3.726-.422Z" transform="translate(-818.012 -260.446)" fill="#555"/>
|
|
37
|
+
<path id="路径_22161" data-name="路径 22161" d="M817.38,242.67l2.536.3h.024v-.639l-2.424-.3,1.08-.4,2.291.822v-.681l-1.37-.488,1.074-.4v-1.29H817l-.609.574v1.134l1.05-1.039h2.24v.259l-1.12.425-1-.362-.536.488.619.222-1.246.473h-.014v.681l.982-.368Z" transform="translate(-815.144 -238.355)" fill="#555"/>
|
|
38
|
+
<path id="路径_22162" data-name="路径 22162" d="M814.132,236.6v-6.125h-7v6.837h6.146a.875.875,0,0,0,.672-.238.687.687,0,0,0,.182-.474Zm-.875-5.414v5.425h-5.25v-5.425Z" transform="translate(-807.132 -230.476)" fill="#555"/>
|
|
39
|
+
</g>
|
|
40
|
+
</g>
|
|
41
|
+
<path id="云" d="M19.886,20.328a14.958,14.958,0,0,0,3.968.337s7.037-.337,6.67-6.377-7.264-5-7.264-5,.017-7.181-6.854-7.181S9.7,9.292,9.7,9.292s-6.885-1.04-7.262,5c-.394,6.278,6.821,6.278,6.821,6.278-.338-.04,10.485,1.349,10.967-9.8A5.948,5.948,0,0,0,16.4,9.713c-2.64,0-3.663,1.05-3.663,1.05.161,3.683,1.392,6,2.978,7.461A5.007,5.007,0,0,1,14.427,19a2.885,2.885,0,0,1-1.14.386c-1.955-2.023-3.25-5.2-2.853-10.148a11.867,11.867,0,0,1,5.96-1.652,12.3,12.3,0,0,1,6.031,1.647C23.676,24.875,7.98,22.8,7.98,22.8S-.1,22.361,0,14.518,7.75,7.168,7.75,7.168,8.342,0,16.405,0s8.625,7.168,8.625,7.168,7.646-.5,7.749,7.348S24.8,22.8,24.8,22.8a17.752,17.752,0,0,1-7.215-.757s.687-.416,1.258-.843a11.916,11.916,0,0,0,1.038-.875Z" transform="translate(0 0.674)" fill="url(#linear-gradient)"/>
|
|
42
|
+
</g>
|
|
43
|
+
</g>
|
|
44
|
+
<path id="路径_23779" data-name="路径 23779" d="M2.028-12.428H14.385v2.2H2.028ZM.562-7.491H15.853v2.2h-7.4A46.32,46.32,0,0,1,4.736-.787q3.353-.024,6.457-.191L9.028-3.638,10.953-4.8q3.131,3.535,4.882,5.892L13.753,2.428q-.35-.525-.9-1.274a92.832,92.832,0,0,0-10.773.668L1.057-.294a21.447,21.447,0,0,0,4.394-5H.562ZM16.854-9.472l2.914-.406q-1.242-.462-2.31-.772l.406-.971h-1.09v-1.146h7.278v4.252H22.141v-3.106H18.359q1.178.35,2.508.859l-.35.78,1.249-.191q-.016.574.016,1.225-2.151.287-4.714.749Zm7.724-.08,2.739-.334q-1.265-.478-2.357-.8l.415-.94h-.843v-1.146h7.087v4.252H29.706v-3.106H25.924q1.433.437,2.46.843l-.374.8,1.314-.175a6.452,6.452,0,0,0,.1,1.178q-2.007.222-4.539.653Zm-7.9,8.528H20.6v-.668H17.411V-2.84H20.6v-.668h-2.66v-4.7h13.09v4.7H28.288v.668h3.139v1.146H28.288v.668h3.934V.2H26.727q2.667.406,5.239.892l-.605,1.4L25.438,1.267,26.019.2H22.834L23.4,1.218q-2.866.765-5.813,1.321-.332-.747-.682-1.447Q19.42.711,21.849.2H16.679ZM29.006-7.061H25.478v.684H29Zm-9.046.684h3.5v-.684h-3.5Zm9.046,1.72V-5.34H25.478v.684Zm-9.046,0h3.5V-5.34h-3.5Zm2.676,1.815h3.615V-3.51H22.634Zm0,1.815h3.615V-1.7H22.634Zm12.008-11.4H47v2.2H34.643ZM33.178-7.491H48.465v2.2h-7.4A46.319,46.319,0,0,1,37.35-.787Q40.7-.812,43.807-.978l-2.158-2.66L43.56-4.8Q46.7-1.265,48.45,1.092L46.364,2.428q-.35-.525-.9-1.274a92.832,92.832,0,0,0-10.773.668L33.673-.3a21.448,21.448,0,0,0,4.4-5H33.178Zm16.467-1.5h.828q-.366-.478-1.274-1.449a7.845,7.845,0,0,0,2.516-2.9h2.2q-.255.574-.541,1.1h4.109v1.514H54.421q.478.525.94,1.05l-.924.684h1.545q-.144-.415-.287-.843l1.8-.3q.175.558.35,1.146h3.663q-.653-.828-1.146-1.354l.493-.381h-.717a11.2,11.2,0,0,1-1.178,1.545q-.462-.35-1.689-1.162a10.4,10.4,0,0,0,1.879-2.994h2.214a11.255,11.255,0,0,1-.43,1.1h3.675v1.514h-2.38q.43.462.843.924l-1.115.812h2.6v2.292H62.383v-.679H51.81V-6.7H49.643ZM61.4-.451H53.3V.473h8.09Zm-.509-3.631v-.859H53.3v.859Zm-10.383-4.9h3.216q-.43-.541-1-1.225l.653-.509h-1.05A10.425,10.425,0,0,1,50.5-8.987ZM62.959-6.4v3.79H53.3v.7h10.16v4.34H61.4V1.92H53.3v.507H51.141V-6.408ZM65.666-4.73h6.475v-5.845H66.366v-2.1H80.444v2.1H74.566V-4.73h6.576v2.1H74.566V2.323h-2.42V-2.63H65.671Zm.924-4.412,1.673-1.13q1.529,1.783,3.169,3.95L69.507-5.048q-1.613-2.443-2.919-4.1Zm13.886.159Q78.787-6.959,76.909-5L75.282-6.322a36.344,36.344,0,0,0,3.313-3.934Zm12.787-2.436q2.45,2.389,4.539,4.7l-1.767,1.5L94.792-6.688q-6.848.112-11.9.574l-.843-1.879A27.464,27.464,0,0,0,88.26-13.5l2.086,1.13Q88.085-10.24,85.568-8.2l7.66-.271L91.6-10.256ZM83.547,2.366V-5.1H95.809V2.372H93.644v-.94H85.713v.94Zm10.1-5.495H85.713V-.547h7.931Z" transform="translate(43.836 30.683)" fill="#555"/>
|
|
45
|
+
</g>
|
|
46
|
+
</g>
|
|
47
|
+
</svg>
|
|
Binary file
|