[improvement] remove unworked button props (#870)

This commit is contained in:
neverland 2018-11-06 21:41:27 +08:00 committed by GitHub
parent dcc7396b06
commit 5f87de0803
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 4 additions and 28 deletions

View File

@ -75,8 +75,6 @@
| square | 是否为方形按钮 | `Boolean` | `false` |
| open-type | 微信开放能力,具体支持可参考 [微信官方文档](https://mp.weixin.qq.com/debug/wxadoc/dev/component/button.html) | `String` | - |
| app-parameter | 打开 APP 时,向 APP 传递的参数 | `String` | - |
| hover-start-time | 按住后多久出现点击态,单位毫秒 | `Number` | 20 |
| hover-stay-time | 手指松开后点击态保留时间,单位毫秒 | `Number` | 70 |
| lang | 指定返回用户信息的语言zh_CN 简体中文,<br>zh_TW 繁体中文en 英文 | `String` | `en` |
| session-from | 会话来源 | `String` | - |
| send-message-title | 会话内消息卡片标题 | `String` | 当前标题 |

View File

@ -27,7 +27,7 @@ VantComponent({
computed: {
classes(): string {
const { type, size, block, plain, round, square, loading, disabled } = this.data;
return this.classNames(`van-button--${type}`, `van-button--${size}`, {
return this.classNames('custom-class', 'van-button', `van-button--${type}`, `van-button--${size}`, {
'van-button--block': block,
'van-button--round': round,
'van-button--plain': plain,

View File

@ -1,12 +1,9 @@
<button
id="{{ id }}"
lang="{{ lang }}"
class="custom-class van-button {{ classes }}"
class="{{ classes }}"
open-type="{{ openType }}"
app-parameter="{{ appParameter }}"
hover-stay-time="{{ hoverStayTime }}"
hover-start-time="{{ hoverStartTime }}"
hover-stop-propagation="{{ hoverStopPropagation }}"
session-from="{{ sessionFrom }}"
send-message-title="{{ sendMessageTitle }}"
send-message-path="{{ sendMessagePath }}"

View File

@ -9,9 +9,6 @@
open-type="{{ openType }}"
custom-class="custom-class"
app-parameter="{{ appParameter }}"
hover-stay-time="{{ hoverStayTime }}"
hover-start-time="{{ hoverStartTime }}"
hover-stop-propagation="{{ hoverStopPropagation }}"
session-from="{{ sessionFrom }}"
send-message-title="{{ sendMessageTitle }}"
send-message-path="{{ sendMessagePath }}"

View File

@ -8,9 +8,6 @@
open-type="{{ openType }}"
custom-class="van-goods-action-icon"
app-parameter="{{ appParameter }}"
hover-stay-time="{{ hoverStayTime }}"
hover-start-time="{{ hoverStartTime }}"
hover-stop-propagation="{{ hoverStopPropagation }}"
session-from="{{ sessionFrom }}"
send-message-title="{{ sendMessageTitle }}"
send-message-path="{{ sendMessagePath }}"

View File

@ -79,8 +79,6 @@ Page({
| loading | 是否显示为加载状态 | `Boolean` | `false` |
| open-type | 微信开放能力,具体支持可参考 [微信官方文档](https://mp.weixin.qq.com/debug/wxadoc/dev/component/button.html) | `String` | - |
| app-parameter | 打开 APP 时,向 APP 传递的参数 | `String` | - |
| hover-start-time | 按住后多久出现点击态,单位毫秒 | `Number` | 20 |
| hover-stay-time | 手指松开后点击态保留时间,单位毫秒 | `Number` | 70 |
| lang | 指定返回用户信息的语言zh_CN 简体中文,<br>zh_TW 繁体中文en 英文 | `String` | `en` |
| session-from | 会话来源 | `String` | - |
| send-message-title | 会话内消息卡片标题 | `String` | 当前标题 |
@ -102,8 +100,6 @@ Page({
| loading | 是否显示为加载状态 | `Boolean` | `false` |
| open-type | 微信开放能力,具体支持可参考 [微信官方文档](https://mp.weixin.qq.com/debug/wxadoc/dev/component/button.html) | `String` | - |
| app-parameter | 打开 APP 时,向 APP 传递的参数 | `String` | - |
| hover-start-time | 按住后多久出现点击态,单位毫秒 | `Number` | 20 |
| hover-stay-time | 手指松开后点击态保留时间,单位毫秒 | `Number` | 70 |
| lang | 指定返回用户信息的语言zh_CN 简体中文,<br>zh_TW 繁体中文en 英文 | `String` | `en` |
| session-from | 会话来源 | `String` | - |
| send-message-title | 会话内消息卡片标题 | `String` | 当前标题 |

View File

@ -7,15 +7,6 @@ export const button = Behavior({
sendMessagePath: String,
showMessageCard: String,
sendMessageTitle: String,
hoverStopPropagation: Boolean,
hoverStartTime: {
type: Number,
value: 20
},
hoverStayTime: {
type: Number,
value: 70
},
lang: {
type: String,
value: 'en'

View File

@ -14,7 +14,7 @@
catch:touchmove="noop"
>
<!-- text only -->
<view wx:if="{{ type === 'text' }}">{{ message }}</view>
<text wx:if="{{ type === 'text' }}">{{ message }}</text>
<!-- with icon -->
<block wx:else>
@ -25,7 +25,7 @@
custom-class="van-toast__loading"
/>
<van-icon wx:else class="van-toast__icon" name="{{ type }}" />
<view wx:if="{{ message }}" class="van-toast__text">{{ message }}</view>
<text wx:if="{{ message }}" class="van-toast__text">{{ message }}</text>
</block>
</view>
</van-transition>