UNPKG

@alicloud/console-components

Version:

Alibaba Cloud React Components

33 lines (32 loc) 1.59 kB
/** * title: "操作型" * description: "通过设置align属性设置气泡出现方向,气泡内容通过Children自定义。" */ import React from 'react'; import { Balloon, Button } from '@alicloud/console-components'; var titleStyle = { fontSize: '12px', fontWeight: 500, lineHeight: '20px', marginBottom: '8px', }; var centerStyle = { lineHeight: '20px', fontSize: '12px', fontWeight: 'normal', }; var but = (React.createElement(Button, { id: "topRight", style: { margin: '25px 0 25px 400px', background: '#E5E5E5', } })); var ExtraWithOperation = { trigger: but, content: (React.createElement("div", { style: { width: '266px' } }, React.createElement("div", { style: titleStyle }, "\u7B2C\u4E00\u6B65\u6807\u9898"), React.createElement("span", { style: centerStyle }, "\u70B9\u51FB/\u9F20\u6807\u79FB\u5165\u5143\u7D20\uFF0C\u5F39\u51FA\u6C14\u6CE1\u6D6E\u5C42\uFF0C\u5185\u5BB9\u6587\u6848\u8D85\u51FA\u957F\u5EA6\u540E\u5141\u8BB8\u81EA\u52A8\u6362\u884C\u3002\u70B9\u51FB/\u9F20\u6807\u79FB\u5165\u5143\u7D20\uFF0C\u5F39\u51FA\u6C14\u6CE1\u6D6E\u5C42\uFF0C\u5185\u5BB9\u6587\u6848\u8D85\u51FA\u957F\u5EA6\u540E\u5141\u8BB8\u81EA\u52A8\u6362\u884C\u3002"), React.createElement("div", { style: { marginTop: 8 } }, React.createElement(Button, { type: "primary", size: "small" }, "\u4E0B\u4E00\u6B65")))), }; export default (function () { return (React.createElement(Balloon, { align: "l", trigger: ExtraWithOperation.trigger, triggerType: "click" }, ExtraWithOperation.content)); });