mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(GoodsActionButton): incorrect height (#2195)
This commit is contained in:
parent
ad657c7c03
commit
8021bb4ee7
@ -6,26 +6,23 @@
|
||||
}
|
||||
|
||||
.van-goods-action-button {
|
||||
height: 36px !important;
|
||||
height: 40px !important;
|
||||
font-weight: 500 !important;
|
||||
line-height: 34px !important;
|
||||
line-height: 40px !important;
|
||||
border: none !important;
|
||||
.theme(font-size, '@font-size-md') !important;
|
||||
|
||||
&--first {
|
||||
display: block !important;
|
||||
width: auto !important;
|
||||
margin-left: 5px;
|
||||
border-top-left-radius: 18px !important;
|
||||
border-bottom-left-radius: 18px !important;
|
||||
border-top-left-radius: 20px !important;
|
||||
border-bottom-left-radius: 20px !important;
|
||||
}
|
||||
|
||||
&--last {
|
||||
display: block !important;
|
||||
width: auto !important;
|
||||
margin-right: 5px;
|
||||
border-top-right-radius: 18px !important;
|
||||
border-bottom-right-radius: 18px !important;
|
||||
border-top-right-radius: 20px !important;
|
||||
border-bottom-right-radius: 20px !important;
|
||||
}
|
||||
|
||||
&--warning {
|
||||
|
@ -33,22 +33,14 @@ VantComponent({
|
||||
this.$emit('click', event.detail);
|
||||
this.jumpLink();
|
||||
},
|
||||
|
||||
updateStyle() {
|
||||
const { parent } = this;
|
||||
const { children = [] } = parent;
|
||||
const { children = [] } = this.parent;
|
||||
const index = children.indexOf(this);
|
||||
const { length } = children;
|
||||
let isFirst = false;
|
||||
let isLast = false;
|
||||
if (index === 0) {
|
||||
isFirst = true;
|
||||
}
|
||||
if (index === length - 1) {
|
||||
isLast = true;
|
||||
}
|
||||
|
||||
this.setData({
|
||||
isFirst,
|
||||
isLast
|
||||
isFirst: index === 0,
|
||||
isLast: index === children.length - 1
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,6 @@
|
||||
<van-button
|
||||
square
|
||||
id="{{ id }}"
|
||||
size="large"
|
||||
lang="{{ lang }}"
|
||||
type="{{ type }}"
|
||||
color="{{ color }}"
|
||||
|
@ -118,7 +118,7 @@ Page({
|
||||
| url | 点击后跳转的链接地址 | *string* | - | - |
|
||||
| link-type | 链接跳转类型,可选值为 `redirectTo` `switchTab` `reLaunch` | *string* | `navigateTo` | - |
|
||||
| id | 标识符 | *string* | - | - |
|
||||
| type | 按钮类型,可选值为 `primary` `warning` `danger` | *string* | `default` | - |
|
||||
| type | 按钮类型,可选值为 `primary` `warning` `danger` | *string* | `danger` | - |
|
||||
| size | 按钮尺寸,可选值为 `normal` `large` `small` `mini` | *string* | `normal` | - |
|
||||
| disabled | 是否禁用按钮 | *boolean* | `false` | - |
|
||||
| loading | 是否显示为加载状态 | *boolean* | `false` | - |
|
||||
|
Loading…
x
Reference in New Issue
Block a user