ace-front-end 1.0.0
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/.editorconfig +8 -0
- package/.hintrc +9 -0
- package/.run/build-app-bolts.run.xml +12 -0
- package/.run/build-app-manager-ui.run.xml +12 -0
- package/.run/build-cloud-shell.run.xml +12 -0
- package/.run/build-element-plus-component.run.xml +12 -0
- package/.run/build-monnolith-shell.run.xml +12 -0
- package/.run/dev-app-manager.run.xml +12 -0
- package/.run/dev-monolith-shell.run.xml +12 -0
- package/README.md +59 -0
- package/ace-app-bolts-ui/.eslintrc.cjs +15 -0
- package/ace-app-bolts-ui/.vscode/extensions.json +3 -0
- package/ace-app-bolts-ui/.vscode/settings.json +27 -0
- package/ace-app-bolts-ui/folder-alias.json +1 -0
- package/ace-app-bolts-ui/package.json +76 -0
- package/ace-app-bolts-ui/src/api/apiCache.ts +26 -0
- package/ace-app-bolts-ui/src/api/appService/aceInstall.ts +29 -0
- package/ace-app-bolts-ui/src/api/appService/appAdmin.ts +58 -0
- package/ace-app-bolts-ui/src/api/appService/appInstance.ts +186 -0
- package/ace-app-bolts-ui/src/api/appService/appMessage.ts +123 -0
- package/ace-app-bolts-ui/src/api/appService/appRoute.ts +128 -0
- package/ace-app-bolts-ui/src/api/appService/appService.ts +135 -0
- package/ace-app-bolts-ui/src/api/appService/appSetting.ts +163 -0
- package/ace-app-bolts-ui/src/api/appService/appSettingGroup.ts +129 -0
- package/ace-app-bolts-ui/src/api/appService/appliedPasswordPolicy.ts +77 -0
- package/ace-app-bolts-ui/src/api/appService/eventCompensation.ts +61 -0
- package/ace-app-bolts-ui/src/api/appService/externalApp.ts +209 -0
- package/ace-app-bolts-ui/src/api/auditService/auditLog.ts +63 -0
- package/ace-app-bolts-ui/src/api/bizFlow/flowComment.ts +76 -0
- package/ace-app-bolts-ui/src/api/bizFlow/flowDefinition.ts +321 -0
- package/ace-app-bolts-ui/src/api/bizFlow/taskQuery.ts +91 -0
- package/ace-app-bolts-ui/src/api/domainModel/aggregate.ts +107 -0
- package/ace-app-bolts-ui/src/api/domainModel/command.ts +257 -0
- package/ace-app-bolts-ui/src/api/domainModel/constraint.ts +101 -0
- package/ace-app-bolts-ui/src/api/domainModel/dataScope.ts +84 -0
- package/ace-app-bolts-ui/src/api/domainModel/dataSource.ts +194 -0
- package/ace-app-bolts-ui/src/api/domainModel/dto.ts +243 -0
- package/ace-app-bolts-ui/src/api/domainModel/dtoConstraint.ts +101 -0
- package/ace-app-bolts-ui/src/api/domainModel/entity.ts +207 -0
- package/ace-app-bolts-ui/src/api/domainModel/enum.ts +170 -0
- package/ace-app-bolts-ui/src/api/domainModel/indexDef.ts +82 -0
- package/ace-app-bolts-ui/src/api/domainModel/query.ts +292 -0
- package/ace-app-bolts-ui/src/api/domainModel/release.ts +97 -0
- package/ace-app-bolts-ui/src/api/fileService/fileConfiguration.ts +161 -0
- package/ace-app-bolts-ui/src/api/fileService/fileStorage.ts +165 -0
- package/ace-app-bolts-ui/src/api/fileService/files.ts +207 -0
- package/ace-app-bolts-ui/src/api/idGenService/leafSegment.ts +55 -0
- package/ace-app-bolts-ui/src/api/idGenService/stringIdTemplate.ts +170 -0
- package/ace-app-bolts-ui/src/api/orgService/customGroup.ts +73 -0
- package/ace-app-bolts-ui/src/api/orgService/department.ts +186 -0
- package/ace-app-bolts-ui/src/api/orgService/departmentAttrDef.ts +90 -0
- package/ace-app-bolts-ui/src/api/orgService/group.ts +249 -0
- package/ace-app-bolts-ui/src/api/orgService/realm.ts +70 -0
- package/ace-app-bolts-ui/src/api/orgService/resourceScope.ts +132 -0
- package/ace-app-bolts-ui/src/api/orgService/role.ts +145 -0
- package/ace-app-bolts-ui/src/api/orgService/roleCategory.ts +77 -0
- package/ace-app-bolts-ui/src/api/orgService/session.ts +74 -0
- package/ace-app-bolts-ui/src/api/orgService/user.ts +1187 -0
- package/ace-app-bolts-ui/src/api/orgService/userAttrDef.ts +86 -0
- package/ace-app-bolts-ui/src/api/orgService/userAvatar.ts +32 -0
- package/ace-app-bolts-ui/src/api/pushService/MessageTemplate.ts +109 -0
- package/ace-app-bolts-ui/src/api/pushService/MessengerTemplateMap.ts +68 -0
- package/ace-app-bolts-ui/src/api/pushService/channel.ts +109 -0
- package/ace-app-bolts-ui/src/api/pushService/messenger.ts +82 -0
- package/ace-app-bolts-ui/src/api/pushService/sockJs.ts +43 -0
- package/ace-app-bolts-ui/src/api/pushService/soketIo.ts +50 -0
- package/ace-app-bolts-ui/src/api/pushService/userSubscription.ts +62 -0
- package/ace-app-bolts-ui/src/global.ts +238 -0
- package/ace-app-bolts-ui/src/http/IAceAxios.ts +183 -0
- package/ace-app-bolts-ui/src/http/types.ts +154 -0
- package/ace-app-bolts-ui/src/http/useAxios.ts +42 -0
- package/ace-app-bolts-ui/src/http/useLoading.ts +18 -0
- package/ace-app-bolts-ui/src/index.ts +250 -0
- package/ace-app-bolts-ui/src/locales/i18nLoader.ts +42 -0
- package/ace-app-bolts-ui/src/locales/setupI18n.ts +77 -0
- package/ace-app-bolts-ui/src/locales/useLocale.ts +70 -0
- package/ace-app-bolts-ui/src/models/AppBridge.ts +68 -0
- package/ace-app-bolts-ui/src/models/EntityBase.ts +10 -0
- package/ace-app-bolts-ui/src/models/LinkTreeNodeAddParam.ts +9 -0
- package/ace-app-bolts-ui/src/models/Page.ts +49 -0
- package/ace-app-bolts-ui/src/models/PageModel.ts +30 -0
- package/ace-app-bolts-ui/src/models/ProjectedSortPathTreeNode.ts +21 -0
- package/ace-app-bolts-ui/src/models/ProjectedUser.ts +17 -0
- package/ace-app-bolts-ui/src/models/Roles.ts +223 -0
- package/ace-app-bolts-ui/src/models/SortPathTreeNode.ts +21 -0
- package/ace-app-bolts-ui/src/models/SortPathTreeNodeAddParam.ts +13 -0
- package/ace-app-bolts-ui/src/models/SysSetting.ts +35 -0
- package/ace-app-bolts-ui/src/models/SystemSetting.ts +0 -0
- package/ace-app-bolts-ui/src/models/appService/AceInstallInfo.ts +43 -0
- package/ace-app-bolts-ui/src/models/appService/AppAdmin.ts +71 -0
- package/ace-app-bolts-ui/src/models/appService/AppInstance.ts +210 -0
- package/ace-app-bolts-ui/src/models/appService/AppMessage.ts +64 -0
- package/ace-app-bolts-ui/src/models/appService/AppRouter.ts +121 -0
- package/ace-app-bolts-ui/src/models/appService/AppService.ts +113 -0
- package/ace-app-bolts-ui/src/models/appService/AppSettingGroup.ts +81 -0
- package/ace-app-bolts-ui/src/models/appService/AppSettings.ts +163 -0
- package/ace-app-bolts-ui/src/models/appService/AppliedPasswordPolicy.ts +87 -0
- package/ace-app-bolts-ui/src/models/appService/ExternalApp.ts +272 -0
- package/ace-app-bolts-ui/src/models/appService/FailedEvent.ts +85 -0
- package/ace-app-bolts-ui/src/models/auditService/Audit.ts +160 -0
- package/ace-app-bolts-ui/src/models/bizFlow/CandidateNode.ts +43 -0
- package/ace-app-bolts-ui/src/models/bizFlow/FlowCommentDto.ts +45 -0
- package/ace-app-bolts-ui/src/models/bizFlow/FlowDefinitionDto.ts +80 -0
- package/ace-app-bolts-ui/src/models/bizFlow/FlowInstanceDto.ts +84 -0
- package/ace-app-bolts-ui/src/models/bizFlow/FlowProcessRequest.ts +80 -0
- package/ace-app-bolts-ui/src/models/bizFlow/FlowVariableValueDto.ts +21 -0
- package/ace-app-bolts-ui/src/models/bizFlow/NodeInstanceDto.ts +56 -0
- package/ace-app-bolts-ui/src/models/bizFlow/NodeLinkDto.ts +29 -0
- package/ace-app-bolts-ui/src/models/bizFlow/ProjectedFlowDefinitionDto.ts +62 -0
- package/ace-app-bolts-ui/src/models/bizFlow/ReplyCommentCommand.ts +47 -0
- package/ace-app-bolts-ui/src/models/bizFlow/SearchFlowDefinitionDto.ts +29 -0
- package/ace-app-bolts-ui/src/models/bizFlow/TaskInstanceDto.ts +57 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/AbstractNode.ts +37 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/CancelCheckoutFlowDefinitionCommand.ts +18 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/CheckinFlowDefinitionCommand.ts +26 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/CheckoutFlowDefinitionCommand.ts +18 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/CreateFlowDefinitionCommand.ts +58 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/DeleteWorkflowDefinitionCommand.ts +18 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/EndNode.ts +24 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/Flow.ts +95 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/ForwardCriteria.ts +24 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/Link.ts +40 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/StartNode.ts +82 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/TaskNode.ts +180 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/UpdateFlowModelCommand.ts +28 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/Variable.ts +33 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/index.ts +24 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BaseParty.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyAll.ts +16 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyByGroup.ts +23 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyByUserAttribute.ts +29 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyCustomFilter.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyDeptSpecifiedByVariable.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyEntityOfDeptSpecifiedByVariable.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyHasRole.ts +23 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyInDept.ts +23 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyInInitiatorDept.ts +16 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyInInitiatorEntityDept.ts +16 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyInitiator.ts +16 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyOfElResult.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyOfPrevNode.ts +16 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyOfPrevOwnerDept.ts +16 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyOfPrevOwnerEntityDept.ts +16 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartyOfSpecificNode.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartySpecific.ts +23 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartySpecificNodeDept.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartySpecificNodeEntityDept.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartySpecifiedByGroupVariable.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/BasePartySpecifiedByVariable.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/ConditionalParty.ts +29 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/MergeParty.ts +25 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/Party.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/party/index.ts +31 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/AbstractCompareRule.ts +28 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/AndOrRule.ts +28 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/BizRule.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/ExpressionRule.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/IsNullOrEmptyRule.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/NotRule.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/NumberCompareRule.ts +21 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/ReferencedRule.ts +20 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/StringCompareRule.ts +21 -0
- package/ace-app-bolts-ui/src/models/bizFlow/definition/rule/index.ts +15 -0
- package/ace-app-bolts-ui/src/models/bizFlow/enums.ts +219 -0
- package/ace-app-bolts-ui/src/models/bizFlow/index.ts +21 -0
- package/ace-app-bolts-ui/src/models/domainModel/index.ts +4145 -0
- package/ace-app-bolts-ui/src/models/expr/ExpressionBuilder.ts +654 -0
- package/ace-app-bolts-ui/src/models/expr/Interfaces.ts +1081 -0
- package/ace-app-bolts-ui/src/models/expr/impls/agg.ts +192 -0
- package/ace-app-bolts-ui/src/models/expr/impls/any.ts +92 -0
- package/ace-app-bolts-ui/src/models/expr/impls/base.ts +24 -0
- package/ace-app-bolts-ui/src/models/expr/impls/bool.ts +321 -0
- package/ace-app-bolts-ui/src/models/expr/impls/collection.ts +14 -0
- package/ace-app-bolts-ui/src/models/expr/impls/constant.ts +85 -0
- package/ace-app-bolts-ui/src/models/expr/impls/dateTime.ts +59 -0
- package/ace-app-bolts-ui/src/models/expr/impls/nullfun.ts +170 -0
- package/ace-app-bolts-ui/src/models/expr/impls/num.ts +75 -0
- package/ace-app-bolts-ui/src/models/expr/impls/path.ts +317 -0
- package/ace-app-bolts-ui/src/models/expr/impls/strfun.ts +112 -0
- package/ace-app-bolts-ui/src/models/expr/impls/subQuery.ts +211 -0
- package/ace-app-bolts-ui/src/models/expr/impls/when.ts +125 -0
- package/ace-app-bolts-ui/src/models/expr/mixins.ts +1946 -0
- package/ace-app-bolts-ui/src/models/expr/querySpecification.ts +136 -0
- package/ace-app-bolts-ui/src/models/fileService/index.ts +1060 -0
- package/ace-app-bolts-ui/src/models/idGenService/LeafSegment.ts +48 -0
- package/ace-app-bolts-ui/src/models/idGenService/StringIdTemplate.ts +199 -0
- package/ace-app-bolts-ui/src/models/orgService/CustomGroup.ts +62 -0
- package/ace-app-bolts-ui/src/models/orgService/Department.ts +125 -0
- package/ace-app-bolts-ui/src/models/orgService/DepartmentAttributeDef.ts +121 -0
- package/ace-app-bolts-ui/src/models/orgService/Group.ts +244 -0
- package/ace-app-bolts-ui/src/models/orgService/Realm.ts +34 -0
- package/ace-app-bolts-ui/src/models/orgService/Role.ts +284 -0
- package/ace-app-bolts-ui/src/models/orgService/Session.ts +33 -0
- package/ace-app-bolts-ui/src/models/orgService/User.ts +650 -0
- package/ace-app-bolts-ui/src/models/orgService/UserAttributeDef.ts +53 -0
- package/ace-app-bolts-ui/src/models/orgService/dsl.ts +254 -0
- package/ace-app-bolts-ui/src/models/pushService/Messenger.ts +519 -0
- package/ace-app-bolts-ui/src/settings/cacheSetting.ts +20 -0
- package/ace-app-bolts-ui/src/settings/localeSetting.ts +133 -0
- package/ace-app-bolts-ui/src/stores/index.ts +19 -0
- package/ace-app-bolts-ui/src/stores/loginUserStore.ts +35 -0
- package/ace-app-bolts-ui/src/stores/useEnums.ts +45 -0
- package/ace-app-bolts-ui/src/utils/LRUCache.ts +52 -0
- package/ace-app-bolts-ui/src/utils/cache/index.ts +50 -0
- package/ace-app-bolts-ui/src/utils/cache/storageCache.ts +124 -0
- package/ace-app-bolts-ui/src/utils/cipher.ts +81 -0
- package/ace-app-bolts-ui/src/utils/common.ts +13 -0
- package/ace-app-bolts-ui/src/utils/treeSort.ts +0 -0
- package/ace-app-bolts-ui/src/vite-env.d.ts +2 -0
- package/ace-app-bolts-ui/tsconfig.json +22 -0
- package/ace-app-bolts-ui/tsconfig.tsbuildinfo +1 -0
- package/ace-app-manager-ui/.env +5 -0
- package/ace-app-manager-ui/.env.development +1 -0
- package/ace-app-manager-ui/.env.production +1 -0
- package/ace-app-manager-ui/.eslintrc.cjs +48 -0
- package/ace-app-manager-ui/README.md +18 -0
- package/ace-app-manager-ui/auto-imports.d.ts +11 -0
- package/ace-app-manager-ui/components.d.ts +118 -0
- package/ace-app-manager-ui/customVitePlugin.d.ts +6 -0
- package/ace-app-manager-ui/customVitePlugin.js +37 -0
- package/ace-app-manager-ui/customVitePlugin.ts +44 -0
- package/ace-app-manager-ui/index.html +12 -0
- package/ace-app-manager-ui/jsconfig.json +19 -0
- package/ace-app-manager-ui/package.json +66 -0
- package/ace-app-manager-ui/src/App.vue +32 -0
- package/ace-app-manager-ui/src/assets/baseData/AppManageMenu.ts +284 -0
- package/ace-app-manager-ui/src/assets/baseData/GlobalManageMenu.ts +75 -0
- package/ace-app-manager-ui/src/assets/logo.png +0 -0
- package/ace-app-manager-ui/src/assets/scss/element/element-var.scss +1117 -0
- package/ace-app-manager-ui/src/assets/scss/element/index.scss +72 -0
- package/ace-app-manager-ui/src/assets/scss/normalize.scss +524 -0
- package/ace-app-manager-ui/src/assets/scss/vars.scss +12 -0
- package/ace-app-manager-ui/src/components/appSelector/Index.vue +23 -0
- package/ace-app-manager-ui/src/components/departmentPicker/index.ts +3 -0
- package/ace-app-manager-ui/src/components/departmentPicker/src/SinglePicker.vue +102 -0
- package/ace-app-manager-ui/src/components/departmentSelector/index.ts +4 -0
- package/ace-app-manager-ui/src/components/departmentSelector/src/SingleSelector.vue +123 -0
- package/ace-app-manager-ui/src/components/departmentSelector/src/consts.ts +2 -0
- package/ace-app-manager-ui/src/components/enumPicker/EnumPicker.vue +57 -0
- package/ace-app-manager-ui/src/components/fieldControl/index.ts +2 -0
- package/ace-app-manager-ui/src/components/fieldControl/src/FieldControl.vue +130 -0
- package/ace-app-manager-ui/src/components/header/ManageHeader.vue +43 -0
- package/ace-app-manager-ui/src/components/icon/JaIcon.vue +50 -0
- package/ace-app-manager-ui/src/components/icon/svg/SvgIcon.vue +56 -0
- package/ace-app-manager-ui/src/components/iconColorPicker/index.ts +7 -0
- package/ace-app-manager-ui/src/components/iconColorPicker/src/IconColorPicker.vue +104 -0
- package/ace-app-manager-ui/src/components/iconColorPicker/src/colorPicker/ColorPicker.vue +128 -0
- package/ace-app-manager-ui/src/components/iconColorPicker/src/colorPicker/baseData/colors.ts +155 -0
- package/ace-app-manager-ui/src/components/iconColorPicker/src/iconPicker/IconPicker.vue +221 -0
- package/ace-app-manager-ui/src/components/iconColorPicker/src/iconPicker/baseData/icons.json +1364 -0
- package/ace-app-manager-ui/src/components/multipleSelector/MultipleSelector.vue +136 -0
- package/ace-app-manager-ui/src/components/pages/AppEnter.vue +358 -0
- package/ace-app-manager-ui/src/components/pages/PageEnter.vue +227 -0
- package/ace-app-manager-ui/src/components/pages/components/topBar.vue +93 -0
- package/ace-app-manager-ui/src/components/realmPicker/index.ts +3 -0
- package/ace-app-manager-ui/src/components/realmPicker/src/RealmPicker.vue +194 -0
- package/ace-app-manager-ui/src/components/realmPicker/src/components/RealmEditor.vue +149 -0
- package/ace-app-manager-ui/src/components/roleSelector/index.ts +3 -0
- package/ace-app-manager-ui/src/components/roleSelector/src/RoleMultiSelector.vue +194 -0
- package/ace-app-manager-ui/src/components/settingValueEditor/ValueEditor.vue +180 -0
- package/ace-app-manager-ui/src/components/subPage/index.ts +3 -0
- package/ace-app-manager-ui/src/components/subPage/src/SubPage.vue +90 -0
- package/ace-app-manager-ui/src/components/userGroupSelector/index.ts +3 -0
- package/ace-app-manager-ui/src/components/userGroupSelector/src/UserGroupMultiSelector.vue +131 -0
- package/ace-app-manager-ui/src/hooks/useAppState.ts +31 -0
- package/ace-app-manager-ui/src/hooks/useDateFormats.ts +34 -0
- package/ace-app-manager-ui/src/hooks/usePageSize.ts +1 -0
- package/ace-app-manager-ui/src/hooks/useRealms.ts +27 -0
- package/ace-app-manager-ui/src/hooks/useUserQuery.ts +133 -0
- package/ace-app-manager-ui/src/init.ts +18 -0
- package/ace-app-manager-ui/src/locales/lang/en/common.json +3 -0
- package/ace-app-manager-ui/src/locales/lang/en/errors.json +42 -0
- package/ace-app-manager-ui/src/locales/lang/en.ts +14 -0
- package/ace-app-manager-ui/src/locales/lang/zh-CN/common.json +218 -0
- package/ace-app-manager-ui/src/locales/lang/zh-CN/errors.json +42 -0
- package/ace-app-manager-ui/src/locales/lang/zh-CN.ts +13 -0
- package/ace-app-manager-ui/src/locales/setupI18n.ts +14 -0
- package/ace-app-manager-ui/src/main.ts +114 -0
- package/ace-app-manager-ui/src/public-path.js +10 -0
- package/ace-app-manager-ui/src/router/index.ts +33 -0
- package/ace-app-manager-ui/src/router/modules/appRoutes.ts +24 -0
- package/ace-app-manager-ui/src/router/modules/demoRoutes.ts +22 -0
- package/ace-app-manager-ui/src/router/routes.ts +690 -0
- package/ace-app-manager-ui/src/stores/index.ts +3 -0
- package/ace-app-manager-ui/src/stores/modules/locale.ts +60 -0
- package/ace-app-manager-ui/src/stores/modules/system.ts +51 -0
- package/ace-app-manager-ui/src/types/ext.d.ts +13 -0
- package/ace-app-manager-ui/src/types/style.d.ts +7 -0
- package/ace-app-manager-ui/src/types/window.d.ts +24 -0
- package/ace-app-manager-ui/src/utils/index.ts +7 -0
- package/ace-app-manager-ui/src/utils/vxeTable.ts +58 -0
- package/ace-app-manager-ui/src/vars.scss +12 -0
- package/ace-app-manager-ui/src/views/appManage/AppManage.vue +266 -0
- package/ace-app-manager-ui/src/views/appManage/appInfo/AppInfo.vue +309 -0
- package/ace-app-manager-ui/src/views/appManage/appRelease/AppRelease.vue +181 -0
- package/ace-app-manager-ui/src/views/appManage/appRelease/components/Editor.vue +253 -0
- package/ace-app-manager-ui/src/views/appManage/appRouter/AppRouter.vue +381 -0
- package/ace-app-manager-ui/src/views/appManage/appRouter/base/index.ts +204 -0
- package/ace-app-manager-ui/src/views/appManage/appRouter/components/Editor.vue +368 -0
- package/ace-app-manager-ui/src/views/appManage/appRouter/components/MenuSelector.vue +12 -0
- package/ace-app-manager-ui/src/views/appManage/assignAppAdmin/AssignAppAdmin.vue +231 -0
- package/ace-app-manager-ui/src/views/appManage/assignAppAdmin/components/Editor.vue +135 -0
- package/ace-app-manager-ui/src/views/appManage/commandDefine/Index.vue +53 -0
- package/ace-app-manager-ui/src/views/appManage/commandDefine/components/CommandEditor.vue +209 -0
- package/ace-app-manager-ui/src/views/appManage/commandDefine/components/CommandParamEditor.vue +246 -0
- package/ace-app-manager-ui/src/views/appManage/commandDefine/components/ConstraintsEditor.vue +239 -0
- package/ace-app-manager-ui/src/views/appManage/commandDefine/components/CreateEntityOperationsEditor.vue +90 -0
- package/ace-app-manager-ui/src/views/appManage/commandDefine/components/LeftPanel.vue +282 -0
- package/ace-app-manager-ui/src/views/appManage/commandDefine/components/RightPanel.vue +249 -0
- package/ace-app-manager-ui/src/views/appManage/components/AppManageLayout.vue +94 -0
- package/ace-app-manager-ui/src/views/appManage/components/GlobalUserGroupSingleSelector.vue +124 -0
- package/ace-app-manager-ui/src/views/appManage/components/SelectRealmForApp.vue +59 -0
- package/ace-app-manager-ui/src/views/appManage/components/ServiceSelector.vue +34 -0
- package/ace-app-manager-ui/src/views/appManage/components/SubMenu.vue +32 -0
- package/ace-app-manager-ui/src/views/appManage/components/UserGroupAuthSFC.vue +453 -0
- package/ace-app-manager-ui/src/views/appManage/components/UserGroupSingleSelector.vue +115 -0
- package/ace-app-manager-ui/src/views/appManage/configDefine/ConfigDefine.vue +392 -0
- package/ace-app-manager-ui/src/views/appManage/configDefine/GroupEditor.vue +133 -0
- package/ace-app-manager-ui/src/views/appManage/configDefine/SettingEditor.vue +231 -0
- package/ace-app-manager-ui/src/views/appManage/dataSourceDefine/DataSourceDefine.vue +198 -0
- package/ace-app-manager-ui/src/views/appManage/dataSourceDefine/createNewDidalog.vue +177 -0
- package/ace-app-manager-ui/src/views/appManage/dataSourceDefine/editDialog.vue +137 -0
- package/ace-app-manager-ui/src/views/appManage/digitalSequence/DigitalSequence.vue +163 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/AppendEntityPropToDtoDlg.vue +351 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/CreateDtoPropFromEntityPropEditor.vue +516 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/CreateFromEntityEditor.vue +217 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/DtoDefine.vue +77 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/components/DtoEditor.vue +144 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/components/LeftPanel.vue +283 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/components/PropertyEditor.vue +586 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/components/RightPanel.vue +574 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/components/uilts.ts +108 -0
- package/ace-app-manager-ui/src/views/appManage/dtoDefine/types.ts +42 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/EntityDefine.vue +80 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/AggregateEditor.vue +93 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/EntityEditor.vue +281 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/ImportEditor.vue +329 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/IndexDefinitionEditor.vue +424 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/LeftPanel.vue +343 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/MonacoEditor.vue +1659 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/PropertyEditor.vue +956 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/RightPanel.vue +660 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/components/monacoEditorType.ts +74 -0
- package/ace-app-manager-ui/src/views/appManage/entityDefine/uilts.ts +108 -0
- package/ace-app-manager-ui/src/views/appManage/enumDefine/EnumDefine.vue +169 -0
- package/ace-app-manager-ui/src/views/appManage/enumDefine/editDialog.vue +266 -0
- package/ace-app-manager-ui/src/views/appManage/extendedDepartmentAttr/ExtendedDepartmentAttr.vue +272 -0
- package/ace-app-manager-ui/src/views/appManage/extendedDepartmentAttr/components/Editor.vue +267 -0
- package/ace-app-manager-ui/src/views/appManage/extendedUserAttr/ExtendedUserAttr.vue +270 -0
- package/ace-app-manager-ui/src/views/appManage/extendedUserAttr/components/Editor.vue +291 -0
- package/ace-app-manager-ui/src/views/appManage/globalUserGroupAuth/GlobalUserGroupAuth.vue +18 -0
- package/ace-app-manager-ui/src/views/appManage/i18nDefine/BundleEditor.vue +77 -0
- package/ace-app-manager-ui/src/views/appManage/i18nDefine/Editor.vue +78 -0
- package/ace-app-manager-ui/src/views/appManage/i18nDefine/I18nDefine.vue +173 -0
- package/ace-app-manager-ui/src/views/appManage/messageTemplate/Editor.vue +191 -0
- package/ace-app-manager-ui/src/views/appManage/messageTemplate/MessageTemplate.vue +142 -0
- package/ace-app-manager-ui/src/views/appManage/numberTemplate/NumberTemplate.vue +166 -0
- package/ace-app-manager-ui/src/views/appManage/numberTemplate/components/Editor.vue +373 -0
- package/ace-app-manager-ui/src/views/appManage/processDefinition/Editor.vue +168 -0
- package/ace-app-manager-ui/src/views/appManage/processDefinition/ProcessDefinition.vue +362 -0
- package/ace-app-manager-ui/src/views/appManage/queryDefine/Index.vue +52 -0
- package/ace-app-manager-ui/src/views/appManage/queryDefine/components/ConstraintsEditor.vue +239 -0
- package/ace-app-manager-ui/src/views/appManage/queryDefine/components/JpqlEditor.vue +229 -0
- package/ace-app-manager-ui/src/views/appManage/queryDefine/components/LeftPanel.vue +282 -0
- package/ace-app-manager-ui/src/views/appManage/queryDefine/components/QueryEditor.vue +294 -0
- package/ace-app-manager-ui/src/views/appManage/queryDefine/components/QueryParamEditor.vue +253 -0
- package/ace-app-manager-ui/src/views/appManage/queryDefine/components/RightPanel.vue +247 -0
- package/ace-app-manager-ui/src/views/appManage/registerMessenger/Editor.vue +108 -0
- package/ace-app-manager-ui/src/views/appManage/registerMessenger/RegisterMessenger.vue +127 -0
- package/ace-app-manager-ui/src/views/appManage/registerPassageway/Editor.vue +117 -0
- package/ace-app-manager-ui/src/views/appManage/registerPassageway/RegisterPassageway.vue +150 -0
- package/ace-app-manager-ui/src/views/appManage/registerUpload/RegisterUpload.vue +267 -0
- package/ace-app-manager-ui/src/views/appManage/registerUpload/components/Editor.vue +425 -0
- package/ace-app-manager-ui/src/views/appManage/registerUpload/components/QuotaEditor.vue +202 -0
- package/ace-app-manager-ui/src/views/appManage/registerUpload/components/WebHookEditor.vue +174 -0
- package/ace-app-manager-ui/src/views/appManage/reverseAuth/ReverseAuth.vue +620 -0
- package/ace-app-manager-ui/src/views/appManage/reverseAuth/components/AddRoleUserDialog.vue +59 -0
- package/ace-app-manager-ui/src/views/appManage/reverseAuth/types.d.ts +7 -0
- package/ace-app-manager-ui/src/views/appManage/roleDefine/RoleDefine.vue +272 -0
- package/ace-app-manager-ui/src/views/appManage/roleDefine/components/CompositeRole.vue +195 -0
- package/ace-app-manager-ui/src/views/appManage/roleDefine/components/RoleEditor.vue +161 -0
- package/ace-app-manager-ui/src/views/appManage/roleDefine/components/RoleSelector.vue +135 -0
- package/ace-app-manager-ui/src/views/appManage/serviceManage/AppServiceManage.vue +204 -0
- package/ace-app-manager-ui/src/views/appManage/serviceManage/components/Editor.vue +153 -0
- package/ace-app-manager-ui/src/views/appManage/thirdPartyAppAuth/ThirdPartyAppAuth.vue +178 -0
- package/ace-app-manager-ui/src/views/appManage/types.ts +1 -0
- package/ace-app-manager-ui/src/views/appManage/userAuth/UserAuth.vue +668 -0
- package/ace-app-manager-ui/src/views/appManage/userGroupAuth/UserGroupAuth.vue +18 -0
- package/ace-app-manager-ui/src/views/appManage/userGroupManage/UserGroupManage.vue +326 -0
- package/ace-app-manager-ui/src/views/appManage/userGroupManage/components/Editor.vue +217 -0
- package/ace-app-manager-ui/src/views/appManage/userGroupManage/components/MemberUsers.vue +101 -0
- package/ace-app-manager-ui/src/views/demo/enumPicker/Index.vue +94 -0
- package/ace-app-manager-ui/src/views/demo/enumPicker/components/enumPicker/index.ts +1 -0
- package/ace-app-manager-ui/src/views/demo/enumPicker/components/enumPicker/src/EnumPicker.vue +103 -0
- package/ace-app-manager-ui/src/views/globalManage/GlobalManage.vue +150 -0
- package/ace-app-manager-ui/src/views/globalManage/aboutPlatform/AboutPlatform.vue +7 -0
- package/ace-app-manager-ui/src/views/globalManage/auditLogsManage/AuditLogDetail.vue +127 -0
- package/ace-app-manager-ui/src/views/globalManage/auditLogsManage/AuditLogsManage.vue +387 -0
- package/ace-app-manager-ui/src/views/globalManage/components/ExtendedAttrRender.vue +311 -0
- package/ace-app-manager-ui/src/views/globalManage/departmentManage/DepartmentManage.vue +336 -0
- package/ace-app-manager-ui/src/views/globalManage/departmentManage/RecycleBin.vue +127 -0
- package/ace-app-manager-ui/src/views/globalManage/departmentManage/components/DefaultGroupEditor.vue +191 -0
- package/ace-app-manager-ui/src/views/globalManage/departmentManage/components/Editor.vue +164 -0
- package/ace-app-manager-ui/src/views/globalManage/eventCompensate/Index.vue +189 -0
- package/ace-app-manager-ui/src/views/globalManage/externalAppManage/ExternalAppManage.vue +305 -0
- package/ace-app-manager-ui/src/views/globalManage/externalAppManage/components/Editor.vue +227 -0
- package/ace-app-manager-ui/src/views/globalManage/externalAppManage/components/RenewSecret.vue +91 -0
- package/ace-app-manager-ui/src/views/globalManage/globalSetting/Editor.vue +177 -0
- package/ace-app-manager-ui/src/views/globalManage/globalSetting/GlobalSettingManage.vue +201 -0
- package/ace-app-manager-ui/src/views/globalManage/globalSetting/types.ts +14 -0
- package/ace-app-manager-ui/src/views/globalManage/passwordManage/PasswordManage.vue +224 -0
- package/ace-app-manager-ui/src/views/globalManage/passwordManage/ValueEditor.vue +92 -0
- package/ace-app-manager-ui/src/views/globalManage/sessionManage/SessionManage.vue +251 -0
- package/ace-app-manager-ui/src/views/globalManage/userGroupManage/UserGroupManage.vue +332 -0
- package/ace-app-manager-ui/src/views/globalManage/userGroupManage/components/Editor.vue +160 -0
- package/ace-app-manager-ui/src/views/globalManage/userGroupManage/components/MemberUsers.vue +100 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/RecycleBin.vue +344 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/UserManage.vue +631 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/components/AttributeEditor.vue +191 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/components/ClassifiedLevelEditor.vue +79 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/components/DepartmentEditor.vue +70 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/components/Editor.vue +475 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/components/ExpirationEditor.vue +82 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/components/MaxSessionEditor.vue +76 -0
- package/ace-app-manager-ui/src/views/globalManage/userManage/components/PasswordEditor.vue +107 -0
- package/ace-app-manager-ui/src/views/home/Index.vue +457 -0
- package/ace-app-manager-ui/src/views/home/components/AppEditor.vue +208 -0
- package/ace-app-manager-ui/src/views/home/components/AppManage.vue +252 -0
- package/ace-app-manager-ui/src/views/home/components/FileRepositoryEditor.vue +292 -0
- package/ace-app-manager-ui/src/views/home/components/FileRepositoryManage.vue +246 -0
- package/ace-app-manager-ui/src/vite-env.d.ts +4 -0
- package/ace-app-manager-ui/tsconfig.json +41 -0
- package/ace-app-manager-ui/tsconfig.node.json +15 -0
- package/ace-app-manager-ui/tsconfig.node.tsbuildinfo +1 -0
- package/ace-app-manager-ui/vite.config.d.ts +2 -0
- package/ace-app-manager-ui/vite.config.js +112 -0
- package/ace-app-manager-ui/vite.config.ts +116 -0
- package/ace-app-manager-ui/vue-image-crop-upload.d.ts +1 -0
- package/ace-cloud-shell-ui/.env +2 -0
- package/ace-cloud-shell-ui/.env.development +5 -0
- package/ace-cloud-shell-ui/.env.production +1 -0
- package/ace-cloud-shell-ui/.eslintrc.js +33 -0
- package/ace-cloud-shell-ui/.vscode/extensions.json +6 -0
- package/ace-cloud-shell-ui/.vscode/settings.json +27 -0
- package/ace-cloud-shell-ui/auto-imports.d.ts +9 -0
- package/ace-cloud-shell-ui/components.d.ts +58 -0
- package/ace-cloud-shell-ui/doc/issue.md +6 -0
- package/ace-cloud-shell-ui/index.html +19 -0
- package/ace-cloud-shell-ui/package.json +72 -0
- package/ace-cloud-shell-ui/public/res/build/shell/favicon.ico +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/.keep +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/index.html +156 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.css +2583 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.eot +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.glyph.json +1 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.less +2585 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.module.less +2567 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.scss +5103 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.styl +2554 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.svg +7633 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.symbol.svg +11 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.ttf +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.woff +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.woff2 +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/symbol.html +17913 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/tags.json +1364 -0
- package/ace-cloud-shell-ui/public/res/build/shell/fonts/remixIcon/unicode.html +175 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/hidden-right-sidebar.png +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/icon/deliver.svg +1 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/icon/logout.svg +28 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/jari-logo-2.png +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/jari-logo.png +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/public-code.png +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/show-right-sidebar.png +0 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/svg/shezhi.svg +11 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/svg/tuichu.svg +13 -0
- package/ace-cloud-shell-ui/public/res/build/shell/images/svg/xiaoxi.svg +13 -0
- package/ace-cloud-shell-ui/src/App.vue +24 -0
- package/ace-cloud-shell-ui/src/assets/base.css +80 -0
- package/ace-cloud-shell-ui/src/assets/element/index.scss +13 -0
- package/ace-cloud-shell-ui/src/assets/element/var.scss +1123 -0
- package/ace-cloud-shell-ui/src/assets/logo.svg +7 -0
- package/ace-cloud-shell-ui/src/assets/main.scss +128 -0
- package/ace-cloud-shell-ui/src/env.d.ts +14 -0
- package/ace-cloud-shell-ui/src/hooks/useSockJs.ts +146 -0
- package/ace-cloud-shell-ui/src/init.ts +21 -0
- package/ace-cloud-shell-ui/src/layout/Main.vue +160 -0
- package/ace-cloud-shell-ui/src/layout/components/AppMenu.vue +329 -0
- package/ace-cloud-shell-ui/src/layout/components/Fillet.vue +105 -0
- package/ace-cloud-shell-ui/src/layout/components/Sidebar.vue +194 -0
- package/ace-cloud-shell-ui/src/locales/lang/en/common.json +17 -0
- package/ace-cloud-shell-ui/src/locales/lang/en/errors.json +42 -0
- package/ace-cloud-shell-ui/src/locales/lang/en/layout.json +8 -0
- package/ace-cloud-shell-ui/src/locales/lang/en/updatePsw.json +9 -0
- package/ace-cloud-shell-ui/src/locales/lang/en/userProfile.json +3 -0
- package/ace-cloud-shell-ui/src/locales/lang/en.ts +14 -0
- package/ace-cloud-shell-ui/src/locales/lang/zh-CN/common.json +17 -0
- package/ace-cloud-shell-ui/src/locales/lang/zh-CN/errors.json +42 -0
- package/ace-cloud-shell-ui/src/locales/lang/zh-CN/layout.json +8 -0
- package/ace-cloud-shell-ui/src/locales/lang/zh-CN/updatePsw.json +9 -0
- package/ace-cloud-shell-ui/src/locales/lang/zh-CN/userProfile.json +3 -0
- package/ace-cloud-shell-ui/src/locales/lang/zh-CN.ts +14 -0
- package/ace-cloud-shell-ui/src/locales/setupI18n.ts +14 -0
- package/ace-cloud-shell-ui/src/main.ts +130 -0
- package/ace-cloud-shell-ui/src/router/index.ts +107 -0
- package/ace-cloud-shell-ui/src/shims-vue.d.ts +21 -0
- package/ace-cloud-shell-ui/src/stores/modules/accessibleApps.ts +149 -0
- package/ace-cloud-shell-ui/src/stores/modules/app.ts +147 -0
- package/ace-cloud-shell-ui/src/stores/modules/appContext.ts +53 -0
- package/ace-cloud-shell-ui/src/stores/modules/locale.ts +63 -0
- package/ace-cloud-shell-ui/src/stores/modules/oidc.ts +71 -0
- package/ace-cloud-shell-ui/src/stores/modules/system.ts +32 -0
- package/ace-cloud-shell-ui/src/types/ext.d.ts +35 -0
- package/ace-cloud-shell-ui/src/types/router.d.ts +12 -0
- package/ace-cloud-shell-ui/src/types/window.d.ts +15 -0
- package/ace-cloud-shell-ui/src/utils/axios/AceAxios.ts +657 -0
- package/ace-cloud-shell-ui/src/utils/axios/cache.ts +11 -0
- package/ace-cloud-shell-ui/src/utils/axios/index.ts +37 -0
- package/ace-cloud-shell-ui/src/utils/microApp/index.ts +6 -0
- package/ace-cloud-shell-ui/src/views/AboutView.vue +140 -0
- package/ace-cloud-shell-ui/src/views/DlgUpdatePassword.vue +120 -0
- package/ace-cloud-shell-ui/src/views/ExtendedAttrRender.vue +311 -0
- package/ace-cloud-shell-ui/src/views/MicroApp.vue +234 -0
- package/ace-cloud-shell-ui/src/views/UserProfileEditor.vue +303 -0
- package/ace-cloud-shell-ui/src/views/WorkBench.vue +10 -0
- package/ace-cloud-shell-ui/src/views/errors/HttpState404.vue +136 -0
- package/ace-cloud-shell-ui/src/views/errors/NoAppAvailable.vue +16 -0
- package/ace-cloud-shell-ui/src/vite-env.d.ts +3 -0
- package/ace-cloud-shell-ui/tsconfig.app.json +33 -0
- package/ace-cloud-shell-ui/tsconfig.app.tsbuildinfo +1 -0
- package/ace-cloud-shell-ui/tsconfig.config.json +23 -0
- package/ace-cloud-shell-ui/tsconfig.config.tsbuildinfo +1 -0
- package/ace-cloud-shell-ui/tsconfig.json +11 -0
- package/ace-cloud-shell-ui/vbuild/vite/proxy.ts +46 -0
- package/ace-cloud-shell-ui/vite.config.ts +119 -0
- package/ace-cloud-shell-ui/vue-image-crop-upload.d.ts +1 -0
- package/ace-element-plus-component/.babelrc +8 -0
- package/ace-element-plus-component/.env +1 -0
- package/ace-element-plus-component/.env.development +3 -0
- package/ace-element-plus-component/.env.production +1 -0
- package/ace-element-plus-component/.vscode/extensions.json +3 -0
- package/ace-element-plus-component/CHANGE.md +16 -0
- package/ace-element-plus-component/README.md +1 -0
- package/ace-element-plus-component/index.html +14 -0
- package/ace-element-plus-component/index.ts +20 -0
- package/ace-element-plus-component/package.json +72 -0
- package/ace-element-plus-component/packages/components/autoComplete/JaAutoComplete.vue +57 -0
- package/ace-element-plus-component/packages/components/autoComplete/README.md +35 -0
- package/ace-element-plus-component/packages/components/autoComplete/index.ts +5 -0
- package/ace-element-plus-component/packages/components/avatar/JaAvatar.vue +137 -0
- package/ace-element-plus-component/packages/components/avatar/README.md +45 -0
- package/ace-element-plus-component/packages/components/avatar/avatarToken.ts +11 -0
- package/ace-element-plus-component/packages/components/avatar/defaultImg.ts +14 -0
- package/ace-element-plus-component/packages/components/avatar/index.ts +7 -0
- package/ace-element-plus-component/packages/components/button/JaButton.vue +76 -0
- package/ace-element-plus-component/packages/components/button/README.md +57 -0
- package/ace-element-plus-component/packages/components/button/index.ts +4 -0
- package/ace-element-plus-component/packages/components/channelPicker/index.ts +7 -0
- package/ace-element-plus-component/packages/components/channelPicker/src/ChannelPicker.vue +43 -0
- package/ace-element-plus-component/packages/components/channelPicker/src/JaChannelPicker.vue +42 -0
- package/ace-element-plus-component/packages/components/checkbox/JaCheckbox.vue +63 -0
- package/ace-element-plus-component/packages/components/checkbox/README.md +21 -0
- package/ace-element-plus-component/packages/components/checkbox/index.ts +4 -0
- package/ace-element-plus-component/packages/components/checkboxGroup/JaCheckboxGroup.vue +56 -0
- package/ace-element-plus-component/packages/components/checkboxGroup/README.md +24 -0
- package/ace-element-plus-component/packages/components/checkboxGroup/index.ts +4 -0
- package/ace-element-plus-component/packages/components/customGroupTree/index.ts +10 -0
- package/ace-element-plus-component/packages/components/customGroupTree/src/customGroupTree.vue +91 -0
- package/ace-element-plus-component/packages/components/datePicker/JaDatePicker.vue +65 -0
- package/ace-element-plus-component/packages/components/datePicker/README.md +21 -0
- package/ace-element-plus-component/packages/components/datePicker/index.ts +4 -0
- package/ace-element-plus-component/packages/components/departmentPicker/index.ts +4 -0
- package/ace-element-plus-component/packages/components/departmentPicker/src/DepartmentPicker.vue +107 -0
- package/ace-element-plus-component/packages/components/departmentPicker/src/consts.ts +2 -0
- package/ace-element-plus-component/packages/components/departmentTree/index.ts +10 -0
- package/ace-element-plus-component/packages/components/departmentTree/src/departmentTree.vue +135 -0
- package/ace-element-plus-component/packages/components/dropdownButton/JaDropdownButton.vue +77 -0
- package/ace-element-plus-component/packages/components/dropdownButton/README.md +30 -0
- package/ace-element-plus-component/packages/components/dropdownButton/index.ts +4 -0
- package/ace-element-plus-component/packages/components/enumList/EnumListInput.vue +107 -0
- package/ace-element-plus-component/packages/components/enumList/JaEnumList.vue +39 -0
- package/ace-element-plus-component/packages/components/enumList/index.ts +7 -0
- package/ace-element-plus-component/packages/components/enumPicker/index.ts +5 -0
- package/ace-element-plus-component/packages/components/enumPicker/src/EnumPicker.vue +103 -0
- package/ace-element-plus-component/packages/components/flowShell/FlowFormShell.vue +628 -0
- package/ace-element-plus-component/packages/components/flowShell/index.ts +5 -0
- package/ace-element-plus-component/packages/components/form/JaForm.vue +186 -0
- package/ace-element-plus-component/packages/components/form/README.md +30 -0
- package/ace-element-plus-component/packages/components/form/index.ts +5 -0
- package/ace-element-plus-component/packages/components/form/types.ts +4 -0
- package/ace-element-plus-component/packages/components/formItem/JaFormItem.vue +123 -0
- package/ace-element-plus-component/packages/components/formItem/README.md +28 -0
- package/ace-element-plus-component/packages/components/formItem/index.ts +4 -0
- package/ace-element-plus-component/packages/components/index.ts +35 -0
- package/ace-element-plus-component/packages/components/input/JaInput.vue +107 -0
- package/ace-element-plus-component/packages/components/input/README.md +23 -0
- package/ace-element-plus-component/packages/components/input/index.ts +4 -0
- package/ace-element-plus-component/packages/components/inputI18n/I18nBundleEditor.vue +76 -0
- package/ace-element-plus-component/packages/components/inputI18n/InputI18n.vue +152 -0
- package/ace-element-plus-component/packages/components/inputI18n/JaInputI18n.vue +50 -0
- package/ace-element-plus-component/packages/components/inputI18n/index.ts +8 -0
- package/ace-element-plus-component/packages/components/inputNumber/JaInputNumber.vue +79 -0
- package/ace-element-plus-component/packages/components/inputNumber/README.md +21 -0
- package/ace-element-plus-component/packages/components/inputNumber/index.ts +4 -0
- package/ace-element-plus-component/packages/components/mapItemList/JaMapItemList.vue +35 -0
- package/ace-element-plus-component/packages/components/mapItemList/MapItemListInput.vue +191 -0
- package/ace-element-plus-component/packages/components/mapItemList/index.ts +7 -0
- package/ace-element-plus-component/packages/components/numberList/JaNumberList.vue +36 -0
- package/ace-element-plus-component/packages/components/numberList/NumberListInput.vue +111 -0
- package/ace-element-plus-component/packages/components/numberList/index.ts +7 -0
- package/ace-element-plus-component/packages/components/properyPicker/JaPropertyPicker.vue +38 -0
- package/ace-element-plus-component/packages/components/properyPicker/PropertyPicker.vue +310 -0
- package/ace-element-plus-component/packages/components/properyPicker/index.ts +7 -0
- package/ace-element-plus-component/packages/components/radioGroup/JaRadioGroup.vue +61 -0
- package/ace-element-plus-component/packages/components/radioGroup/README.md +24 -0
- package/ace-element-plus-component/packages/components/radioGroup/index.ts +4 -0
- package/ace-element-plus-component/packages/components/rolePicker/RoleCategorySelector.vue +154 -0
- package/ace-element-plus-component/packages/components/rolePicker/RoleEditor.vue +138 -0
- package/ace-element-plus-component/packages/components/rolePicker/RolePicker.vue +44 -0
- package/ace-element-plus-component/packages/components/rolePicker/RolePickerRaw.vue +56 -0
- package/ace-element-plus-component/packages/components/rolePicker/baseRolePicker.vue +84 -0
- package/ace-element-plus-component/packages/components/rolePicker/index.ts +13 -0
- package/ace-element-plus-component/packages/components/scrollbar/README.md +23 -0
- package/ace-element-plus-component/packages/components/scrollbar/Scrollbar.vue +100 -0
- package/ace-element-plus-component/packages/components/scrollbar/index.ts +5 -0
- package/ace-element-plus-component/packages/components/scrollbar/utils.ts +17 -0
- package/ace-element-plus-component/packages/components/select/JaSelect.vue +60 -0
- package/ace-element-plus-component/packages/components/select/README.md +24 -0
- package/ace-element-plus-component/packages/components/select/index.ts +4 -0
- package/ace-element-plus-component/packages/components/stringList/JaStringList.vue +36 -0
- package/ace-element-plus-component/packages/components/stringList/StringListInput.vue +96 -0
- package/ace-element-plus-component/packages/components/stringList/index.ts +7 -0
- package/ace-element-plus-component/packages/components/switch/JaSwitch.vue +61 -0
- package/ace-element-plus-component/packages/components/switch/README.md +21 -0
- package/ace-element-plus-component/packages/components/switch/index.ts +4 -0
- package/ace-element-plus-component/packages/components/timePicker/JaTimePicker.vue +65 -0
- package/ace-element-plus-component/packages/components/timePicker/README.md +21 -0
- package/ace-element-plus-component/packages/components/timePicker/index.ts +5 -0
- package/ace-element-plus-component/packages/components/tip/README.md +20 -0
- package/ace-element-plus-component/packages/components/tip/index.ts +4 -0
- package/ace-element-plus-component/packages/components/tip/src/AceTip.vue +51 -0
- package/ace-element-plus-component/packages/components/upload/FilePreviewer.vue +245 -0
- package/ace-element-plus-component/packages/components/upload/JaUploader.vue +72 -0
- package/ace-element-plus-component/packages/components/upload/README.md +24 -0
- package/ace-element-plus-component/packages/components/upload/index.ts +8 -0
- package/ace-element-plus-component/packages/components/upload/pdf-viewer/PdfViewerModal.vue +32 -0
- package/ace-element-plus-component/packages/components/upload/types.ts +4 -0
- package/ace-element-plus-component/packages/components/upload/uploader-locale-zh-cn.ts +223 -0
- package/ace-element-plus-component/packages/components/upload/uploader.vue +876 -0
- package/ace-element-plus-component/packages/components/userGroupPicker/index.ts +4 -0
- package/ace-element-plus-component/packages/components/userGroupPicker/src/UserGroupPicker.vue +94 -0
- package/ace-element-plus-component/packages/components/userGroupTree/index.ts +10 -0
- package/ace-element-plus-component/packages/components/userGroupTree/src/userGroupTree.vue +193 -0
- package/ace-element-plus-component/packages/components/userPicker/index.ts +10 -0
- package/ace-element-plus-component/packages/components/userPicker/src/CustomGroupManager.vue +189 -0
- package/ace-element-plus-component/packages/components/userPicker/src/JaUserList.vue +328 -0
- package/ace-element-plus-component/packages/components/userPicker/src/JaUserPicker.vue +40 -0
- package/ace-element-plus-component/packages/components/userPicker/src/UserPicker.vue +515 -0
- package/ace-element-plus-component/packages/components/userSelectDialog/index.ts +6 -0
- package/ace-element-plus-component/packages/components/userSelectDialog/src/userSelectDialog.vue +499 -0
- package/ace-element-plus-component/packages/components/userTag/UserInfoTag.vue +419 -0
- package/ace-element-plus-component/packages/components/userTag/index.ts +6 -0
- package/ace-element-plus-component/packages/components/userTag/sharedAxios.ts +8 -0
- package/ace-element-plus-component/packages/directives/auth/index.ts +41 -0
- package/ace-element-plus-component/packages/directives/autofocus/index.ts +29 -0
- package/ace-element-plus-component/packages/directives/index.ts +10 -0
- package/ace-element-plus-component/packages/directives/shortcut/index.ts +192 -0
- package/ace-element-plus-component/packages/hooks/useAppInstances.ts +130 -0
- package/ace-element-plus-component/packages/hooks/useBackendValidations.ts +81 -0
- package/ace-element-plus-component/packages/hooks/useBridage.ts +157 -0
- package/ace-element-plus-component/packages/hooks/useClassificationLevels.ts +86 -0
- package/ace-element-plus-component/packages/hooks/useConstraintProviders.ts +36 -0
- package/ace-element-plus-component/packages/hooks/useDateTimeShortCuts.ts +65 -0
- package/ace-element-plus-component/packages/hooks/useEntities.ts +44 -0
- package/ace-element-plus-component/packages/hooks/useEntityPropDataTypes.ts +37 -0
- package/ace-element-plus-component/packages/hooks/useFileConfigurations.ts +41 -0
- package/ace-element-plus-component/packages/hooks/useGroups.ts +81 -0
- package/ace-element-plus-component/packages/hooks/useNumberTemplates.ts +43 -0
- package/ace-element-plus-component/packages/hooks/useProperties.ts +44 -0
- package/ace-element-plus-component/packages/hooks/useRealms.ts +28 -0
- package/ace-element-plus-component/packages/hooks/useRoleCategories.ts +42 -0
- package/ace-element-plus-component/packages/hooks/useRoles.ts +44 -0
- package/ace-element-plus-component/packages/hooks/useRouteableVisible.ts +35 -0
- package/ace-element-plus-component/packages/hooks/useTreeData.ts +45 -0
- package/ace-element-plus-component/packages/hooks/useUserRefQuery.ts +232 -0
- package/ace-element-plus-component/packages/index.ts +34 -0
- package/ace-element-plus-component/packages/list.json +8 -0
- package/ace-element-plus-component/packages/types/custom.d.ts +13 -0
- package/ace-element-plus-component/packages/types/window.d.ts +16 -0
- package/ace-element-plus-component/packages/utils/formUtils.ts +57 -0
- package/ace-element-plus-component/packages/utils/install.ts +43 -0
- package/ace-element-plus-component/packages/utils/objectUtils.ts +31 -0
- package/ace-element-plus-component/public/vite.svg +1 -0
- package/ace-element-plus-component/theme-style/fonts/iconfont.js +1 -0
- package/ace-element-plus-component/theme-style/fonts/iconfont.json +5196 -0
- package/ace-element-plus-component/theme-style/fonts/iconfont.ttf +0 -0
- package/ace-element-plus-component/theme-style/fonts/iconfont.woff +0 -0
- package/ace-element-plus-component/theme-style/fonts/iconfont.woff2 +0 -0
- package/ace-element-plus-component/theme-style/index.scss +11 -0
- package/ace-element-plus-component/theme-style/styles/element-plus-var.scss +1419 -0
- package/ace-element-plus-component/theme-style/styles/iconfont.css +2979 -0
- package/ace-element-plus-component/theme-style/styles/reset.scss +0 -0
- package/ace-element-plus-component/theme-style/styles/theme-var.scss +72 -0
- package/ace-element-plus-component/theme-style/styles/transition.scss +122 -0
- package/ace-element-plus-component/tsconfig.json +42 -0
- package/ace-element-plus-component/tsconfig.node.json +9 -0
- package/ace-element-plus-component/tsconfig.node.tsbuildinfo +1 -0
- package/ace-element-plus-component/vite.config.d.ts +2 -0
- package/ace-element-plus-component/vite.config.js +55 -0
- package/ace-element-plus-component/vite.config.ts +59 -0
- package/ace-install-system-ui/.env +2 -0
- package/ace-install-system-ui/.env.development +5 -0
- package/ace-install-system-ui/.env.production +1 -0
- package/ace-install-system-ui/.eslintrc.cjs +18 -0
- package/ace-install-system-ui/CHANGE.md +1 -0
- package/ace-install-system-ui/README.md +18 -0
- package/ace-install-system-ui/index.html +13 -0
- package/ace-install-system-ui/lib.zip +0 -0
- package/ace-install-system-ui/package.json +45 -0
- package/ace-install-system-ui/public/images/desktopAppInstall/not-data.svg +1 -0
- package/ace-install-system-ui/public/images/login/Line.png +0 -0
- package/ace-install-system-ui/public/images/login/Path.png +0 -0
- package/ace-install-system-ui/public/images/login/Vector.png +0 -0
- package/ace-install-system-ui/public/images/login/down_line.png +0 -0
- package/ace-install-system-ui/public/images/login/exclamation.png +0 -0
- package/ace-install-system-ui/public/images/login/login_bg_img.png +0 -0
- package/ace-install-system-ui/public/images/title_01.png +0 -0
- package/ace-install-system-ui/public/images/title_02.png +0 -0
- package/ace-install-system-ui/public/images/title_03.png +0 -0
- package/ace-install-system-ui/public/images/title_04.png +0 -0
- package/ace-install-system-ui/public/images/uploader/upload-empty.svg +1 -0
- package/ace-install-system-ui/public/images/uploader/upload-files.svg +1710 -0
- package/ace-install-system-ui/public/logo.svg +1 -0
- package/ace-install-system-ui/public/vite.svg +1 -0
- package/ace-install-system-ui/src/App.vue +7 -0
- package/ace-install-system-ui/src/api/apiCache.ts +25 -0
- package/ace-install-system-ui/src/api/cache.ts +9 -0
- package/ace-install-system-ui/src/api/desktopAppApi.ts +149 -0
- package/ace-install-system-ui/src/api/desktopMachineApi.ts +75 -0
- package/ace-install-system-ui/src/api/loginApi.ts +46 -0
- package/ace-install-system-ui/src/api/taskReportApi.ts +46 -0
- package/ace-install-system-ui/src/assets/vue.svg +1 -0
- package/ace-install-system-ui/src/components/AppsManage/AddApp.vue +283 -0
- package/ace-install-system-ui/src/components/AppsManage/AppForm.vue +321 -0
- package/ace-install-system-ui/src/components/AppsManage/AppManageDrawer.vue +164 -0
- package/ace-install-system-ui/src/components/AppsManage/AppSelector.vue +93 -0
- package/ace-install-system-ui/src/components/AppsManage/AppsManage.vue +441 -0
- package/ace-install-system-ui/src/components/AppsManage/EditAppMetaData.vue +203 -0
- package/ace-install-system-ui/src/components/AppsManage/EnvForm.vue +180 -0
- package/ace-install-system-ui/src/components/AppsManage/IniForm.vue +294 -0
- package/ace-install-system-ui/src/components/AppsManage/UpdateAppForm.vue +218 -0
- package/ace-install-system-ui/src/components/CustomDialog.vue +170 -0
- package/ace-install-system-ui/src/components/HostMachineManage/AddHostMachine.vue +173 -0
- package/ace-install-system-ui/src/components/HostMachineManage/HostMachineManage.vue +509 -0
- package/ace-install-system-ui/src/components/HostMachineManage/HostMachineManageDrawer.vue +143 -0
- package/ace-install-system-ui/src/components/HostMachineManage/MachineSelector.vue +119 -0
- package/ace-install-system-ui/src/components/InstallModuleHeader.vue +36 -0
- package/ace-install-system-ui/src/components/Log/ViewAllLog.vue +175 -0
- package/ace-install-system-ui/src/components/Log/ViewLog.vue +80 -0
- package/ace-install-system-ui/src/components/TaskList/AppInstallTask.vue +33 -0
- package/ace-install-system-ui/src/components/TaskList/AppInstallTaskGroup.vue +152 -0
- package/ace-install-system-ui/src/components/TaskList/AppScanTask.vue +80 -0
- package/ace-install-system-ui/src/components/TaskList/AppUninstallTask.vue +33 -0
- package/ace-install-system-ui/src/components/TaskList/AppUninstallTaskGroup.vue +152 -0
- package/ace-install-system-ui/src/components/TaskList/TaskList.vue +314 -0
- package/ace-install-system-ui/src/components/TaskList/TaskListDrawer.vue +127 -0
- package/ace-install-system-ui/src/components/Uploader/GlobalUploader.vue +297 -0
- package/ace-install-system-ui/src/components/Uploader/Uploader.vue +346 -0
- package/ace-install-system-ui/src/components/WebTerminal/MachineTerminals.vue +187 -0
- package/ace-install-system-ui/src/components/WebTerminal/WebTerminal.vue +136 -0
- package/ace-install-system-ui/src/components/WebTerminal/WebTerminalDialog.vue +80 -0
- package/ace-install-system-ui/src/env.d.ts +15 -0
- package/ace-install-system-ui/src/init.ts +22 -0
- package/ace-install-system-ui/src/locales/lang/en/common.json +17 -0
- package/ace-install-system-ui/src/locales/lang/en/errors.json +40 -0
- package/ace-install-system-ui/src/locales/lang/en/layout.json +7 -0
- package/ace-install-system-ui/src/locales/lang/en.ts +14 -0
- package/ace-install-system-ui/src/locales/lang/zh-CN/common.json +17 -0
- package/ace-install-system-ui/src/locales/lang/zh-CN/errors.json +42 -0
- package/ace-install-system-ui/src/locales/lang/zh-CN/layout.json +7 -0
- package/ace-install-system-ui/src/locales/lang/zh-CN.ts +15 -0
- package/ace-install-system-ui/src/locales/setupI18n.ts +14 -0
- package/ace-install-system-ui/src/main.ts +28 -0
- package/ace-install-system-ui/src/model/Common.ts +8 -0
- package/ace-install-system-ui/src/model/DesktopApp.ts +472 -0
- package/ace-install-system-ui/src/model/TaskLog.ts +64 -0
- package/ace-install-system-ui/src/model/TaskReport.ts +136 -0
- package/ace-install-system-ui/src/pages/Home/Home.vue +307 -0
- package/ace-install-system-ui/src/pages/InstallDesktopApp/InstallDesktopApp.vue +363 -0
- package/ace-install-system-ui/src/pages/InstallDesktopApp/components/DependentApp.vue +138 -0
- package/ace-install-system-ui/src/pages/InstallDesktopApp/components/InstallDesktopAppStep1 copy.vue +232 -0
- package/ace-install-system-ui/src/pages/InstallDesktopApp/components/InstallDesktopAppStep1.vue +577 -0
- package/ace-install-system-ui/src/pages/InstallDesktopApp/components/InstallDesktopAppStep2.vue +267 -0
- package/ace-install-system-ui/src/pages/InstallDesktopApp/components/InstallDesktopAppStep3.vue +176 -0
- package/ace-install-system-ui/src/pages/InstallDesktopApp/components/ViewDependencies.vue +74 -0
- package/ace-install-system-ui/src/pages/UninstallDesktopApp.vue +167 -0
- package/ace-install-system-ui/src/router/index.ts +118 -0
- package/ace-install-system-ui/src/stores/index.ts +181 -0
- package/ace-install-system-ui/src/stores/modules/locale.ts +60 -0
- package/ace-install-system-ui/src/styles/main.scss +73 -0
- package/ace-install-system-ui/src/styles/modules/cutom-element-table-cell.scss +33 -0
- package/ace-install-system-ui/src/styles/modules/element-dark-theme.scss +126 -0
- package/ace-install-system-ui/src/styles/modules/task-install-detail.scss +127 -0
- package/ace-install-system-ui/src/styles/modules/var-notused.scss +156 -0
- package/ace-install-system-ui/src/styles/modules/var.scss +151 -0
- package/ace-install-system-ui/src/types/global.d.ts +10 -0
- package/ace-install-system-ui/src/types/shims-vue-simple-uploader.d.ts +4 -0
- package/ace-install-system-ui/src/utils/EventBus.ts +5 -0
- package/ace-install-system-ui/src/utils/axios/AceAxios.ts +535 -0
- package/ace-install-system-ui/src/utils/axios/cache.ts +9 -0
- package/ace-install-system-ui/src/utils/axios/index.ts +35 -0
- package/ace-install-system-ui/src/views/Layout/Layout.vue +140 -0
- package/ace-install-system-ui/src/views/Layout/components/Header.vue +198 -0
- package/ace-install-system-ui/src/views/Login/Login.vue +283 -0
- package/ace-install-system-ui/src/views/NotFound/NotFound.vue +7 -0
- package/ace-install-system-ui/src/views/SignUp/SignUp.vue +204 -0
- package/ace-install-system-ui/src/views/WebSsh.vue +12 -0
- package/ace-install-system-ui/tsconfig.json +24 -0
- package/ace-install-system-ui/tsconfig.node.json +11 -0
- package/ace-install-system-ui/vite.config.ts +114 -0
- package/ace-monolith-shell-ui/.env +3 -0
- package/ace-monolith-shell-ui/.env.development +5 -0
- package/ace-monolith-shell-ui/.env.production +1 -0
- package/ace-monolith-shell-ui/.eslintrc.cjs +15 -0
- package/ace-monolith-shell-ui/.prettierrc.json +8 -0
- package/ace-monolith-shell-ui/.vscode/extensions.json +7 -0
- package/ace-monolith-shell-ui/.vscode/launch.json +22 -0
- package/ace-monolith-shell-ui/.vscode/settings.json +26 -0
- package/ace-monolith-shell-ui/README.md +7 -0
- package/ace-monolith-shell-ui/auto-imports.d.ts +9 -0
- package/ace-monolith-shell-ui/components.d.ts +45 -0
- package/ace-monolith-shell-ui/index.html +20 -0
- package/ace-monolith-shell-ui/package.json +67 -0
- package/ace-monolith-shell-ui/public/res/build/shell/favicon.ico +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/.keep +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/index.html +5348 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.css +2583 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.eot +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.glyph.json +1 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.less +2585 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.module.less +2567 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.scss +5103 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.styl +2554 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.svg +7633 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.symbol.svg +11 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.ttf +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.woff +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/remixicon.woff2 +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/symbol.html +18032 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/tags.json +1364 -0
- package/ace-monolith-shell-ui/public/res/build/shell/fonts/remixIcon/unicode.html +175 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/hidden-right-sidebar.png +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/icon/deliver.svg +1 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/icon/logout.svg +28 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/icon/notification.svg +17 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/jari-logo-2.png +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/jari-logo.png +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/public-code.png +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/show-right-sidebar.png +0 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/svg/shezhi.svg +11 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/svg/tuichu.svg +13 -0
- package/ace-monolith-shell-ui/public/res/build/shell/images/svg/xiaoxi.svg +13 -0
- package/ace-monolith-shell-ui/public/res/build/shell/styles/element-plus.css +1 -0
- package/ace-monolith-shell-ui/src/App.vue +25 -0
- package/ace-monolith-shell-ui/src/assets/base.css +80 -0
- package/ace-monolith-shell-ui/src/assets/element/index.scss +18 -0
- package/ace-monolith-shell-ui/src/assets/element/var.scss +1123 -0
- package/ace-monolith-shell-ui/src/assets/logo.svg +7 -0
- package/ace-monolith-shell-ui/src/assets/main.scss +123 -0
- package/ace-monolith-shell-ui/src/demo/Bridge.vue +176 -0
- package/ace-monolith-shell-ui/src/env.d.ts +17 -0
- package/ace-monolith-shell-ui/src/hooks/useBridge.ts +148 -0
- package/ace-monolith-shell-ui/src/hooks/usePreferences.ts +116 -0
- package/ace-monolith-shell-ui/src/hooks/useSockJs.ts +123 -0
- package/ace-monolith-shell-ui/src/http/AceAxios.ts +645 -0
- package/ace-monolith-shell-ui/src/http/cache.ts +11 -0
- package/ace-monolith-shell-ui/src/http/index.ts +33 -0
- package/ace-monolith-shell-ui/src/init.ts +21 -0
- package/ace-monolith-shell-ui/src/layout/Main.vue +176 -0
- package/ace-monolith-shell-ui/src/layout/components/AppMenu.vue +334 -0
- package/ace-monolith-shell-ui/src/layout/components/Fillet.vue +105 -0
- package/ace-monolith-shell-ui/src/layout/components/Sidebar.vue +213 -0
- package/ace-monolith-shell-ui/src/layout/widgets/notification/Notification.vue +307 -0
- package/ace-monolith-shell-ui/src/locales/lang/en/common.json +17 -0
- package/ace-monolith-shell-ui/src/locales/lang/en/errors.json +42 -0
- package/ace-monolith-shell-ui/src/locales/lang/en/layout.json +8 -0
- package/ace-monolith-shell-ui/src/locales/lang/en/updatePsw.json +9 -0
- package/ace-monolith-shell-ui/src/locales/lang/en/userProfile.json +3 -0
- package/ace-monolith-shell-ui/src/locales/lang/en.ts +14 -0
- package/ace-monolith-shell-ui/src/locales/lang/zh-CN/common.json +17 -0
- package/ace-monolith-shell-ui/src/locales/lang/zh-CN/errors.json +42 -0
- package/ace-monolith-shell-ui/src/locales/lang/zh-CN/layout.json +8 -0
- package/ace-monolith-shell-ui/src/locales/lang/zh-CN/updatePsw.json +9 -0
- package/ace-monolith-shell-ui/src/locales/lang/zh-CN/userProfile.json +3 -0
- package/ace-monolith-shell-ui/src/locales/lang/zh-CN.ts +14 -0
- package/ace-monolith-shell-ui/src/locales/setupI18n.ts +14 -0
- package/ace-monolith-shell-ui/src/main.ts +164 -0
- package/ace-monolith-shell-ui/src/router/index.ts +111 -0
- package/ace-monolith-shell-ui/src/shims-vue.d.ts +22 -0
- package/ace-monolith-shell-ui/src/stores/modules/accessibleApps.ts +149 -0
- package/ace-monolith-shell-ui/src/stores/modules/app.ts +164 -0
- package/ace-monolith-shell-ui/src/stores/modules/appContext.ts +57 -0
- package/ace-monolith-shell-ui/src/stores/modules/auth.ts +65 -0
- package/ace-monolith-shell-ui/src/stores/modules/locale.ts +63 -0
- package/ace-monolith-shell-ui/src/stores/modules/system.ts +41 -0
- package/ace-monolith-shell-ui/src/types/ext.d.ts +13 -0
- package/ace-monolith-shell-ui/src/types/router.d.ts +12 -0
- package/ace-monolith-shell-ui/src/types/window.d.ts +16 -0
- package/ace-monolith-shell-ui/src/views/AboutView.vue +141 -0
- package/ace-monolith-shell-ui/src/views/DlgUpdatePassword.vue +119 -0
- package/ace-monolith-shell-ui/src/views/ExtendedAttrRender.vue +311 -0
- package/ace-monolith-shell-ui/src/views/MicroAppContainer.vue +270 -0
- package/ace-monolith-shell-ui/src/views/UserProfileEditor.vue +303 -0
- package/ace-monolith-shell-ui/src/views/WorkBench.vue +10 -0
- package/ace-monolith-shell-ui/src/views/errors/HttpState404.vue +137 -0
- package/ace-monolith-shell-ui/src/views/errors/NoAppAvailable.vue +16 -0
- package/ace-monolith-shell-ui/src/vite-env.d.ts +3 -0
- package/ace-monolith-shell-ui/tsconfig.app.json +26 -0
- package/ace-monolith-shell-ui/tsconfig.json +11 -0
- package/ace-monolith-shell-ui/tsconfig.node.json +25 -0
- package/ace-monolith-shell-ui/vbuild/vite/proxy.ts +47 -0
- package/ace-monolith-shell-ui/vite.config.ts +127 -0
- package/ace-monolith-shell-ui/vue-image-crop-upload.d.ts +1 -0
- package/ace-vue-frame/.env +2 -0
- package/ace-vue-frame/.env.development +1 -0
- package/ace-vue-frame/.env.production +1 -0
- package/ace-vue-frame/.eslintrc.cjs +29 -0
- package/ace-vue-frame/.vscode/extensions.json +3 -0
- package/ace-vue-frame/README.md +18 -0
- package/ace-vue-frame/auto-imports.d.ts +9 -0
- package/ace-vue-frame/components.d.ts +16 -0
- package/ace-vue-frame/folder-alias.json +1 -0
- package/ace-vue-frame/index.html +13 -0
- package/ace-vue-frame/jsconfig.json +13 -0
- package/ace-vue-frame/package.json +30 -0
- package/ace-vue-frame/prettier.config.js +17 -0
- package/ace-vue-frame/public/vite.svg +1 -0
- package/ace-vue-frame/src/App.vue +30 -0
- package/ace-vue-frame/src/api/demo.ts +24 -0
- package/ace-vue-frame/src/assets/vue.svg +1 -0
- package/ace-vue-frame/src/components/HelloWorld.vue +38 -0
- package/ace-vue-frame/src/main.ts +38 -0
- package/ace-vue-frame/src/router/index.ts +18 -0
- package/ace-vue-frame/src/router/routes.ts +7 -0
- package/ace-vue-frame/src/router/whiteList.ts +4 -0
- package/ace-vue-frame/src/stores/index.ts +3 -0
- package/ace-vue-frame/src/stores/modules/main.ts +19 -0
- package/ace-vue-frame/src/style.css +80 -0
- package/ace-vue-frame/src/types/ext.d.ts +13 -0
- package/ace-vue-frame/src/types/style.d.ts +7 -0
- package/ace-vue-frame/src/types/window.d.ts +16 -0
- package/ace-vue-frame/src/utils/axios/index.ts +20 -0
- package/ace-vue-frame/src/utils/index.ts +7 -0
- package/ace-vue-frame/src/vite-env.d.ts +1 -0
- package/ace-vue-frame/tsconfig.json +52 -0
- package/ace-vue-frame/tsconfig.node.json +10 -0
- package/ace-vue-frame/vite.config.ts +75 -0
- package/folder-alias.json +1 -0
- package/frontends.code-workspace +10 -0
- package/package.json +35 -0
- package/pnpm-workspace.yaml +11 -0
- package/pom.xml +114 -0
|
@@ -0,0 +1,2979 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "aceicon"; /* Project id 3881338 */
|
|
3
|
+
src: url('../fonts/iconfont.woff2?t=1678867250038') format('woff2'),
|
|
4
|
+
url('../fonts/iconfont.woff?t=1678867250038') format('woff'),
|
|
5
|
+
url('../fonts/iconfont.ttf?t=1678867250038') format('truetype');
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.aceicon {
|
|
9
|
+
font-family: "aceicon" !important;
|
|
10
|
+
font-size: 16px;
|
|
11
|
+
font-style: normal;
|
|
12
|
+
-webkit-font-smoothing: antialiased;
|
|
13
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.icon-add_circle_fill:before {
|
|
17
|
+
content: "\e61d";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.icon-add_circle_line:before {
|
|
21
|
+
content: "\e626";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.icon-alert_line:before {
|
|
25
|
+
content: "\e629";
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.icon-add_fill:before {
|
|
29
|
+
content: "\e62a";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.icon-add_line:before {
|
|
33
|
+
content: "\e62b";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.icon-arrow_left_up_line:before {
|
|
37
|
+
content: "\e62c";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.icon-arrow_right_down_line:before {
|
|
41
|
+
content: "\e62d";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.icon-arrow_left_down_circle_line:before {
|
|
45
|
+
content: "\e62e";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.icon-arrow_left_up_circle_line:before {
|
|
49
|
+
content: "\e62f";
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.icon-alert_octagon_line:before {
|
|
53
|
+
content: "\e630";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.icon-arrow_left_line:before {
|
|
57
|
+
content: "\e631";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.icon-arrow_left_circle_line:before {
|
|
61
|
+
content: "\e632";
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.icon-arrow_left_down_line:before {
|
|
65
|
+
content: "\e633";
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.icon-bank_line:before {
|
|
69
|
+
content: "\e634";
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.icon-arrow_right_circle_line:before {
|
|
73
|
+
content: "\e635";
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.icon-close_line:before {
|
|
77
|
+
content: "\e636";
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.icon-check_fill:before {
|
|
81
|
+
content: "\e637";
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.icon-check_circle_line:before {
|
|
85
|
+
content: "\e638";
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.icon-close_circle_line:before {
|
|
89
|
+
content: "\e639";
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.icon-arrow_up_line:before {
|
|
93
|
+
content: "\e63a";
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.icon-arrow_right_line:before {
|
|
97
|
+
content: "\e63b";
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.icon-arrow_up_circle_line:before {
|
|
101
|
+
content: "\e63c";
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.icon-back_line:before {
|
|
105
|
+
content: "\e63d";
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.icon-arrow_right_down_circle_line:before {
|
|
109
|
+
content: "\e63e";
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.icon-close_fill:before {
|
|
113
|
+
content: "\e63f";
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.icon-close_circle_fill:before {
|
|
117
|
+
content: "\e640";
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.icon-delete_fill:before {
|
|
121
|
+
content: "\e641";
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.icon-arrow_right_up_line:before {
|
|
125
|
+
content: "\e642";
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.icon-delete_2_fill:before {
|
|
129
|
+
content: "\e643";
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.icon-display_fill:before {
|
|
133
|
+
content: "\e644";
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.icon-arrow_down_circle_line:before {
|
|
137
|
+
content: "\e645";
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.icon-arrow_right_up_circle_line:before {
|
|
141
|
+
content: "\e646";
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.icon-delete_line:before {
|
|
145
|
+
content: "\e647";
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.icon-down_fill:before {
|
|
149
|
+
content: "\e648";
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.icon-check_line:before {
|
|
153
|
+
content: "\e649";
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.icon-down_small_line:before {
|
|
157
|
+
content: "\e64a";
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.icon-down_small_fill:before {
|
|
161
|
+
content: "\e64b";
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.icon-eye_close_line:before {
|
|
165
|
+
content: "\e64c";
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.icon-dot_grid_fill:before {
|
|
169
|
+
content: "\e64d";
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.icon-back_2_line:before {
|
|
173
|
+
content: "\e64e";
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.icon-delete_2_line:before {
|
|
177
|
+
content: "\e64f";
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.icon-fullscreen_exit_2_fill:before {
|
|
181
|
+
content: "\e650";
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.icon-more_3_line:before {
|
|
185
|
+
content: "\e651";
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.icon-fullscreen_exit_fill:before {
|
|
189
|
+
content: "\e652";
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.icon-delete_back_fill:before {
|
|
193
|
+
content: "\e653";
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.icon-fullscreen_line:before {
|
|
197
|
+
content: "\e654";
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.icon-fullscreen_2_line:before {
|
|
201
|
+
content: "\e655";
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.icon-forward_2_line:before {
|
|
205
|
+
content: "\e656";
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.icon-fullscreen_exit_2_line:before {
|
|
209
|
+
content: "\e657";
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.icon-fullscreen_2_fill:before {
|
|
213
|
+
content: "\e658";
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.icon-information_line:before {
|
|
217
|
+
content: "\e659";
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.icon-screenshot_line:before {
|
|
221
|
+
content: "\e65a";
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.icon-home_4_line:before {
|
|
225
|
+
content: "\e65b";
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.icon-IDcard_line:before {
|
|
229
|
+
content: "\e65c";
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.icon-refresh_2_fill:before {
|
|
233
|
+
content: "\e65d";
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.icon-eye_close_fill:before {
|
|
237
|
+
content: "\e65e";
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.icon-minus_circle_fill:before {
|
|
241
|
+
content: "\e65f";
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.icon-refresh_1_line:before {
|
|
245
|
+
content: "\e660";
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.icon-dot_grid_line:before {
|
|
249
|
+
content: "\e661";
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.icon-fullscreen_exit_line:before {
|
|
253
|
+
content: "\e662";
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.icon-grid_line:before {
|
|
257
|
+
content: "\e663";
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.icon-user_3_fill:before {
|
|
261
|
+
content: "\e664";
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.icon-grid_2_line:before {
|
|
265
|
+
content: "\e665";
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.icon-fullscreen_fill:before {
|
|
269
|
+
content: "\e666";
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.icon-left_small_line:before {
|
|
273
|
+
content: "\e667";
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.icon-display_line:before {
|
|
277
|
+
content: "\e668";
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.icon-screenshot_fill:before {
|
|
281
|
+
content: "\e669";
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.icon-left_line:before {
|
|
285
|
+
content: "\e66a";
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.icon-home_6_line:before {
|
|
289
|
+
content: "\e66b";
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.icon-settings_6_fill:before {
|
|
293
|
+
content: "\e66c";
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.icon-more_4_line:before {
|
|
297
|
+
content: "\e66d";
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.icon-rotate_to_vertical_line:before {
|
|
301
|
+
content: "\e66e";
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.icon-settings_3_line:before {
|
|
305
|
+
content: "\e66f";
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.icon-refresh_3_fill:before {
|
|
309
|
+
content: "\e670";
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.icon-settings_2_fill:before {
|
|
313
|
+
content: "\e671";
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.icon-transfer_line:before {
|
|
317
|
+
content: "\e672";
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.icon-down_line:before {
|
|
321
|
+
content: "\e673";
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.icon-settings_4_fill:before {
|
|
325
|
+
content: "\e674";
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.icon-user_1_fill:before {
|
|
329
|
+
content: "\e675";
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.icon-home_3_line:before {
|
|
333
|
+
content: "\e676";
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.icon-home_5_line:before {
|
|
337
|
+
content: "\e677";
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.icon-right_line:before {
|
|
341
|
+
content: "\e678";
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.icon-home_2_line:before {
|
|
345
|
+
content: "\e679";
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.icon-delete_back_line:before {
|
|
349
|
+
content: "\e67a";
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.icon-user_3_line:before {
|
|
353
|
+
content: "\e67b";
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.icon-t_shirt_line:before {
|
|
357
|
+
content: "\e67c";
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.icon-user_2_fill:before {
|
|
361
|
+
content: "\e67d";
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.icon-refresh_4_line:before {
|
|
365
|
+
content: "\e67e";
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.icon-transfer_2_line:before {
|
|
369
|
+
content: "\e67f";
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.icon-refresh_4_fill:before {
|
|
373
|
+
content: "\e680";
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.icon-settings_6_line:before {
|
|
377
|
+
content: "\e681";
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.icon-more_3_fill:before {
|
|
381
|
+
content: "\e682";
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.icon-settings_2_line:before {
|
|
385
|
+
content: "\e683";
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.icon-user_4_line:before {
|
|
389
|
+
content: "\e684";
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.icon-user_1_line:before {
|
|
393
|
+
content: "\e685";
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.icon-IDcard_fill:before {
|
|
397
|
+
content: "\e686";
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.icon-refresh_2_line:before {
|
|
401
|
+
content: "\e687";
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.icon-rotate_to_horizontal_line:before {
|
|
405
|
+
content: "\e688";
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.icon-information_fill:before {
|
|
409
|
+
content: "\e689";
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.icon-refresh_1_fill:before {
|
|
413
|
+
content: "\e68a";
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.icon-transfer_2_fill:before {
|
|
417
|
+
content: "\e68b";
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.icon-restore_line:before {
|
|
421
|
+
content: "\e68c";
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.icon-settings_1_line:before {
|
|
425
|
+
content: "\e68d";
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.icon-settings_4_line:before {
|
|
429
|
+
content: "\e68e";
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.icon-home_1_line:before {
|
|
433
|
+
content: "\e68f";
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.icon-settings_5_line:before {
|
|
437
|
+
content: "\e690";
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.icon-refresh_3_line:before {
|
|
441
|
+
content: "\e691";
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.icon-user_2_line:before {
|
|
445
|
+
content: "\e692";
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.icon-minus_circle_line:before {
|
|
449
|
+
content: "\e693";
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.icon-settings_5_fill:before {
|
|
453
|
+
content: "\e694";
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.icon-settings_1_fill:before {
|
|
457
|
+
content: "\e695";
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.icon-more_4_fill:before {
|
|
461
|
+
content: "\e696";
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.icon-transfer_fill:before {
|
|
465
|
+
content: "\e697";
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.icon-settings_3_fill:before {
|
|
469
|
+
content: "\e698";
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.icon-t_shirt_fill:before {
|
|
473
|
+
content: "\e699";
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.icon-user_4_fill:before {
|
|
477
|
+
content: "\e69a";
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.icon-brush_line:before {
|
|
481
|
+
content: "\e603";
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.icon-brush_fill:before {
|
|
485
|
+
content: "\e604";
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.icon-classify_2_fill:before {
|
|
489
|
+
content: "\e605";
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.icon-dashboard_fill:before {
|
|
493
|
+
content: "\e606";
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.icon-file_upload_fill:before {
|
|
497
|
+
content: "\e607";
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.icon-file_upload_line:before {
|
|
501
|
+
content: "\e608";
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.icon-file_forbid_fill:before {
|
|
505
|
+
content: "\e609";
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.icon-file_forbid_line:before {
|
|
509
|
+
content: "\e60a";
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.icon-file_new_fill:before {
|
|
513
|
+
content: "\e60b";
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.icon-file_code_fill:before {
|
|
517
|
+
content: "\e60c";
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.icon-folder_3_line:before {
|
|
521
|
+
content: "\e60d";
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.icon-dashboard_line:before {
|
|
525
|
+
content: "\e60e";
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.icon-folder_2_fill:before {
|
|
529
|
+
content: "\e60f";
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.icon-folder_2_line:before {
|
|
533
|
+
content: "\e610";
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.icon-folder_delete_line:before {
|
|
537
|
+
content: "\e611";
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.icon-file_code_line:before {
|
|
541
|
+
content: "\e612";
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.icon-folder_minus_fill:before {
|
|
545
|
+
content: "\e613";
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.icon-folder_more_line:before {
|
|
549
|
+
content: "\e614";
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.icon-file_new_line:before {
|
|
553
|
+
content: "\e615";
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.icon-folder_delete_fill:before {
|
|
557
|
+
content: "\e616";
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.icon-upload_3_fill:before {
|
|
561
|
+
content: "\e617";
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.icon-key_2_line:before {
|
|
565
|
+
content: "\e618";
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.icon-folder_more_fill:before {
|
|
569
|
+
content: "\e619";
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.icon-key_2_fill:before {
|
|
573
|
+
content: "\e61a";
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.icon-folder_check_fill:before {
|
|
577
|
+
content: "\e61b";
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.icon-iMac_fill:before {
|
|
581
|
+
content: "\e61c";
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.icon-folder_open_fill:before {
|
|
585
|
+
content: "\e61e";
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.icon-folder_open_line:before {
|
|
589
|
+
content: "\e61f";
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.icon-xls_line:before {
|
|
593
|
+
content: "\e620";
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.icon-xls_fill:before {
|
|
597
|
+
content: "\e621";
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
.icon-folder_3_fill:before {
|
|
601
|
+
content: "\e622";
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
.icon-upload_3_line:before {
|
|
605
|
+
content: "\e623";
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
.icon-folder_check_line:before {
|
|
609
|
+
content: "\e624";
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.icon-folder_minus_line:before {
|
|
613
|
+
content: "\e625";
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.icon-iMac_line:before {
|
|
617
|
+
content: "\e627";
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.icon-classify_2_line:before {
|
|
621
|
+
content: "\e628";
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.icon-file-code:before {
|
|
625
|
+
content: "\66";
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.icon-file-code-2:before {
|
|
629
|
+
content: "\e6f7";
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.icon-file-add-fill:before {
|
|
633
|
+
content: "\e8f0";
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.icon-file-fill:before {
|
|
637
|
+
content: "\e95f";
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
.icon-file-text-fill:before {
|
|
641
|
+
content: "\e960";
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
.icon-folder-fill1:before {
|
|
645
|
+
content: "\e95a";
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.icon-folder-open-fill:before {
|
|
649
|
+
content: "\e95e";
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.icon-google-translate:before {
|
|
653
|
+
content: "\e9d5";
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.icon-collection-fill:before {
|
|
657
|
+
content: "\e944";
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.icon-rejected-order-fill:before {
|
|
661
|
+
content: "\e945";
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
.icon-homepage-ads-fill:before {
|
|
665
|
+
content: "\e946";
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.icon-scenes-fill:before {
|
|
669
|
+
content: "\e947";
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.icon-similar-product-fill:before {
|
|
673
|
+
content: "\e948";
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.icon-topraning-fill:before {
|
|
677
|
+
content: "\e949";
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.icon-messagecenter-fill:before {
|
|
681
|
+
content: "\e94a";
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
.icon-docjpge-fill:before {
|
|
685
|
+
content: "\e94b";
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.icon-jpge-fill:before {
|
|
689
|
+
content: "\e94c";
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.icon-gifjpge-fill:before {
|
|
693
|
+
content: "\e94d";
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
.icon-bmpjpge-fill:before {
|
|
697
|
+
content: "\e94e";
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
.icon-tifjpge-fill:before {
|
|
701
|
+
content: "\e94f";
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.icon-pngjpge-fill:before {
|
|
705
|
+
content: "\e950";
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.icon-sendinquiry-fill:before {
|
|
709
|
+
content: "\e951";
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
.icon-comments-fill:before {
|
|
713
|
+
content: "\e952";
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.icon-account-fill:before {
|
|
717
|
+
content: "\e953";
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
.icon-feed-logo-fill:before {
|
|
721
|
+
content: "\e954";
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.icon-home-fill:before {
|
|
725
|
+
content: "\e955";
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.icon-txt:before {
|
|
729
|
+
content: "\e956";
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.icon-xlsx:before {
|
|
733
|
+
content: "\e957";
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
.icon-background-color:before {
|
|
737
|
+
content: "\e958";
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.icon-falg-fill:before {
|
|
741
|
+
content: "\e959";
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.icon-new:before {
|
|
745
|
+
content: "\e95b";
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
.icon-free:before {
|
|
749
|
+
content: "\e95c";
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.icon-cad-fill:before {
|
|
753
|
+
content: "\e95d";
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.icon-all-fill:before {
|
|
757
|
+
content: "\e718";
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.icon-favorites-fill:before {
|
|
761
|
+
content: "\e721";
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.icon-integral-fill:before {
|
|
765
|
+
content: "\e726";
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.icon-namecard-fill:before {
|
|
769
|
+
content: "\e72a";
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.icon-pic-fill:before {
|
|
773
|
+
content: "\e72e";
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.icon-play-fill:before {
|
|
777
|
+
content: "\e72f";
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.icon-prompt-fill:before {
|
|
781
|
+
content: "\e730";
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.icon-stop-fill:before {
|
|
785
|
+
content: "\e738";
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.icon-logistic-logo:before {
|
|
789
|
+
content: "\e80f";
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.icon-QRcode1:before {
|
|
793
|
+
content: "\e810";
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.icon-contacts-fill:before {
|
|
797
|
+
content: "\e813";
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.icon-add-account1:before {
|
|
801
|
+
content: "\e814";
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.icon-years-fill:before {
|
|
805
|
+
content: "\e816";
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
.icon-add-cart-fill:before {
|
|
809
|
+
content: "\e81e";
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
.icon-add-fill:before {
|
|
813
|
+
content: "\e81f";
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.icon-all-fill1:before {
|
|
817
|
+
content: "\e820";
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.icon-ashbin-fill:before {
|
|
821
|
+
content: "\e822";
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.icon-calendar-fill:before {
|
|
825
|
+
content: "\e825";
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.icon-bad-fill:before {
|
|
829
|
+
content: "\e826";
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.icon-bussiness-man-fill:before {
|
|
833
|
+
content: "\e82c";
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.icon-cart-full-fill:before {
|
|
837
|
+
content: "\e831";
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.icon-cart-Empty-fill:before {
|
|
841
|
+
content: "\e832";
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.icon-cameraswitching-fill:before {
|
|
845
|
+
content: "\e833";
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
.icon-certified-supplier-fill:before {
|
|
849
|
+
content: "\e834";
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
.icon-calculator-fill:before {
|
|
853
|
+
content: "\e835";
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
.icon-clock-fill:before {
|
|
857
|
+
content: "\e836";
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
.icon-ali-clould-fill:before {
|
|
861
|
+
content: "\e837";
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
.icon-color-fill:before {
|
|
865
|
+
content: "\e838";
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.icon-coupons-fill:before {
|
|
869
|
+
content: "\e839";
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
.icon-cecurity-protection-fill:before {
|
|
873
|
+
content: "\e83a";
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
.icon-credit-level-fill:before {
|
|
877
|
+
content: "\e83b";
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
.icon-default-template-fill:before {
|
|
881
|
+
content: "\e83c";
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
.icon-CurrencyConverter-fill:before {
|
|
885
|
+
content: "\e83d";
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
.icon-Customermanagement-fill:before {
|
|
889
|
+
content: "\e83e";
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.icon-discounts-fill:before {
|
|
893
|
+
content: "\e83f";
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
.icon-Daytimemode-fill:before {
|
|
897
|
+
content: "\e840";
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
.icon-exl-fill:before {
|
|
901
|
+
content: "\e841";
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.icon-cry-fill:before {
|
|
905
|
+
content: "\e842";
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
.icon-email-fill:before {
|
|
909
|
+
content: "\e843";
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.icon-filter-fill:before {
|
|
913
|
+
content: "\e844";
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.icon-folder-fill:before {
|
|
917
|
+
content: "\e845";
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
.icon-feeds-fill:before {
|
|
921
|
+
content: "\e846";
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.icon-gold-supplie-fill:before {
|
|
925
|
+
content: "\e847";
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.icon-form-fill:before {
|
|
929
|
+
content: "\e889";
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.icon-camera-fill:before {
|
|
933
|
+
content: "\e88b";
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
.icon-good-fill:before {
|
|
937
|
+
content: "\e88c";
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
.icon-image-text-fill:before {
|
|
941
|
+
content: "\e88f";
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
.icon-inspection-fill:before {
|
|
945
|
+
content: "\e890";
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.icon-hot-fill:before {
|
|
949
|
+
content: "\e893";
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.icon-company-fill:before {
|
|
953
|
+
content: "\e894";
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.icon-discount-fill:before {
|
|
957
|
+
content: "\e895";
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.icon-insurance-fill:before {
|
|
961
|
+
content: "\e896";
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.icon-inquiry-template-fill:before {
|
|
965
|
+
content: "\e897";
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
.icon-leftbutton-fill:before {
|
|
969
|
+
content: "\e898";
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.icon-help1:before {
|
|
973
|
+
content: "\e89b";
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.icon-Moneymanagement-fill:before {
|
|
977
|
+
content: "\e89c";
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.icon-multi-language-fill:before {
|
|
981
|
+
content: "\e89d";
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.icon-logistics-icon-fill:before {
|
|
985
|
+
content: "\e89e";
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
.icon-Newuserzone-fill:before {
|
|
989
|
+
content: "\e8a0";
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.icon-nightmode-fill:before {
|
|
993
|
+
content: "\e8b0";
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.icon-office-supplies-fill:before {
|
|
997
|
+
content: "\e8d6";
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.icon-notice-fill:before {
|
|
1001
|
+
content: "\e8e0";
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
.icon-order-fill:before {
|
|
1005
|
+
content: "\e8fc";
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
.icon-password1:before {
|
|
1009
|
+
content: "\e8fd";
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.icon-map1:before {
|
|
1013
|
+
content: "\e8fe";
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.icon-paylater-fill:before {
|
|
1017
|
+
content: "\e904";
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.icon-phone-fill:before {
|
|
1021
|
+
content: "\e905";
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
.icon-online-tracking-fill:before {
|
|
1025
|
+
content: "\e906";
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.icon-play-fill1:before {
|
|
1029
|
+
content: "\e907";
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
.icon-pdf-fill:before {
|
|
1033
|
+
content: "\e908";
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
.icon-phone1:before {
|
|
1037
|
+
content: "\e90e";
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
.icon-pin-fill:before {
|
|
1041
|
+
content: "\e90f";
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
.icon-product-fill:before {
|
|
1045
|
+
content: "\e910";
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.icon-rankinglist-fill:before {
|
|
1049
|
+
content: "\e911";
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
.icon-reduce-fill:before {
|
|
1053
|
+
content: "\e912";
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.icon-reeor-fill:before {
|
|
1057
|
+
content: "\e913";
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.icon-pic-fill1:before {
|
|
1061
|
+
content: "\e914";
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
.icon-product1:before {
|
|
1065
|
+
content: "\e915";
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
.icon-prompt-fill1:before {
|
|
1069
|
+
content: "\e916";
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
.icon-resonserate-fill:before {
|
|
1073
|
+
content: "\e917";
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
.icon-remind-fill:before {
|
|
1077
|
+
content: "\e918";
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
.icon-Rightbutton-fill:before {
|
|
1081
|
+
content: "\e919";
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
.icon-RFQ-logo-fill:before {
|
|
1085
|
+
content: "\e91a";
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
.icon-RFQ-word-fill:before {
|
|
1089
|
+
content: "\e91b";
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.icon-searchcart-fill:before {
|
|
1093
|
+
content: "\e91d";
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
.icon-salescenter-fill:before {
|
|
1097
|
+
content: "\e91f";
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
.icon-save-fill:before {
|
|
1101
|
+
content: "\e921";
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.icon-security-fill:before {
|
|
1105
|
+
content: "\e922";
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
.icon-Similarproducts-fill:before {
|
|
1109
|
+
content: "\e924";
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
.icon-signboard-fill:before {
|
|
1113
|
+
content: "\e925";
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
.icon-service-fill:before {
|
|
1117
|
+
content: "\e926";
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
.icon-shuffling-banner-fill:before {
|
|
1121
|
+
content: "\e927";
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.icon-supplier-features-fill:before {
|
|
1125
|
+
content: "\e928";
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
.icon-store-fill:before {
|
|
1129
|
+
content: "\e929";
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.icon-smile-fill:before {
|
|
1133
|
+
content: "\e92a";
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.icon-success-fill:before {
|
|
1137
|
+
content: "\e92b";
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
.icon-sound-filling-fill:before {
|
|
1141
|
+
content: "\e92c";
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
.icon-sound-Mute1:before {
|
|
1145
|
+
content: "\e92d";
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
.icon-suspended-fill:before {
|
|
1149
|
+
content: "\e92e";
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
.icon-tool-fill:before {
|
|
1153
|
+
content: "\e92f";
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
.icon-task-management-fill:before {
|
|
1157
|
+
content: "\e930";
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
.icon-unlock-fill:before {
|
|
1161
|
+
content: "\e931";
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
.icon-trust-fill:before {
|
|
1165
|
+
content: "\e932";
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
.icon-vip-fill:before {
|
|
1169
|
+
content: "\e933";
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.icon-set1:before {
|
|
1173
|
+
content: "\e934";
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
.icon-Top-fill:before {
|
|
1177
|
+
content: "\e935";
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
.icon-viewlarger1:before {
|
|
1181
|
+
content: "\e936";
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.icon-voice-fill:before {
|
|
1185
|
+
content: "\e937";
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
.icon-warning-fill:before {
|
|
1189
|
+
content: "\e938";
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
.icon-warehouse-fill:before {
|
|
1193
|
+
content: "\e939";
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
.icon-zip-fill:before {
|
|
1197
|
+
content: "\e93a";
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
.icon-trade-assurance-fill:before {
|
|
1201
|
+
content: "\e93b";
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
.icon-vs-fill:before {
|
|
1205
|
+
content: "\e93c";
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
.icon-video1:before {
|
|
1209
|
+
content: "\e93d";
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
.icon-template-fill:before {
|
|
1213
|
+
content: "\e93e";
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
.icon-wallet1:before {
|
|
1217
|
+
content: "\e93f";
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
.icon-training1:before {
|
|
1221
|
+
content: "\e940";
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
.icon-packing-labeling-fill:before {
|
|
1225
|
+
content: "\e941";
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
.icon-brand-fill:before {
|
|
1229
|
+
content: "\e942";
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
.icon-consumption-fill:before {
|
|
1233
|
+
content: "\e943";
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
.icon-scan:before {
|
|
1237
|
+
content: "\e8af";
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.icon-camera1:before {
|
|
1241
|
+
content: "\e903";
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
.icon-cloud-server:before {
|
|
1245
|
+
content: "\e909";
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
.icon-cloud-upload:before {
|
|
1249
|
+
content: "\e90a";
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
.icon-cloud:before {
|
|
1253
|
+
content: "\e90b";
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
.icon-cloud-download:before {
|
|
1257
|
+
content: "\e90c";
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1260
|
+
.icon-cloud-sync:before {
|
|
1261
|
+
content: "\e90d";
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
.icon-attachment:before {
|
|
1265
|
+
content: "\e91c";
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
.icon-key:before {
|
|
1269
|
+
content: "\e91e";
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
.icon-disconnect:before {
|
|
1273
|
+
content: "\e920";
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
.icon-link1:before {
|
|
1277
|
+
content: "\e923";
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
.icon-check-circle:before {
|
|
1281
|
+
content: "\e78e";
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
.icon-CI:before {
|
|
1285
|
+
content: "\e7b4";
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
.icon-Dollar:before {
|
|
1289
|
+
content: "\e7ba";
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
.icon-compass:before {
|
|
1293
|
+
content: "\e7c3";
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.icon-stop1:before {
|
|
1297
|
+
content: "\e972";
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
.icon-close-circle:before {
|
|
1301
|
+
content: "\e80c";
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
.icon-fire:before {
|
|
1305
|
+
content: "\e973";
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
.icon-frown:before {
|
|
1309
|
+
content: "\e80d";
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
.icon-info-circle:before {
|
|
1313
|
+
content: "\e80e";
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
.icon-codepen:before {
|
|
1317
|
+
content: "\e976";
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
.icon-dribbble:before {
|
|
1321
|
+
content: "\e977";
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
.icon-EURO:before {
|
|
1325
|
+
content: "\e811";
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
.icon-windows:before {
|
|
1329
|
+
content: "\e978";
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
.icon-copyright:before {
|
|
1333
|
+
content: "\e812";
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
.icon-audio:before {
|
|
1337
|
+
content: "\e989";
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
.icon-plus-circle:before {
|
|
1341
|
+
content: "\e815";
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
.icon-zoomin:before {
|
|
1345
|
+
content: "\e98c";
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1348
|
+
.icon-question-circle:before {
|
|
1349
|
+
content: "\e817";
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1352
|
+
.icon-bug:before {
|
|
1353
|
+
content: "\e98f";
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
.icon-Pound:before {
|
|
1357
|
+
content: "\e818";
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
.icon-audiostatic:before {
|
|
1361
|
+
content: "\e990";
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
.icon-right-circle:before {
|
|
1365
|
+
content: "\e819";
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
.icon-comment:before {
|
|
1369
|
+
content: "\e991";
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
.icon-smile1:before {
|
|
1373
|
+
content: "\e81a";
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
.icon-verified:before {
|
|
1377
|
+
content: "\e993";
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
.icon-trademark:before {
|
|
1381
|
+
content: "\e81b";
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
.icon-time-circle:before {
|
|
1385
|
+
content: "\e81c";
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
.icon-switchuser:before {
|
|
1389
|
+
content: "\e996";
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
.icon-timeout:before {
|
|
1393
|
+
content: "\e81d";
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
.icon-search1:before {
|
|
1397
|
+
content: "\e9a1";
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
.icon-retweet:before {
|
|
1401
|
+
content: "\e9a2";
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
.icon-warning-circle:before {
|
|
1405
|
+
content: "\e821";
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
.icon-transaction:before {
|
|
1409
|
+
content: "\e823";
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
.icon-undo:before {
|
|
1413
|
+
content: "\e824";
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
.icon-eye-close:before {
|
|
1417
|
+
content: "\e9ab";
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
.icon-reloadtime:before {
|
|
1421
|
+
content: "\e827";
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
.icon-message:before {
|
|
1425
|
+
content: "\e828";
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
.icon-dashboard:before {
|
|
1429
|
+
content: "\e829";
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
.icon-issuesclose:before {
|
|
1433
|
+
content: "\e82a";
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
.icon-poweroff:before {
|
|
1437
|
+
content: "\e82b";
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
.icon-piechart:before {
|
|
1441
|
+
content: "\e82d";
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
.icon-setting:before {
|
|
1445
|
+
content: "\e82e";
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.icon-eye:before {
|
|
1449
|
+
content: "\e82f";
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1452
|
+
.icon-location:before {
|
|
1453
|
+
content: "\e830";
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
.icon-adduser:before {
|
|
1457
|
+
content: "\e848";
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
.icon-deleteteam:before {
|
|
1461
|
+
content: "\e849";
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
.icon-deleteuser:before {
|
|
1465
|
+
content: "\e84a";
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1468
|
+
.icon-addteam:before {
|
|
1469
|
+
content: "\e84b";
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1472
|
+
.icon-user:before {
|
|
1473
|
+
content: "\e84c";
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1476
|
+
.icon-team:before {
|
|
1477
|
+
content: "\e84d";
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
.icon-barchart:before {
|
|
1481
|
+
content: "\e84e";
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
.icon-pointmap:before {
|
|
1485
|
+
content: "\e84f";
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
.icon-container:before {
|
|
1489
|
+
content: "\e850";
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
.icon-database:before {
|
|
1493
|
+
content: "\e851";
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1496
|
+
.icon-sever:before {
|
|
1497
|
+
content: "\e852";
|
|
1498
|
+
}
|
|
1499
|
+
|
|
1500
|
+
.icon-mobile:before {
|
|
1501
|
+
content: "\e853";
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
.icon-tablet:before {
|
|
1505
|
+
content: "\e854";
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1508
|
+
.icon-redenvelope:before {
|
|
1509
|
+
content: "\e855";
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
.icon-book:before {
|
|
1513
|
+
content: "\e857";
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
.icon-filedone:before {
|
|
1517
|
+
content: "\e858";
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
.icon-reconciliation:before {
|
|
1521
|
+
content: "\e859";
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
.icon-file-exception:before {
|
|
1525
|
+
content: "\e85a";
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
.icon-filesync:before {
|
|
1529
|
+
content: "\e85b";
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
.icon-filesearch:before {
|
|
1533
|
+
content: "\e85c";
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
.icon-solution:before {
|
|
1537
|
+
content: "\e85d";
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
.icon-fileprotect:before {
|
|
1541
|
+
content: "\e85e";
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
.icon-file-add:before {
|
|
1545
|
+
content: "\e85f";
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
.icon-file-excel:before {
|
|
1549
|
+
content: "\e860";
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
.icon-file-exclamation:before {
|
|
1553
|
+
content: "\e861";
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
.icon-file-pdf:before {
|
|
1557
|
+
content: "\e862";
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
.icon-file-image:before {
|
|
1561
|
+
content: "\e863";
|
|
1562
|
+
}
|
|
1563
|
+
|
|
1564
|
+
.icon-file-markdown:before {
|
|
1565
|
+
content: "\e864";
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
.icon-file-unknown:before {
|
|
1569
|
+
content: "\e865";
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
.icon-file-ppt:before {
|
|
1573
|
+
content: "\e866";
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
.icon-file-word:before {
|
|
1577
|
+
content: "\e867";
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1580
|
+
.icon-file:before {
|
|
1581
|
+
content: "\e868";
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
.icon-file-zip:before {
|
|
1585
|
+
content: "\e869";
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
.icon-file-text:before {
|
|
1589
|
+
content: "\e86a";
|
|
1590
|
+
}
|
|
1591
|
+
|
|
1592
|
+
.icon-file-copy:before {
|
|
1593
|
+
content: "\e86b";
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
.icon-snippets:before {
|
|
1597
|
+
content: "\e86c";
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
.icon-audit:before {
|
|
1601
|
+
content: "\e86d";
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
.icon-diff:before {
|
|
1605
|
+
content: "\e86e";
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
.icon-Batchfolding:before {
|
|
1609
|
+
content: "\e86f";
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
.icon-securityscan:before {
|
|
1613
|
+
content: "\e870";
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
.icon-propertysafety:before {
|
|
1617
|
+
content: "\e871";
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
.icon-safetycertificate:before {
|
|
1621
|
+
content: "\e872";
|
|
1622
|
+
}
|
|
1623
|
+
|
|
1624
|
+
.icon-insurance1:before {
|
|
1625
|
+
content: "\e873";
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
.icon-alert:before {
|
|
1629
|
+
content: "\e874";
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
.icon-delete:before {
|
|
1633
|
+
content: "\e875";
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
.icon-hourglass:before {
|
|
1637
|
+
content: "\e876";
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1640
|
+
.icon-bulb:before {
|
|
1641
|
+
content: "\e877";
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
.icon-experiment:before {
|
|
1645
|
+
content: "\e878";
|
|
1646
|
+
}
|
|
1647
|
+
|
|
1648
|
+
.icon-bell:before {
|
|
1649
|
+
content: "\e879";
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
.icon-trophy:before {
|
|
1653
|
+
content: "\e87a";
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
.icon-rest:before {
|
|
1657
|
+
content: "\e87b";
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
.icon-USB:before {
|
|
1661
|
+
content: "\e87c";
|
|
1662
|
+
}
|
|
1663
|
+
|
|
1664
|
+
.icon-skin:before {
|
|
1665
|
+
content: "\e87d";
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1668
|
+
.icon-home1:before {
|
|
1669
|
+
content: "\e87e";
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
.icon-bank:before {
|
|
1673
|
+
content: "\e87f";
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
.icon-filter1:before {
|
|
1677
|
+
content: "\e880";
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1680
|
+
.icon-funnelplot:before {
|
|
1681
|
+
content: "\e881";
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
.icon-like:before {
|
|
1685
|
+
content: "\e883";
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
.icon-unlike:before {
|
|
1689
|
+
content: "\e884";
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
.icon-unlock1:before {
|
|
1693
|
+
content: "\e886";
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
.icon-lock:before {
|
|
1697
|
+
content: "\e887";
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
.icon-gift1:before {
|
|
1701
|
+
content: "\e78b";
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
.icon-form:before {
|
|
1705
|
+
content: "\e78c";
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
.icon-image-text:before {
|
|
1709
|
+
content: "\e78d";
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
.icon-inspection:before {
|
|
1713
|
+
content: "\e78f";
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1716
|
+
.icon-leftbutton:before {
|
|
1717
|
+
content: "\e790";
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
.icon-jewelry:before {
|
|
1721
|
+
content: "\e791";
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1724
|
+
.icon-ipad:before {
|
|
1725
|
+
content: "\e792";
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
.icon-leftarrow:before {
|
|
1729
|
+
content: "\e793";
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
.icon-integral1:before {
|
|
1733
|
+
content: "\e794";
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1736
|
+
.icon-kitchen:before {
|
|
1737
|
+
content: "\e795";
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
.icon-inquiry-template:before {
|
|
1741
|
+
content: "\e796";
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1744
|
+
.icon-link:before {
|
|
1745
|
+
content: "\e797";
|
|
1746
|
+
}
|
|
1747
|
+
|
|
1748
|
+
.icon-libra:before {
|
|
1749
|
+
content: "\e798";
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
.icon-loading:before {
|
|
1753
|
+
content: "\e799";
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
.icon-listing-content:before {
|
|
1757
|
+
content: "\e79a";
|
|
1758
|
+
}
|
|
1759
|
+
|
|
1760
|
+
.icon-lights:before {
|
|
1761
|
+
content: "\e79b";
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1764
|
+
.icon-logistics-icon:before {
|
|
1765
|
+
content: "\e79c";
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
.icon-messagecenter:before {
|
|
1769
|
+
content: "\e79d";
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
.icon-mobile-phone:before {
|
|
1773
|
+
content: "\e79e";
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
.icon-manage-order:before {
|
|
1777
|
+
content: "\e79f";
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
.icon-move:before {
|
|
1781
|
+
content: "\e7a0";
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
.icon-Moneymanagement:before {
|
|
1785
|
+
content: "\e7a1";
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
.icon-namecard:before {
|
|
1789
|
+
content: "\e7a2";
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
.icon-map:before {
|
|
1793
|
+
content: "\e7a3";
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
.icon-Newuserzone:before {
|
|
1797
|
+
content: "\e7a4";
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1800
|
+
.icon-multi-language:before {
|
|
1801
|
+
content: "\e7a5";
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
.icon-office:before {
|
|
1805
|
+
content: "\e7a6";
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
.icon-notice:before {
|
|
1809
|
+
content: "\e7a7";
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
.icon-ontimeshipment:before {
|
|
1813
|
+
content: "\e7a8";
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
.icon-office-supplies:before {
|
|
1817
|
+
content: "\e7a9";
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
.icon-password:before {
|
|
1821
|
+
content: "\e7aa";
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
.icon-Notvisible1:before {
|
|
1825
|
+
content: "\e7ab";
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
.icon-operation:before {
|
|
1829
|
+
content: "\e7ac";
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
.icon-packaging:before {
|
|
1833
|
+
content: "\e7ad";
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
.icon-online-tracking:before {
|
|
1837
|
+
content: "\e7ae";
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
.icon-packing-labeling:before {
|
|
1841
|
+
content: "\e7af";
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
.icon-phone:before {
|
|
1845
|
+
content: "\e7b0";
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
.icon-pic1:before {
|
|
1849
|
+
content: "\e7b1";
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
.icon-pin:before {
|
|
1853
|
+
content: "\e7b2";
|
|
1854
|
+
}
|
|
1855
|
+
|
|
1856
|
+
.icon-play1:before {
|
|
1857
|
+
content: "\e7b3";
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
.icon-print:before {
|
|
1861
|
+
content: "\e7b5";
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
.icon-product:before {
|
|
1865
|
+
content: "\e7b6";
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
.icon-machinery:before {
|
|
1869
|
+
content: "\e7b7";
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
.icon-process:before {
|
|
1873
|
+
content: "\e7b8";
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
.icon-prompt:before {
|
|
1877
|
+
content: "\e7b9";
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
.icon-reeor:before {
|
|
1881
|
+
content: "\e7bb";
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
.icon-reduce:before {
|
|
1885
|
+
content: "\e7bc";
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
.icon-Non-staplefood:before {
|
|
1889
|
+
content: "\e7bd";
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
.icon-rejected-order:before {
|
|
1893
|
+
content: "\e7be";
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1896
|
+
.icon-resonserate:before {
|
|
1897
|
+
content: "\e7bf";
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
.icon-remind:before {
|
|
1901
|
+
content: "\e7c0";
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
.icon-responsetime:before {
|
|
1905
|
+
content: "\e7c1";
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
.icon-return:before {
|
|
1909
|
+
content: "\e7c2";
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
.icon-rising1:before {
|
|
1913
|
+
content: "\e7c4";
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
.icon-Rightarrow:before {
|
|
1917
|
+
content: "\e7c5";
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
.icon-rmb1:before {
|
|
1921
|
+
content: "\e7c6";
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
.icon-RFQ-logo:before {
|
|
1925
|
+
content: "\e7c7";
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
.icon-save:before {
|
|
1929
|
+
content: "\e7c8";
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
.icon-scanning:before {
|
|
1933
|
+
content: "\e7c9";
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
.icon-security:before {
|
|
1937
|
+
content: "\e7ca";
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1940
|
+
.icon-salescenter:before {
|
|
1941
|
+
content: "\e7cb";
|
|
1942
|
+
}
|
|
1943
|
+
|
|
1944
|
+
.icon-seleted:before {
|
|
1945
|
+
content: "\e7cc";
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
.icon-searchcart:before {
|
|
1949
|
+
content: "\e7cd";
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
.icon-raw:before {
|
|
1953
|
+
content: "\e7ce";
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
.icon-service:before {
|
|
1957
|
+
content: "\e7cf";
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
.icon-share:before {
|
|
1961
|
+
content: "\e7d0";
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
.icon-signboard:before {
|
|
1965
|
+
content: "\e7d1";
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
.icon-shuffling-banner:before {
|
|
1969
|
+
content: "\e7d2";
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
.icon-Rightbutton:before {
|
|
1973
|
+
content: "\e7d3";
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
.icon-sorting:before {
|
|
1977
|
+
content: "\e7d4";
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
.icon-sound-Mute:before {
|
|
1981
|
+
content: "\e7d5";
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
.icon-Similarproducts:before {
|
|
1985
|
+
content: "\e7d6";
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
.icon-sound-filling:before {
|
|
1989
|
+
content: "\e7d7";
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
.icon-suggest:before {
|
|
1993
|
+
content: "\e7d8";
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
.icon-stop:before {
|
|
1997
|
+
content: "\e7d9";
|
|
1998
|
+
}
|
|
1999
|
+
|
|
2000
|
+
.icon-success:before {
|
|
2001
|
+
content: "\e7da";
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
.icon-supplier-features:before {
|
|
2005
|
+
content: "\e7db";
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
.icon-switch:before {
|
|
2009
|
+
content: "\e7dc";
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2012
|
+
.icon-survey:before {
|
|
2013
|
+
content: "\e7dd";
|
|
2014
|
+
}
|
|
2015
|
+
|
|
2016
|
+
.icon-template:before {
|
|
2017
|
+
content: "\e7de";
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
.icon-text:before {
|
|
2021
|
+
content: "\e7df";
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2024
|
+
.icon-suspended:before {
|
|
2025
|
+
content: "\e7e0";
|
|
2026
|
+
}
|
|
2027
|
+
|
|
2028
|
+
.icon-task-management:before {
|
|
2029
|
+
content: "\e7e1";
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
.icon-tool:before {
|
|
2033
|
+
content: "\e7e2";
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
.icon-Top:before {
|
|
2037
|
+
content: "\e7e3";
|
|
2038
|
+
}
|
|
2039
|
+
|
|
2040
|
+
.icon-smile:before {
|
|
2041
|
+
content: "\e7e4";
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
.icon-textile-products:before {
|
|
2045
|
+
content: "\e7e5";
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
.icon-tradealert:before {
|
|
2049
|
+
content: "\e7e6";
|
|
2050
|
+
}
|
|
2051
|
+
|
|
2052
|
+
.icon-topsales:before {
|
|
2053
|
+
content: "\e7e7";
|
|
2054
|
+
}
|
|
2055
|
+
|
|
2056
|
+
.icon-tradingvolume:before {
|
|
2057
|
+
content: "\e7e8";
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
.icon-training:before {
|
|
2061
|
+
content: "\e7e9";
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
.icon-upload:before {
|
|
2065
|
+
content: "\e7ea";
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
.icon-RFQ-word:before {
|
|
2069
|
+
content: "\e7eb";
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
.icon-viewlarger:before {
|
|
2073
|
+
content: "\e7ec";
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2076
|
+
.icon-viewgallery:before {
|
|
2077
|
+
content: "\e7ed";
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
.icon-vehivles:before {
|
|
2081
|
+
content: "\e7ee";
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2084
|
+
.icon-trust:before {
|
|
2085
|
+
content: "\e7ef";
|
|
2086
|
+
}
|
|
2087
|
+
|
|
2088
|
+
.icon-warning:before {
|
|
2089
|
+
content: "\e7f0";
|
|
2090
|
+
}
|
|
2091
|
+
|
|
2092
|
+
.icon-warehouse:before {
|
|
2093
|
+
content: "\e7f1";
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2096
|
+
.icon-shoes:before {
|
|
2097
|
+
content: "\e7f2";
|
|
2098
|
+
}
|
|
2099
|
+
|
|
2100
|
+
.icon-video:before {
|
|
2101
|
+
content: "\e7f3";
|
|
2102
|
+
}
|
|
2103
|
+
|
|
2104
|
+
.icon-viewlist:before {
|
|
2105
|
+
content: "\e7f4";
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2108
|
+
.icon-set:before {
|
|
2109
|
+
content: "\e7f5";
|
|
2110
|
+
}
|
|
2111
|
+
|
|
2112
|
+
.icon-store:before {
|
|
2113
|
+
content: "\e7f6";
|
|
2114
|
+
}
|
|
2115
|
+
|
|
2116
|
+
.icon-tool-hardware:before {
|
|
2117
|
+
content: "\e7f7";
|
|
2118
|
+
}
|
|
2119
|
+
|
|
2120
|
+
.icon-vs:before {
|
|
2121
|
+
content: "\e7f8";
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2124
|
+
.icon-toy:before {
|
|
2125
|
+
content: "\e7f9";
|
|
2126
|
+
}
|
|
2127
|
+
|
|
2128
|
+
.icon-sport:before {
|
|
2129
|
+
content: "\e7fa";
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
.icon-creditcard:before {
|
|
2133
|
+
content: "\e7fb";
|
|
2134
|
+
}
|
|
2135
|
+
|
|
2136
|
+
.icon-contacts:before {
|
|
2137
|
+
content: "\e7fc";
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2140
|
+
.icon-checkstand:before {
|
|
2141
|
+
content: "\e7fd";
|
|
2142
|
+
}
|
|
2143
|
+
|
|
2144
|
+
.icon-aviation:before {
|
|
2145
|
+
content: "\e7fe";
|
|
2146
|
+
}
|
|
2147
|
+
|
|
2148
|
+
.icon-Daytimemode:before {
|
|
2149
|
+
content: "\e7ff";
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2152
|
+
.icon-infantmom:before {
|
|
2153
|
+
content: "\e800";
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
.icon-discounts:before {
|
|
2157
|
+
content: "\e801";
|
|
2158
|
+
}
|
|
2159
|
+
|
|
2160
|
+
.icon-invoice:before {
|
|
2161
|
+
content: "\e802";
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
.icon-insurance:before {
|
|
2165
|
+
content: "\e803";
|
|
2166
|
+
}
|
|
2167
|
+
|
|
2168
|
+
.icon-nightmode:before {
|
|
2169
|
+
content: "\e804";
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2172
|
+
.icon-usercenter:before {
|
|
2173
|
+
content: "\e805";
|
|
2174
|
+
}
|
|
2175
|
+
|
|
2176
|
+
.icon-unlock:before {
|
|
2177
|
+
content: "\e806";
|
|
2178
|
+
}
|
|
2179
|
+
|
|
2180
|
+
.icon-vip:before {
|
|
2181
|
+
content: "\e807";
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2184
|
+
.icon-wallet:before {
|
|
2185
|
+
content: "\e808";
|
|
2186
|
+
}
|
|
2187
|
+
|
|
2188
|
+
.icon-landtransportation:before {
|
|
2189
|
+
content: "\e809";
|
|
2190
|
+
}
|
|
2191
|
+
|
|
2192
|
+
.icon-voice:before {
|
|
2193
|
+
content: "\e80a";
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2196
|
+
.icon-exchangerate:before {
|
|
2197
|
+
content: "\e80b";
|
|
2198
|
+
}
|
|
2199
|
+
|
|
2200
|
+
.icon-rankinglist:before {
|
|
2201
|
+
content: "\e856";
|
|
2202
|
+
}
|
|
2203
|
+
|
|
2204
|
+
.icon-collection:before {
|
|
2205
|
+
content: "\e882";
|
|
2206
|
+
}
|
|
2207
|
+
|
|
2208
|
+
.icon-brand:before {
|
|
2209
|
+
content: "\e885";
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2212
|
+
.icon-homepage-ads:before {
|
|
2213
|
+
content: "\e888";
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2216
|
+
.icon-scenes:before {
|
|
2217
|
+
content: "\e88a";
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
.icon-consumption:before {
|
|
2221
|
+
content: "\e88d";
|
|
2222
|
+
}
|
|
2223
|
+
|
|
2224
|
+
.icon-topraning:before {
|
|
2225
|
+
content: "\e88e";
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2228
|
+
.icon-quick:before {
|
|
2229
|
+
content: "\e891";
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
.icon-writing:before {
|
|
2233
|
+
content: "\e892";
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
.icon-Hometextile:before {
|
|
2237
|
+
content: "\e899";
|
|
2238
|
+
}
|
|
2239
|
+
|
|
2240
|
+
.icon-home:before {
|
|
2241
|
+
content: "\e89a";
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
.icon-feed-logo:before {
|
|
2245
|
+
content: "\e89f";
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
.icon-add-select:before {
|
|
2249
|
+
content: "\e8a1";
|
|
2250
|
+
}
|
|
2251
|
+
|
|
2252
|
+
.icon-sami-select:before {
|
|
2253
|
+
content: "\e8a2";
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
.icon-camera:before {
|
|
2257
|
+
content: "\e8a3";
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2260
|
+
.icon-arrow-down:before {
|
|
2261
|
+
content: "\e8a4";
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2264
|
+
.icon-account:before {
|
|
2265
|
+
content: "\e8a5";
|
|
2266
|
+
}
|
|
2267
|
+
|
|
2268
|
+
.icon-comments:before {
|
|
2269
|
+
content: "\e8a6";
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2272
|
+
.icon-cart-Empty1:before {
|
|
2273
|
+
content: "\e8a7";
|
|
2274
|
+
}
|
|
2275
|
+
|
|
2276
|
+
.icon-favorites:before {
|
|
2277
|
+
content: "\e8a8";
|
|
2278
|
+
}
|
|
2279
|
+
|
|
2280
|
+
.icon-order:before {
|
|
2281
|
+
content: "\e8a9";
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2284
|
+
.icon-search:before {
|
|
2285
|
+
content: "\e8aa";
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2288
|
+
.icon-trade-assurance:before {
|
|
2289
|
+
content: "\e8ab";
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2292
|
+
.icon-usercenter1:before {
|
|
2293
|
+
content: "\e8ac";
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
.icon-tradingdata:before {
|
|
2297
|
+
content: "\e8ad";
|
|
2298
|
+
}
|
|
2299
|
+
|
|
2300
|
+
.icon-microphone:before {
|
|
2301
|
+
content: "\e8ae";
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
.icon-banzhengfuwu:before {
|
|
2305
|
+
content: "\e8b1";
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2308
|
+
.icon-cangku:before {
|
|
2309
|
+
content: "\e8b2";
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2312
|
+
.icon-daibancaishui:before {
|
|
2313
|
+
content: "\e8b3";
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
.icon-jizhuangxiang:before {
|
|
2317
|
+
content: "\e8b4";
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2320
|
+
.icon-jiaobiao:before {
|
|
2321
|
+
content: "\e8b5";
|
|
2322
|
+
}
|
|
2323
|
+
|
|
2324
|
+
.icon-kehupandian:before {
|
|
2325
|
+
content: "\e8b6";
|
|
2326
|
+
}
|
|
2327
|
+
|
|
2328
|
+
.icon-dongtai:before {
|
|
2329
|
+
content: "\e8b7";
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2332
|
+
.icon-daikuan:before {
|
|
2333
|
+
content: "\e8b8";
|
|
2334
|
+
}
|
|
2335
|
+
|
|
2336
|
+
.icon-shengyijing:before {
|
|
2337
|
+
content: "\e8b9";
|
|
2338
|
+
}
|
|
2339
|
+
|
|
2340
|
+
.icon-jiehui:before {
|
|
2341
|
+
content: "\e8ba";
|
|
2342
|
+
}
|
|
2343
|
+
|
|
2344
|
+
.icon-fencengpeizhi:before {
|
|
2345
|
+
content: "\e8bb";
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
.icon-auto:before {
|
|
2349
|
+
content: "\e6eb";
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2352
|
+
.icon-shenqingjilu:before {
|
|
2353
|
+
content: "\e8bc";
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
.icon-all:before {
|
|
2357
|
+
content: "\e6ef";
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2360
|
+
.icon-shangchuanbeiandanzheng:before {
|
|
2361
|
+
content: "\e8bd";
|
|
2362
|
+
}
|
|
2363
|
+
|
|
2364
|
+
.icon-bussiness-man:before {
|
|
2365
|
+
content: "\e6f0";
|
|
2366
|
+
}
|
|
2367
|
+
|
|
2368
|
+
.icon-shangchuan:before {
|
|
2369
|
+
content: "\e8be";
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
.icon-component:before {
|
|
2373
|
+
content: "\e6f2";
|
|
2374
|
+
}
|
|
2375
|
+
|
|
2376
|
+
.icon-kehuquanyi:before {
|
|
2377
|
+
content: "\e8bf";
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2380
|
+
.icon-code:before {
|
|
2381
|
+
content: "\e6f3";
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2384
|
+
.icon-suoxiao:before {
|
|
2385
|
+
content: "\e8c0";
|
|
2386
|
+
}
|
|
2387
|
+
|
|
2388
|
+
.icon-copy:before {
|
|
2389
|
+
content: "\e6f4";
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
.icon-quanyipeizhi:before {
|
|
2393
|
+
content: "\e8c1";
|
|
2394
|
+
}
|
|
2395
|
+
|
|
2396
|
+
.icon-dollar:before {
|
|
2397
|
+
content: "\e6f5";
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2400
|
+
.icon-shuangshen:before {
|
|
2401
|
+
content: "\e8c2";
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2404
|
+
.icon-history:before {
|
|
2405
|
+
content: "\e6f8";
|
|
2406
|
+
}
|
|
2407
|
+
|
|
2408
|
+
.icon-tongguan:before {
|
|
2409
|
+
content: "\e8c3";
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
.icon-editor:before {
|
|
2413
|
+
content: "\e6f6";
|
|
2414
|
+
}
|
|
2415
|
+
|
|
2416
|
+
.icon-tuishui:before {
|
|
2417
|
+
content: "\e8c4";
|
|
2418
|
+
}
|
|
2419
|
+
|
|
2420
|
+
.icon-data:before {
|
|
2421
|
+
content: "\e6f9";
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
.icon-tongguanshuju:before {
|
|
2425
|
+
content: "\e8c5";
|
|
2426
|
+
}
|
|
2427
|
+
|
|
2428
|
+
.icon-gift:before {
|
|
2429
|
+
content: "\e6fa";
|
|
2430
|
+
}
|
|
2431
|
+
|
|
2432
|
+
.icon-kuaidiwuliu:before {
|
|
2433
|
+
content: "\e8c6";
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
.icon-integral:before {
|
|
2437
|
+
content: "\e6fb";
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
.icon-wuliuchanpin:before {
|
|
2441
|
+
content: "\e8c7";
|
|
2442
|
+
}
|
|
2443
|
+
|
|
2444
|
+
.icon-nav-list:before {
|
|
2445
|
+
content: "\e6fd";
|
|
2446
|
+
}
|
|
2447
|
+
|
|
2448
|
+
.icon-waihuishuju:before {
|
|
2449
|
+
content: "\e8c8";
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
|
+
.icon-pic:before {
|
|
2453
|
+
content: "\e6ff";
|
|
2454
|
+
}
|
|
2455
|
+
|
|
2456
|
+
.icon-xinxibar_shouji:before {
|
|
2457
|
+
content: "\e8c9";
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
.icon-Notvisible:before {
|
|
2461
|
+
content: "\e6fe";
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
.icon-xinwaizongyewu:before {
|
|
2465
|
+
content: "\e8ca";
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2468
|
+
.icon-play:before {
|
|
2469
|
+
content: "\e701";
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2472
|
+
.icon-wuliudingdan:before {
|
|
2473
|
+
content: "\e8cb";
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
.icon-rising:before {
|
|
2477
|
+
content: "\e703";
|
|
2478
|
+
}
|
|
2479
|
+
|
|
2480
|
+
.icon-zhongjianren:before {
|
|
2481
|
+
content: "\e8cc";
|
|
2482
|
+
}
|
|
2483
|
+
|
|
2484
|
+
.icon-QRcode:before {
|
|
2485
|
+
content: "\e704";
|
|
2486
|
+
}
|
|
2487
|
+
|
|
2488
|
+
.icon-xinxibar_zhanghu:before {
|
|
2489
|
+
content: "\e8cd";
|
|
2490
|
+
}
|
|
2491
|
+
|
|
2492
|
+
.icon-rmb:before {
|
|
2493
|
+
content: "\e705";
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
.icon-similar-product:before {
|
|
2497
|
+
content: "\e707";
|
|
2498
|
+
}
|
|
2499
|
+
|
|
2500
|
+
.icon-zhuanyequanwei:before {
|
|
2501
|
+
content: "\e8cf";
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
.icon-Exportservices:before {
|
|
2505
|
+
content: "\e702";
|
|
2506
|
+
}
|
|
2507
|
+
|
|
2508
|
+
.icon-zhanghucaozuo:before {
|
|
2509
|
+
content: "\e8d0";
|
|
2510
|
+
}
|
|
2511
|
+
|
|
2512
|
+
.icon-sendinquiry:before {
|
|
2513
|
+
content: "\e70d";
|
|
2514
|
+
}
|
|
2515
|
+
|
|
2516
|
+
.icon-xuanzhuandu:before {
|
|
2517
|
+
content: "\e8d1";
|
|
2518
|
+
}
|
|
2519
|
+
|
|
2520
|
+
.icon-column:before {
|
|
2521
|
+
content: "\e741";
|
|
2522
|
+
}
|
|
2523
|
+
|
|
2524
|
+
.icon-tuishuirongzi:before {
|
|
2525
|
+
content: "\e8d2";
|
|
2526
|
+
}
|
|
2527
|
+
|
|
2528
|
+
.icon-add-account:before {
|
|
2529
|
+
content: "\e742";
|
|
2530
|
+
}
|
|
2531
|
+
|
|
2532
|
+
.icon-AddProducts:before {
|
|
2533
|
+
content: "\e8d3";
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
.icon-column1:before {
|
|
2537
|
+
content: "\e743";
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
.icon-ziyingyewu:before {
|
|
2541
|
+
content: "\e8d4";
|
|
2542
|
+
}
|
|
2543
|
+
|
|
2544
|
+
.icon-add:before {
|
|
2545
|
+
content: "\e744";
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
.icon-addcell:before {
|
|
2549
|
+
content: "\e8d5";
|
|
2550
|
+
}
|
|
2551
|
+
|
|
2552
|
+
.icon-agriculture:before {
|
|
2553
|
+
content: "\e745";
|
|
2554
|
+
}
|
|
2555
|
+
|
|
2556
|
+
.icon-cascades:before {
|
|
2557
|
+
content: "\e8d7";
|
|
2558
|
+
}
|
|
2559
|
+
|
|
2560
|
+
.icon-add-cart:before {
|
|
2561
|
+
content: "\e747";
|
|
2562
|
+
}
|
|
2563
|
+
|
|
2564
|
+
.icon-beijing:before {
|
|
2565
|
+
content: "\e8d8";
|
|
2566
|
+
}
|
|
2567
|
+
|
|
2568
|
+
.icon-arrow-right:before {
|
|
2569
|
+
content: "\e748";
|
|
2570
|
+
}
|
|
2571
|
+
|
|
2572
|
+
.icon-bold:before {
|
|
2573
|
+
content: "\e8d9";
|
|
2574
|
+
}
|
|
2575
|
+
|
|
2576
|
+
.icon-arrow-left:before {
|
|
2577
|
+
content: "\e749";
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2580
|
+
.icon-zijin:before {
|
|
2581
|
+
content: "\e8da";
|
|
2582
|
+
}
|
|
2583
|
+
|
|
2584
|
+
.icon-apparel:before {
|
|
2585
|
+
content: "\e74a";
|
|
2586
|
+
}
|
|
2587
|
+
|
|
2588
|
+
.icon-eraser:before {
|
|
2589
|
+
content: "\e8db";
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2592
|
+
.icon-all1:before {
|
|
2593
|
+
content: "\e74b";
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
.icon-centeralignment:before {
|
|
2597
|
+
content: "\e8dc";
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2600
|
+
.icon-arrow-up:before {
|
|
2601
|
+
content: "\e74c";
|
|
2602
|
+
}
|
|
2603
|
+
|
|
2604
|
+
.icon-click:before {
|
|
2605
|
+
content: "\e8dd";
|
|
2606
|
+
}
|
|
2607
|
+
|
|
2608
|
+
.icon-ascending:before {
|
|
2609
|
+
content: "\e74d";
|
|
2610
|
+
}
|
|
2611
|
+
|
|
2612
|
+
.icon-aspjiesuan:before {
|
|
2613
|
+
content: "\e8de";
|
|
2614
|
+
}
|
|
2615
|
+
|
|
2616
|
+
.icon-ashbin:before {
|
|
2617
|
+
content: "\e74e";
|
|
2618
|
+
}
|
|
2619
|
+
|
|
2620
|
+
.icon-flag:before {
|
|
2621
|
+
content: "\e8df";
|
|
2622
|
+
}
|
|
2623
|
+
|
|
2624
|
+
.icon-bad:before {
|
|
2625
|
+
content: "\e750";
|
|
2626
|
+
}
|
|
2627
|
+
|
|
2628
|
+
.icon-Fee:before {
|
|
2629
|
+
content: "\e8e1";
|
|
2630
|
+
}
|
|
2631
|
+
|
|
2632
|
+
.icon-attachent:before {
|
|
2633
|
+
content: "\e751";
|
|
2634
|
+
}
|
|
2635
|
+
|
|
2636
|
+
.icon-filling:before {
|
|
2637
|
+
content: "\e8e2";
|
|
2638
|
+
}
|
|
2639
|
+
|
|
2640
|
+
.icon-browse:before {
|
|
2641
|
+
content: "\e752";
|
|
2642
|
+
}
|
|
2643
|
+
|
|
2644
|
+
.icon-Foreigncurrency:before {
|
|
2645
|
+
content: "\e8e3";
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2648
|
+
.icon-beauty:before {
|
|
2649
|
+
content: "\e753";
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
.icon-guanliyuan:before {
|
|
2653
|
+
content: "\e8e4";
|
|
2654
|
+
}
|
|
2655
|
+
|
|
2656
|
+
.icon-atm-away:before {
|
|
2657
|
+
content: "\e754";
|
|
2658
|
+
}
|
|
2659
|
+
|
|
2660
|
+
.icon-language:before {
|
|
2661
|
+
content: "\e8e5";
|
|
2662
|
+
}
|
|
2663
|
+
|
|
2664
|
+
.icon-assessed-badge:before {
|
|
2665
|
+
content: "\e755";
|
|
2666
|
+
}
|
|
2667
|
+
|
|
2668
|
+
.icon-leftalignment:before {
|
|
2669
|
+
content: "\e8e6";
|
|
2670
|
+
}
|
|
2671
|
+
|
|
2672
|
+
.icon-auto1:before {
|
|
2673
|
+
content: "\e756";
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2676
|
+
.icon-extra-inquiries:before {
|
|
2677
|
+
content: "\e8e7";
|
|
2678
|
+
}
|
|
2679
|
+
|
|
2680
|
+
.icon-bags:before {
|
|
2681
|
+
content: "\e757";
|
|
2682
|
+
}
|
|
2683
|
+
|
|
2684
|
+
.icon-Italic:before {
|
|
2685
|
+
content: "\e8e8";
|
|
2686
|
+
}
|
|
2687
|
+
|
|
2688
|
+
.icon-calendar:before {
|
|
2689
|
+
content: "\e758";
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
.icon-pcm:before {
|
|
2693
|
+
content: "\e8e9";
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
.icon-cart-full:before {
|
|
2697
|
+
content: "\e759";
|
|
2698
|
+
}
|
|
2699
|
+
|
|
2700
|
+
.icon-reducecell:before {
|
|
2701
|
+
content: "\e8ea";
|
|
2702
|
+
}
|
|
2703
|
+
|
|
2704
|
+
.icon-calculator:before {
|
|
2705
|
+
content: "\e75a";
|
|
2706
|
+
}
|
|
2707
|
+
|
|
2708
|
+
.icon-rightalignment:before {
|
|
2709
|
+
content: "\e8eb";
|
|
2710
|
+
}
|
|
2711
|
+
|
|
2712
|
+
.icon-cameraswitching:before {
|
|
2713
|
+
content: "\e75b";
|
|
2714
|
+
}
|
|
2715
|
+
|
|
2716
|
+
.icon-pointerleft:before {
|
|
2717
|
+
content: "\e8ec";
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2720
|
+
.icon-cecurity-protection:before {
|
|
2721
|
+
content: "\e75c";
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2724
|
+
.icon-subscript:before {
|
|
2725
|
+
content: "\e8ed";
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2728
|
+
.icon-category:before {
|
|
2729
|
+
content: "\e75d";
|
|
2730
|
+
}
|
|
2731
|
+
|
|
2732
|
+
.icon-square:before {
|
|
2733
|
+
content: "\e8ee";
|
|
2734
|
+
}
|
|
2735
|
+
|
|
2736
|
+
.icon-close:before {
|
|
2737
|
+
content: "\e75e";
|
|
2738
|
+
}
|
|
2739
|
+
|
|
2740
|
+
.icon-superscript:before {
|
|
2741
|
+
content: "\e8ef";
|
|
2742
|
+
}
|
|
2743
|
+
|
|
2744
|
+
.icon-certified-supplier:before {
|
|
2745
|
+
content: "\e75f";
|
|
2746
|
+
}
|
|
2747
|
+
|
|
2748
|
+
.icon-cart-Empty:before {
|
|
2749
|
+
content: "\e760";
|
|
2750
|
+
}
|
|
2751
|
+
|
|
2752
|
+
.icon-danjuzhuanhuan:before {
|
|
2753
|
+
content: "\e8f1";
|
|
2754
|
+
}
|
|
2755
|
+
|
|
2756
|
+
.icon-code1:before {
|
|
2757
|
+
content: "\e761";
|
|
2758
|
+
}
|
|
2759
|
+
|
|
2760
|
+
.icon-Transfermoney:before {
|
|
2761
|
+
content: "\e8f2";
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2764
|
+
.icon-color:before {
|
|
2765
|
+
content: "\e762";
|
|
2766
|
+
}
|
|
2767
|
+
|
|
2768
|
+
.icon-under-line:before {
|
|
2769
|
+
content: "\e8f3";
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
.icon-conditions:before {
|
|
2773
|
+
content: "\e763";
|
|
2774
|
+
}
|
|
2775
|
+
|
|
2776
|
+
.icon-xiakuangxian:before {
|
|
2777
|
+
content: "\e8f4";
|
|
2778
|
+
}
|
|
2779
|
+
|
|
2780
|
+
.icon-confirm:before {
|
|
2781
|
+
content: "\e764";
|
|
2782
|
+
}
|
|
2783
|
+
|
|
2784
|
+
.icon-shouqi:before {
|
|
2785
|
+
content: "\e8f5";
|
|
2786
|
+
}
|
|
2787
|
+
|
|
2788
|
+
.icon-company:before {
|
|
2789
|
+
content: "\e765";
|
|
2790
|
+
}
|
|
2791
|
+
|
|
2792
|
+
.icon-zhankai:before {
|
|
2793
|
+
content: "\e8f6";
|
|
2794
|
+
}
|
|
2795
|
+
|
|
2796
|
+
.icon-ali-clould:before {
|
|
2797
|
+
content: "\e766";
|
|
2798
|
+
}
|
|
2799
|
+
|
|
2800
|
+
.icon-tongxunlu:before {
|
|
2801
|
+
content: "\e8f7";
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2804
|
+
.icon-copy1:before {
|
|
2805
|
+
content: "\e767";
|
|
2806
|
+
}
|
|
2807
|
+
|
|
2808
|
+
.icon-yiguanzhugongyingshang:before {
|
|
2809
|
+
content: "\e8f8";
|
|
2810
|
+
}
|
|
2811
|
+
|
|
2812
|
+
.icon-credit-level:before {
|
|
2813
|
+
content: "\e768";
|
|
2814
|
+
}
|
|
2815
|
+
|
|
2816
|
+
.icon-goumaipianhao:before {
|
|
2817
|
+
content: "\e8f9";
|
|
2818
|
+
}
|
|
2819
|
+
|
|
2820
|
+
.icon-coupons:before {
|
|
2821
|
+
content: "\e769";
|
|
2822
|
+
}
|
|
2823
|
+
|
|
2824
|
+
.icon-Subscribe:before {
|
|
2825
|
+
content: "\e8fa";
|
|
2826
|
+
}
|
|
2827
|
+
|
|
2828
|
+
.icon-connections:before {
|
|
2829
|
+
content: "\e76a";
|
|
2830
|
+
}
|
|
2831
|
+
|
|
2832
|
+
.icon-becomeagoldsupplier:before {
|
|
2833
|
+
content: "\e8fb";
|
|
2834
|
+
}
|
|
2835
|
+
|
|
2836
|
+
.icon-cry:before {
|
|
2837
|
+
content: "\e76b";
|
|
2838
|
+
}
|
|
2839
|
+
|
|
2840
|
+
.icon-robot:before {
|
|
2841
|
+
content: "\e8ff";
|
|
2842
|
+
}
|
|
2843
|
+
|
|
2844
|
+
.icon-costoms-alearance:before {
|
|
2845
|
+
content: "\e76c";
|
|
2846
|
+
}
|
|
2847
|
+
|
|
2848
|
+
.icon-inspection1:before {
|
|
2849
|
+
content: "\e900";
|
|
2850
|
+
}
|
|
2851
|
+
|
|
2852
|
+
.icon-clock:before {
|
|
2853
|
+
content: "\e76d";
|
|
2854
|
+
}
|
|
2855
|
+
|
|
2856
|
+
.icon-block:before {
|
|
2857
|
+
content: "\e901";
|
|
2858
|
+
}
|
|
2859
|
+
|
|
2860
|
+
.icon-CurrencyConverter:before {
|
|
2861
|
+
content: "\e76e";
|
|
2862
|
+
}
|
|
2863
|
+
|
|
2864
|
+
.icon-shouhuoicon:before {
|
|
2865
|
+
content: "\e902";
|
|
2866
|
+
}
|
|
2867
|
+
|
|
2868
|
+
.icon-cut:before {
|
|
2869
|
+
content: "\e76f";
|
|
2870
|
+
}
|
|
2871
|
+
|
|
2872
|
+
.icon-data1:before {
|
|
2873
|
+
content: "\e770";
|
|
2874
|
+
}
|
|
2875
|
+
|
|
2876
|
+
.icon-Customermanagement:before {
|
|
2877
|
+
content: "\e771";
|
|
2878
|
+
}
|
|
2879
|
+
|
|
2880
|
+
.icon-descending:before {
|
|
2881
|
+
content: "\e772";
|
|
2882
|
+
}
|
|
2883
|
+
|
|
2884
|
+
.icon-double-arro-right:before {
|
|
2885
|
+
content: "\e773";
|
|
2886
|
+
}
|
|
2887
|
+
|
|
2888
|
+
.icon-customization:before {
|
|
2889
|
+
content: "\e774";
|
|
2890
|
+
}
|
|
2891
|
+
|
|
2892
|
+
.icon-double-arrow-left:before {
|
|
2893
|
+
content: "\e775";
|
|
2894
|
+
}
|
|
2895
|
+
|
|
2896
|
+
.icon-discount:before {
|
|
2897
|
+
content: "\e776";
|
|
2898
|
+
}
|
|
2899
|
+
|
|
2900
|
+
.icon-download:before {
|
|
2901
|
+
content: "\e777";
|
|
2902
|
+
}
|
|
2903
|
+
|
|
2904
|
+
.icon-dollar1:before {
|
|
2905
|
+
content: "\e778";
|
|
2906
|
+
}
|
|
2907
|
+
|
|
2908
|
+
.icon-default-template:before {
|
|
2909
|
+
content: "\e779";
|
|
2910
|
+
}
|
|
2911
|
+
|
|
2912
|
+
.icon-editor1:before {
|
|
2913
|
+
content: "\e77a";
|
|
2914
|
+
}
|
|
2915
|
+
|
|
2916
|
+
.icon-eletrical:before {
|
|
2917
|
+
content: "\e77b";
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
.icon-electronics:before {
|
|
2921
|
+
content: "\e77c";
|
|
2922
|
+
}
|
|
2923
|
+
|
|
2924
|
+
.icon-etrical-equipm:before {
|
|
2925
|
+
content: "\e77d";
|
|
2926
|
+
}
|
|
2927
|
+
|
|
2928
|
+
.icon-ellipsis:before {
|
|
2929
|
+
content: "\e77e";
|
|
2930
|
+
}
|
|
2931
|
+
|
|
2932
|
+
.icon-email:before {
|
|
2933
|
+
content: "\e77f";
|
|
2934
|
+
}
|
|
2935
|
+
|
|
2936
|
+
.icon-falling:before {
|
|
2937
|
+
content: "\e780";
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2940
|
+
.icon-earth:before {
|
|
2941
|
+
content: "\e781";
|
|
2942
|
+
}
|
|
2943
|
+
|
|
2944
|
+
.icon-filter:before {
|
|
2945
|
+
content: "\e782";
|
|
2946
|
+
}
|
|
2947
|
+
|
|
2948
|
+
.icon-furniture:before {
|
|
2949
|
+
content: "\e783";
|
|
2950
|
+
}
|
|
2951
|
+
|
|
2952
|
+
.icon-folder:before {
|
|
2953
|
+
content: "\e784";
|
|
2954
|
+
}
|
|
2955
|
+
|
|
2956
|
+
.icon-feeds:before {
|
|
2957
|
+
content: "\e785";
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2960
|
+
.icon-history1:before {
|
|
2961
|
+
content: "\e786";
|
|
2962
|
+
}
|
|
2963
|
+
|
|
2964
|
+
.icon-hardware:before {
|
|
2965
|
+
content: "\e787";
|
|
2966
|
+
}
|
|
2967
|
+
|
|
2968
|
+
.icon-help:before {
|
|
2969
|
+
content: "\e788";
|
|
2970
|
+
}
|
|
2971
|
+
|
|
2972
|
+
.icon-good:before {
|
|
2973
|
+
content: "\e789";
|
|
2974
|
+
}
|
|
2975
|
+
|
|
2976
|
+
.icon-Householdappliances:before {
|
|
2977
|
+
content: "\e78a";
|
|
2978
|
+
}
|
|
2979
|
+
|