fix(button): fix open-type not work (#4222)

#4217
This commit is contained in:
rex 2021-05-18 18:22:02 +08:00 committed by GitHub
parent a641b0922d
commit e835808a39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
<button
wx:for="{{ actions }}"
wx:key="index"
open-type="{{ item.disabled || item.loading || canIUseGetUserProfile ? '' : item.openType }}"
open-type="{{ item.disabled || item.loading || (canIUseGetUserProfile && item.openType === 'getUserInfo') ? '' : item.openType }}"
style="{{ item.color ? 'color: ' + item.color : '' }}"
class="{{ utils.bem('action-sheet__item', { disabled: item.disabled || item.loading }) }} {{ item.className || '' }}"
hover-class="van-action-sheet__item--hover"

View File

@ -9,7 +9,7 @@
lang="{{ lang }}"
form-type="{{ formType }}"
style="{{ computed.rootStyle({ plain, color, customStyle }) }}"
open-type="{{ disabled || loading || canIUseGetUserProfile ? '' : openType }}"
open-type="{{ disabled || loading || (canIUseGetUserProfile && openType === 'getUserInfo') ? '' : openType }}"
business-id="{{ businessId }}"
session-from="{{ sessionFrom }}"
send-message-title="{{ sendMessageTitle }}"