add popconfirm demo
parent
af93808b70
commit
eddff353fc
|
@ -0,0 +1,33 @@
|
||||||
|
<cn>
|
||||||
|
#### 基本
|
||||||
|
最简单的用法。
|
||||||
|
</cn>
|
||||||
|
|
||||||
|
<us>
|
||||||
|
#### Basic
|
||||||
|
The basic example.
|
||||||
|
</us>
|
||||||
|
|
||||||
|
```html
|
||||||
|
<template>
|
||||||
|
<a-popconfirm title="Are you sure delete this task?" @confirm="confirm" @cancel="cancel" okText="Yes" cancelText="No">
|
||||||
|
<a href="#">Delete</a>
|
||||||
|
</a-popconfirm>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import { message } from 'antd'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
methods: {
|
||||||
|
confirm (e) {
|
||||||
|
console.log(e)
|
||||||
|
message.success('Click on Yes')
|
||||||
|
},
|
||||||
|
cancel (e) {
|
||||||
|
console.log(e)
|
||||||
|
message.error('Click on No')
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
```
|
|
@ -1,29 +0,0 @@
|
||||||
<template>
|
|
||||||
<div>
|
|
||||||
<md>
|
|
||||||
## 基本
|
|
||||||
最简单的用法。
|
|
||||||
</md>
|
|
||||||
<Popconfirm title="Are you sure delete this task?" @confirm="confirm" @cancel="cancel" okText="Yes" cancelText="No">
|
|
||||||
<a href="#">Delete</a>
|
|
||||||
</Popconfirm>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import { Popconfirm, Button } from 'antd'
|
|
||||||
export default {
|
|
||||||
methods: {
|
|
||||||
confirm (e) {
|
|
||||||
console.log(e)
|
|
||||||
},
|
|
||||||
cancel (e) {
|
|
||||||
console.log(e)
|
|
||||||
},
|
|
||||||
},
|
|
||||||
components: {
|
|
||||||
Popconfirm,
|
|
||||||
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</script>
|
|
|
@ -1,28 +1,35 @@
|
||||||
<template>
|
<cn>
|
||||||
<div>
|
#### 条件触发
|
||||||
<md>
|
|
||||||
## 条件触发
|
|
||||||
可以判断是否需要弹出。
|
可以判断是否需要弹出。
|
||||||
</md>
|
</cn>
|
||||||
<Popconfirm
|
|
||||||
title="Are you sure delete this task?"
|
|
||||||
:visible="visible"
|
|
||||||
@visibleChange="handleVisibleChange"
|
|
||||||
@confirm="confirm"
|
|
||||||
@cancel="cancel"
|
|
||||||
okText="Yes"
|
|
||||||
cancelText="No"
|
|
||||||
>
|
|
||||||
<a href="#">Delete a task</a>
|
|
||||||
</Popconfirm>
|
|
||||||
<br />
|
|
||||||
<br />
|
|
||||||
Whether directly execute:<a-checkbox defaultChecked @change="changeCondition" />
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
|
<us>
|
||||||
|
#### Conditional trigger
|
||||||
|
Make it pop up under some conditions.
|
||||||
|
</us>
|
||||||
|
|
||||||
|
```html
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<a-popconfirm
|
||||||
|
title="Are you sure delete this task?"
|
||||||
|
:visible="visible"
|
||||||
|
@visibleChange="handleVisibleChange"
|
||||||
|
@confirm="confirm"
|
||||||
|
@cancel="cancel"
|
||||||
|
okText="Yes"
|
||||||
|
cancelText="No"
|
||||||
|
>
|
||||||
|
<a href="#">Delete a task</a>
|
||||||
|
</a-popconfirm>
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
Whether directly execute:<a-checkbox defaultChecked @change="changeCondition" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { Popconfirm, Checkbox } from 'antd'
|
import { message } from 'antd'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
@ -36,9 +43,11 @@ export default {
|
||||||
},
|
},
|
||||||
confirm () {
|
confirm () {
|
||||||
this.visible = false
|
this.visible = false
|
||||||
|
message.success('Next step.')
|
||||||
},
|
},
|
||||||
cancel () {
|
cancel () {
|
||||||
this.visible = false
|
this.visible = false
|
||||||
|
message.error('Click on cancel.')
|
||||||
},
|
},
|
||||||
handleVisibleChange (visible) {
|
handleVisibleChange (visible) {
|
||||||
if (!visible) {
|
if (!visible) {
|
||||||
|
@ -54,9 +63,6 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
components: {
|
|
||||||
Popconfirm,
|
|
||||||
Checkbox,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
```
|
|
@ -1,30 +1,60 @@
|
||||||
<template>
|
|
||||||
<div>
|
|
||||||
<h1>Basic</h1>
|
|
||||||
<Basic />
|
|
||||||
<h1>Dynamic Trigger</h1>
|
|
||||||
<Trigger />
|
|
||||||
<h1>Local</h1>
|
|
||||||
<Local />
|
|
||||||
<h1>Placement</h1>
|
|
||||||
<Placement />
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<script>
|
<script>
|
||||||
import Basic from './basic'
|
import Basic from './basic.md'
|
||||||
import Trigger from './dynamic-trigger'
|
import Local from './local.md'
|
||||||
import Local from './local'
|
import Placement from './placement.md'
|
||||||
import Placement from './placement'
|
import DynamicTrigger from './dynamic-trigger.md'
|
||||||
|
import CN from '../index.zh-CN.md'
|
||||||
|
import US from '../index.en-US.md'
|
||||||
|
|
||||||
|
const md = {
|
||||||
|
cn: `# Popconfirm
|
||||||
|
|
||||||
|
点击元素,弹出气泡式的确认框。
|
||||||
|
|
||||||
|
## 何时使用
|
||||||
|
|
||||||
|
目标元素的操作需要用户进一步的确认时,在目标元素附近弹出浮层提示,询问用户。
|
||||||
|
|
||||||
|
和 'confirm' 弹出的全屏居中模态对话框相比,交互形式更轻量。。
|
||||||
|
## 代码演示`,
|
||||||
|
us: `# Popconfirm
|
||||||
|
|
||||||
|
A simple and compact confirmation dialog of an action.
|
||||||
|
|
||||||
|
# When To Use
|
||||||
|
|
||||||
|
A simple and compact dialog used for asking for user confirmation.
|
||||||
|
|
||||||
|
The difference with the 'confirm' modal dialog is that it's more lightweight than the static popped full-screen confirm modal.
|
||||||
|
## Examples
|
||||||
|
`,
|
||||||
|
}
|
||||||
export default {
|
export default {
|
||||||
category: 'Components',
|
category: 'Components',
|
||||||
subtitle: '气泡确认框',
|
subtitle: '气泡确认框',
|
||||||
type: 'Feedback',
|
type: 'Feedback',
|
||||||
title: 'Popconfirm',
|
title: 'Popconfirm',
|
||||||
components: {
|
render () {
|
||||||
Basic,
|
return (
|
||||||
Trigger,
|
<div>
|
||||||
Local,
|
<md cn={md.cn} us={md.us}/>
|
||||||
Placement,
|
<br/>
|
||||||
|
<Basic />
|
||||||
|
<br/>
|
||||||
|
<Local />
|
||||||
|
<br/>
|
||||||
|
<Placement />
|
||||||
|
<br/>
|
||||||
|
<DynamicTrigger />
|
||||||
|
<br/>
|
||||||
|
<api>
|
||||||
|
<template slot='cn'>
|
||||||
|
<CN/>
|
||||||
|
</template>
|
||||||
|
<US/>
|
||||||
|
</api>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
<cn>
|
||||||
|
#### 国际化
|
||||||
|
使用 `okText` 和 `cancelText` 自定义按钮文字。
|
||||||
|
</cn>
|
||||||
|
|
||||||
|
<us>
|
||||||
|
#### Locale text
|
||||||
|
Set `okText` and `cancelText` props to customise the button's labels.
|
||||||
|
</us>
|
||||||
|
|
||||||
|
```html
|
||||||
|
<template>
|
||||||
|
<a-popconfirm title="Are you sure?" okText="Yes" cancelText="No">
|
||||||
|
<a href="#">Delete</a>
|
||||||
|
</a-popconfirm>
|
||||||
|
</template>
|
||||||
|
```
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
<template>
|
|
||||||
<div>
|
|
||||||
<md>
|
|
||||||
## 国际化
|
|
||||||
使用 `okText` 和 `cancelText` 自定义按钮文字。
|
|
||||||
</md>
|
|
||||||
<Popconfirm title="Are you sure?" okText="Yes" cancelText="No">
|
|
||||||
<a href="#">Delete</a>
|
|
||||||
</Popconfirm>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import { Popconfirm } from 'antd'
|
|
||||||
export default {
|
|
||||||
components: {
|
|
||||||
Popconfirm,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</script>
|
|
|
@ -0,0 +1,134 @@
|
||||||
|
<cn>
|
||||||
|
#### 位置
|
||||||
|
位置有十二个方向。如需箭头指向目标元素中心,可以设置 `arrowPointAtCenter`。
|
||||||
|
</cn>
|
||||||
|
|
||||||
|
<us>
|
||||||
|
#### Placement
|
||||||
|
There are 12 `placement` options available. Use `arrowPointAtCenter` if you want arrow point at the center of target.
|
||||||
|
</us>
|
||||||
|
|
||||||
|
```html
|
||||||
|
<template>
|
||||||
|
<div id="components-a-popconfirm-demo-placement">
|
||||||
|
<div :style="{ marginLeft: `${buttonWidth}px`, whiteSpace: 'nowrap' }">
|
||||||
|
<a-popconfirm placement="topLeft" okText="Yes" cancelText="No" @confirm="confirm">
|
||||||
|
<template slot="title">
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
</template>
|
||||||
|
<a-button>TL</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
<a-popconfirm placement="top" okText="Yes" cancelText="No" @confirm="confirm">
|
||||||
|
<template slot="title">
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
</template>
|
||||||
|
<a-button>Top</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
<a-popconfirm placement="topRight" okText="Yes" cancelText="No" @confirm="confirm">
|
||||||
|
<template slot="title">
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
</template>
|
||||||
|
<a-button>TR</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
</div>
|
||||||
|
<div :style="{ width: `${buttonWidth}px`, float: 'left' }">
|
||||||
|
<a-popconfirm placement="leftTop" okText="Yes" cancelText="No" @confirm="confirm">
|
||||||
|
<template slot="title">
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
</template>
|
||||||
|
<a-button>LT</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
<a-popconfirm placement="left" okText="Yes" cancelText="No" @confirm="confirm">
|
||||||
|
<template slot="title">
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
</template>
|
||||||
|
<a-button>Left</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
<a-popconfirm placement="leftBottom" okText="Yes" cancelText="No" @confirm="confirm">
|
||||||
|
<template slot="title">
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
</template>
|
||||||
|
<a-button>LB</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
</div>
|
||||||
|
<div :style="{ width: `${buttonWidth}px`, marginLeft: `${buttonWidth * 4 + 24 }px`}">
|
||||||
|
<a-popconfirm placement="rightTop" okText="Yes" cancelText="No" @confirm="confirm">
|
||||||
|
<template slot="title">
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
</template>
|
||||||
|
<a-button>RT</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
<a-popconfirm placement="right" okText="Yes" cancelText="No" @confirm="confirm">
|
||||||
|
<template slot="title">
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
</template>
|
||||||
|
<a-button>Right</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
<a-popconfirm placement="rightBottom" okText="Yes" cancelText="No" @confirm="confirm">
|
||||||
|
<template slot="title">
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
</template>
|
||||||
|
<a-button>RB</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
</div>
|
||||||
|
<div :style="{ marginLeft: `${buttonWidth}px`, clear: 'both', whiteSpace: 'nowrap' }">
|
||||||
|
<a-popconfirm placement="bottomLeft" okText="Yes" cancelText="No" @confirm="confirm">
|
||||||
|
<template slot="title">
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
</template>
|
||||||
|
<a-button>BL</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
<a-popconfirm placement="bottom" okText="Yes" cancelText="No" @confirm="confirm">
|
||||||
|
<template slot="title">
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
</template>
|
||||||
|
<a-button>Bottom</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
<a-popconfirm placement="bottomRight" okText="Yes" cancelText="No" @confirm="confirm">
|
||||||
|
<template slot="title">
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
<p>Are you sure delete this task?</p>
|
||||||
|
</template>
|
||||||
|
<a-button>BR</a-button>
|
||||||
|
</a-popconfirm>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import { message } from 'antd'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
buttonWidth: 70,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
confirm () {
|
||||||
|
message.info('Click on Yes.')
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style scoped>
|
||||||
|
#components-a-popconfirm-demo-placement .ant-btn {
|
||||||
|
width: 70px;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0;
|
||||||
|
margin-right: 8px;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
```
|
||||||
|
|
|
@ -1,129 +0,0 @@
|
||||||
<template>
|
|
||||||
<div id="components-popconfirm-demo-placement">
|
|
||||||
<md>
|
|
||||||
## 位置
|
|
||||||
位置有十二个方向。如需箭头指向目标元素中心,可以设置 `arrowPointAtCenter`。
|
|
||||||
</md>
|
|
||||||
<div :style="{ marginLeft: `${buttonWidth}px`, whiteSpace: 'nowrap' }">
|
|
||||||
<Popconfirm placement="topLeft" okText="Yes" cancelText="No" @confirm="confirm">
|
|
||||||
<template slot="title">
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
</template>
|
|
||||||
<a-button>TL</a-button>
|
|
||||||
</Popconfirm>
|
|
||||||
<Popconfirm placement="top" okText="Yes" cancelText="No" @confirm="confirm">
|
|
||||||
<template slot="title">
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
</template>
|
|
||||||
<a-button>Top</a-button>
|
|
||||||
</Popconfirm>
|
|
||||||
<Popconfirm placement="topRight" okText="Yes" cancelText="No" @confirm="confirm">
|
|
||||||
<template slot="title">
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
</template>
|
|
||||||
<a-button>TR</a-button>
|
|
||||||
</Popconfirm>
|
|
||||||
</div>
|
|
||||||
<div :style="{ width: `${buttonWidth}px`, float: 'left' }">
|
|
||||||
<Popconfirm placement="leftTop" okText="Yes" cancelText="No" @confirm="confirm">
|
|
||||||
<template slot="title">
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
</template>
|
|
||||||
<a-button>LT</a-button>
|
|
||||||
</Popconfirm>
|
|
||||||
<Popconfirm placement="left" okText="Yes" cancelText="No" @confirm="confirm">
|
|
||||||
<template slot="title">
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
</template>
|
|
||||||
<a-button>Left</a-button>
|
|
||||||
</Popconfirm>
|
|
||||||
<Popconfirm placement="leftBottom" okText="Yes" cancelText="No" @confirm="confirm">
|
|
||||||
<template slot="title">
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
</template>
|
|
||||||
<a-button>LB</a-button>
|
|
||||||
</Popconfirm>
|
|
||||||
</div>
|
|
||||||
<div :style="{ width: `${buttonWidth}px`, marginLeft: `${buttonWidth * 4 + 24 }px`}">
|
|
||||||
<Popconfirm placement="rightTop" okText="Yes" cancelText="No" @confirm="confirm">
|
|
||||||
<template slot="title">
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
</template>
|
|
||||||
<a-button>RT</a-button>
|
|
||||||
</Popconfirm>
|
|
||||||
<Popconfirm placement="right" okText="Yes" cancelText="No" @confirm="confirm">
|
|
||||||
<template slot="title">
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
</template>
|
|
||||||
<a-button>Right</a-button>
|
|
||||||
</Popconfirm>
|
|
||||||
<Popconfirm placement="rightBottom" okText="Yes" cancelText="No" @confirm="confirm">
|
|
||||||
<template slot="title">
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
</template>
|
|
||||||
<a-button>RB</a-button>
|
|
||||||
</Popconfirm>
|
|
||||||
</div>
|
|
||||||
<div :style="{ marginLeft: `${buttonWidth}px`, clear: 'both', whiteSpace: 'nowrap' }">
|
|
||||||
<Popconfirm placement="bottomLeft" okText="Yes" cancelText="No" @confirm="confirm">
|
|
||||||
<template slot="title">
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
</template>
|
|
||||||
<a-button>BL</a-button>
|
|
||||||
</Popconfirm>
|
|
||||||
<Popconfirm placement="bottom" okText="Yes" cancelText="No" @confirm="confirm">
|
|
||||||
<template slot="title">
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
</template>
|
|
||||||
<a-button>Bottom</a-button>
|
|
||||||
</Popconfirm>
|
|
||||||
<Popconfirm placement="bottomRight" okText="Yes" cancelText="No" @confirm="confirm">
|
|
||||||
<template slot="title">
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
<p>Are you sure delete this task?</p>
|
|
||||||
</template>
|
|
||||||
<a-button>BR</a-button>
|
|
||||||
</Popconfirm>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import { Popconfirm, Button } from 'antd'
|
|
||||||
export default {
|
|
||||||
data () {
|
|
||||||
return {
|
|
||||||
buttonWidth: 70,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
confirm () {
|
|
||||||
console.log('Click on Yes')
|
|
||||||
},
|
|
||||||
},
|
|
||||||
components: {
|
|
||||||
Popconfirm,
|
|
||||||
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<style>
|
|
||||||
#components-popconfirm-demo-placement .ant-btn {
|
|
||||||
width: 70px;
|
|
||||||
text-align: center;
|
|
||||||
padding: 0;
|
|
||||||
margin-right: 8px;
|
|
||||||
margin-bottom: 8px;
|
|
||||||
}
|
|
||||||
</style>
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
## API
|
||||||
|
|
||||||
|
| Param | Description | Type | Default value |
|
||||||
|
| ----- | ----------- | ---- | ------------- |
|
||||||
|
| cancelText | text of the Cancel button | string | `Cancel` |
|
||||||
|
| okText | text of the Confirm button | string | `Confirm` |
|
||||||
|
| okType | Button `type` of the Confirm button | string | `primary` |
|
||||||
|
| title | title of the confirmation box | string\|slot | - |
|
||||||
|
|
||||||
|
### events
|
||||||
|
| Events Name | Description | Arguments |
|
||||||
|
| --- | --- | --- |
|
||||||
|
| cancel | callback of cancel | function(e) | - |
|
||||||
|
| confirm | callback of confirmation | function(e) | - |
|
||||||
|
| visibleChange | Callback executed when visibility of the tooltip card is changed | function(visible) | - |
|
||||||
|
|
||||||
|
Consult [Tooltip's documentation](#/us/components/tooltip/#API) to find more APIs.
|
||||||
|
|
||||||
|
## Note
|
||||||
|
|
||||||
|
Please ensure that the child node of `Popconfirm` accepts `mouseenter`, `mouseleave`, `focus`, `click` events.
|
|
@ -1,33 +1,20 @@
|
||||||
---
|
|
||||||
category: Components
|
|
||||||
subtitle: 气泡确认框
|
|
||||||
type: Feedback
|
|
||||||
title: Popconfirm
|
|
||||||
---
|
|
||||||
|
|
||||||
点击元素,弹出气泡式的确认框。
|
|
||||||
|
|
||||||
## 何时使用
|
|
||||||
|
|
||||||
目标元素的操作需要用户进一步的确认时,在目标元素附近弹出浮层提示,询问用户。
|
|
||||||
|
|
||||||
和 `confirm` 弹出的全屏居中模态对话框相比,交互形式更轻量。
|
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
| 参数 | 说明 | 类型 | 默认值 |
|
| 参数 | 说明 | 类型 | 默认值 |
|
||||||
| --- | --- | --- | --- |
|
| --- | --- | --- | --- |
|
||||||
| cancelText | 取消按钮文字 | string\|function\|slot | 取消 |
|
| cancelText | 取消按钮文字 | string | 取消 |
|
||||||
| okText | 确认按钮文字 | string\|function\|slot | 确定 |
|
| okText | 确认按钮文字 | string | 确定 |
|
||||||
| okType | 确认按钮类型 | string | primary |
|
| okType | 确认按钮类型 | string | primary |
|
||||||
| title | 确认框的描述 | string\|function\|slot | 无 |
|
| title | 确认框的描述 | string\|slot | 无 |
|
||||||
|
|
||||||
### 事件
|
### 事件
|
||||||
| 事件名称 | 说明 | 回调参数 |
|
| 事件名称 | 说明 | 回调参数 |
|
||||||
| cancel | 点击取消时触发 | (e) |
|
| --- | --- | --- |
|
||||||
| confirm | 点击确认时触发 | (e) |
|
| cancel | 点击取消的回调 | function(e) |
|
||||||
|
| confirm | 点击确认的回调 | function(e) |
|
||||||
|
| visibleChange | 显示隐藏的回调 | function(visible) |
|
||||||
|
|
||||||
更多属性请参考 [Tooltip](#/cn/components/tooltip/API)。
|
更多属性请参考 [Tooltip](#/cn/components/tooltip/#API)。
|
||||||
|
|
||||||
## 注意
|
## 注意
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,6 @@ export const RateProps = {
|
||||||
allowHalf: PropTypes.bool,
|
allowHalf: PropTypes.bool,
|
||||||
allowClear: PropTypes.bool,
|
allowClear: PropTypes.bool,
|
||||||
disabled: PropTypes.bool,
|
disabled: PropTypes.bool,
|
||||||
hoverChange: PropTypes.func,
|
|
||||||
character: PropTypes.any,
|
character: PropTypes.any,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -73,14 +73,14 @@ export default {
|
||||||
cleanedValue: null,
|
cleanedValue: null,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.$emit('hover-change', hoverValue)
|
this.$emit('hoverChange', hoverValue)
|
||||||
},
|
},
|
||||||
onMouseLeave () {
|
onMouseLeave () {
|
||||||
this.setState({
|
this.setState({
|
||||||
hoverValue: undefined,
|
hoverValue: undefined,
|
||||||
cleanedValue: null,
|
cleanedValue: null,
|
||||||
})
|
})
|
||||||
this.$emit('hover-change', undefined)
|
this.$emit('hoverChange', undefined)
|
||||||
},
|
},
|
||||||
onClick (event, index) {
|
onClick (event, index) {
|
||||||
const value = this.getStarValue(index, event.pageX)
|
const value = this.getStarValue(index, event.pageX)
|
||||||
|
|
|
@ -3,7 +3,7 @@ const AsyncComp = () => {
|
||||||
const hashs = window.location.hash.split('/')
|
const hashs = window.location.hash.split('/')
|
||||||
const d = hashs[hashs.length - 1]
|
const d = hashs[hashs.length - 1]
|
||||||
return {
|
return {
|
||||||
component: import(`../components/rate/demo/${d}`),
|
component: import(`../components/popconfirm/demo/${d}`),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
export default [
|
export default [
|
||||||
|
|
Loading…
Reference in New Issue