mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(Dialog): 增加 title 插槽、confirm-button-color 、cancel-button-color 属性 (#2034)
This commit is contained in:
parent
b6c8ef9fbf
commit
810f20ea2e
@ -40,6 +40,7 @@
|
|||||||
<van-button
|
<van-button
|
||||||
plain
|
plain
|
||||||
type="danger"
|
type="danger"
|
||||||
|
class="demo-margin-right"
|
||||||
bind:click="showCustomDialog"
|
bind:click="showCustomDialog"
|
||||||
>
|
>
|
||||||
组件调用
|
组件调用
|
||||||
|
@ -118,6 +118,7 @@
|
|||||||
| loading-text | 加载状态提示文字 | *string* | - | - |
|
| loading-text | 加载状态提示文字 | *string* | - | - |
|
||||||
| loading-type | 加载状态图标类型,可选值为 `spinner` | *string* | `circular` | - |
|
| loading-type | 加载状态图标类型,可选值为 `spinner` | *string* | `circular` | - |
|
||||||
| loading-size | 加载图标大小 | *string* | `20px` | - |
|
| loading-size | 加载图标大小 | *string* | `20px` | - |
|
||||||
|
| custom-style | 自定义样式 | *string* | - | - |
|
||||||
| open-type | 微信开放能力,具体支持可参考 [微信官方文档](https://mp.weixin.qq.com/debug/wxadoc/dev/component/button.html) | *string* | - | - |
|
| open-type | 微信开放能力,具体支持可参考 [微信官方文档](https://mp.weixin.qq.com/debug/wxadoc/dev/component/button.html) | *string* | - | - |
|
||||||
| app-parameter | 打开 APP 时,向 APP 传递的参数 | *string* | - | - |
|
| app-parameter | 打开 APP 时,向 APP 传递的参数 | *string* | - | - |
|
||||||
| lang | 指定返回用户信息的语言,zh_CN 简体中文,<br>zh_TW 繁体中文,en 英文 | *string* | `en` | - | - |
|
| lang | 指定返回用户信息的语言,zh_CN 简体中文,<br>zh_TW 繁体中文,en 英文 | *string* | `en` | - | - |
|
||||||
|
@ -21,6 +21,7 @@ VantComponent({
|
|||||||
hairline: Boolean,
|
hairline: Boolean,
|
||||||
disabled: Boolean,
|
disabled: Boolean,
|
||||||
loadingText: String,
|
loadingText: String,
|
||||||
|
customStyle: String,
|
||||||
loadingType: {
|
loadingType: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'circular'
|
value: 'circular'
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
class="custom-class {{ utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, hairline, unclickable: disabled || loading }]) }} {{ hairline ? 'van-hairline--surround' : '' }}"
|
class="custom-class {{ utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, hairline, unclickable: disabled || loading }]) }} {{ hairline ? 'van-hairline--surround' : '' }}"
|
||||||
hover-class="van-button--active hover-class"
|
hover-class="van-button--active hover-class"
|
||||||
lang="{{ lang }}"
|
lang="{{ lang }}"
|
||||||
style="{{ style }}"
|
style="{{ style }} {{ customStyle }}"
|
||||||
open-type="{{ openType }}"
|
open-type="{{ openType }}"
|
||||||
business-id="{{ businessId }}"
|
business-id="{{ businessId }}"
|
||||||
session-from="{{ sessionFrom }}"
|
session-from="{{ sessionFrom }}"
|
||||||
|
@ -3,3 +3,4 @@ export const BLUE = '#1989fa';
|
|||||||
export const WHITE = '#fff';
|
export const WHITE = '#fff';
|
||||||
export const GREEN = '#07c160';
|
export const GREEN = '#07c160';
|
||||||
export const ORANGE = '#ff976a';
|
export const ORANGE = '#ff976a';
|
||||||
|
export const GRAY = '#323233';
|
||||||
|
@ -182,9 +182,12 @@ Page({
|
|||||||
| show-cancel-button | 是否展示取消按钮 | *boolean* | `false` |
|
| show-cancel-button | 是否展示取消按钮 | *boolean* | `false` |
|
||||||
| confirm-button-text | 确认按钮的文案 | *string* | `确认` |
|
| confirm-button-text | 确认按钮的文案 | *string* | `确认` |
|
||||||
| cancel-button-text | 取消按钮的文案 | *string* | `取消` |
|
| cancel-button-text | 取消按钮的文案 | *string* | `取消` |
|
||||||
|
| confirm-button-color | 确认按钮的字体颜色 | *string* | `#1989fa` |
|
||||||
|
| cancel-button-color | 取消按钮的字体颜色 | *string* | `#333` |
|
||||||
| overlay | 是否展示蒙层 | *boolean* | `true` |
|
| overlay | 是否展示蒙层 | *boolean* | `true` |
|
||||||
| close-on-click-overlay | 点击蒙层时是否关闭弹窗 | *boolean* | `false` |
|
| close-on-click-overlay | 点击蒙层时是否关闭弹窗 | *boolean* | `false` |
|
||||||
| use-slot | 是否使用自定义内容的插槽 | *boolean* | `false` |
|
| use-slot | 是否使用自定义内容的插槽 | *boolean* | `false` |
|
||||||
|
| use-title-slot | 是否使用自定义标题的插槽 | *boolean* | `false` |
|
||||||
| async-close | 是否异步关闭弹窗,开启后需要手动控制弹窗的关闭 | *boolean* | `false` |
|
| async-close | 是否异步关闭弹窗,开启后需要手动控制弹窗的关闭 | *boolean* | `false` |
|
||||||
| transition | 动画名称,可选值为`fade` | *string* | `scale` |
|
| transition | 动画名称,可选值为`fade` | *string* | `scale` |
|
||||||
| confirm-button-open-type | 确认按钮的微信开放能力,具体支持可参考 [微信官方文档](https://mp.weixin.qq.com/debug/wxadoc/dev/component/button.html) | *string* | - |
|
| confirm-button-open-type | 确认按钮的微信开放能力,具体支持可参考 [微信官方文档](https://mp.weixin.qq.com/debug/wxadoc/dev/component/button.html) | *string* | - |
|
||||||
@ -216,3 +219,9 @@ Page({
|
|||||||
| bind:getphonenumber | 获取用户手机号回调 | - |
|
| bind:getphonenumber | 获取用户手机号回调 | - |
|
||||||
| bind:error | 当使用开放能力时,发生错误的回调 | - |
|
| bind:error | 当使用开放能力时,发生错误的回调 | - |
|
||||||
| bind:opensetting | 在打开授权设置页后回调 | - |
|
| bind:opensetting | 在打开授权设置页后回调 | - |
|
||||||
|
|
||||||
|
### Slot
|
||||||
|
|
||||||
|
| 名称 | 说明 |
|
||||||
|
|-----------|-----------|
|
||||||
|
| title | 自定义`title`显示内容,如果设置了`title`属性则不生效 |
|
@ -56,10 +56,6 @@
|
|||||||
border: 0 !important;
|
border: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__confirm {
|
|
||||||
.theme(color, '@blue') !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
&-bounce-enter {
|
&-bounce-enter {
|
||||||
transform: translate3d(-50%, -50%, 0) scale(0.7);
|
transform: translate3d(-50%, -50%, 0) scale(0.7);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { button } from '../mixins/button';
|
import { button } from '../mixins/button';
|
||||||
import { openType } from '../mixins/open-type';
|
import { openType } from '../mixins/open-type';
|
||||||
|
import { GRAY, BLUE } from '../common/color';
|
||||||
|
|
||||||
type Action = 'confirm' | 'cancel' | 'overlay';
|
type Action = 'confirm' | 'cancel' | 'overlay';
|
||||||
|
|
||||||
@ -16,6 +17,7 @@ VantComponent({
|
|||||||
customStyle: String,
|
customStyle: String,
|
||||||
asyncClose: Boolean,
|
asyncClose: Boolean,
|
||||||
messageAlign: String,
|
messageAlign: String,
|
||||||
|
useTitleSlot: Boolean,
|
||||||
showCancelButton: Boolean,
|
showCancelButton: Boolean,
|
||||||
closeOnClickOverlay: Boolean,
|
closeOnClickOverlay: Boolean,
|
||||||
confirmButtonOpenType: String,
|
confirmButtonOpenType: String,
|
||||||
@ -31,6 +33,14 @@ VantComponent({
|
|||||||
type: String,
|
type: String,
|
||||||
value: '取消'
|
value: '取消'
|
||||||
},
|
},
|
||||||
|
confirmButtonColor: {
|
||||||
|
type: String,
|
||||||
|
value: BLUE
|
||||||
|
},
|
||||||
|
cancelButtonColor: {
|
||||||
|
type: String,
|
||||||
|
value: GRAY
|
||||||
|
},
|
||||||
showConfirmButton: {
|
showConfirmButton: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true
|
value: true
|
||||||
|
@ -9,10 +9,11 @@
|
|||||||
bind:close="onClickOverlay"
|
bind:close="onClickOverlay"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
wx:if="{{ title }}"
|
wx:if="{{ title || useTitleSlot }}"
|
||||||
class="van-dialog__header {{ message || useSlot ? '' : 'van-dialog--isolated' }}"
|
class="van-dialog__header {{ message || useSlot ? '' : 'van-dialog--isolated' }}"
|
||||||
>
|
>
|
||||||
{{ title }}
|
<slot wx:if="{{ useTitleSlot }}" name="title" />
|
||||||
|
<block wx:elif="{{ title }}"> {{ title }}</block>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<slot wx:if="{{ useSlot }}" />
|
<slot wx:if="{{ useSlot }}" />
|
||||||
@ -30,6 +31,7 @@
|
|||||||
loading="{{ loading.cancel }}"
|
loading="{{ loading.cancel }}"
|
||||||
class="van-dialog__button van-hairline--right"
|
class="van-dialog__button van-hairline--right"
|
||||||
custom-class="van-dialog__cancel"
|
custom-class="van-dialog__cancel"
|
||||||
|
custom-style="color: {{ cancelButtonColor }}"
|
||||||
bind:click="onCancel"
|
bind:click="onCancel"
|
||||||
>
|
>
|
||||||
{{ cancelButtonText }}
|
{{ cancelButtonText }}
|
||||||
@ -40,6 +42,7 @@
|
|||||||
class="van-dialog__button"
|
class="van-dialog__button"
|
||||||
loading="{{ loading.confirm }}"
|
loading="{{ loading.confirm }}"
|
||||||
custom-class="van-dialog__confirm"
|
custom-class="van-dialog__confirm"
|
||||||
|
custom-style="color: {{ confirmButtonColor }}"
|
||||||
|
|
||||||
open-type="{{ confirmButtonOpenType }}"
|
open-type="{{ confirmButtonOpenType }}"
|
||||||
lang="{{ lang }}"
|
lang="{{ lang }}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user