mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(goods-action-button): rerender style after link change (#3145)
fix #3138
This commit is contained in:
parent
c02664bebe
commit
0a512ebd9b
@ -45,7 +45,7 @@
|
|||||||
<van-goods-action custom-class="goods-action-position" safe-area-inset-bottom="{{ false }}">
|
<van-goods-action custom-class="goods-action-position" safe-area-inset-bottom="{{ false }}">
|
||||||
<van-goods-action-icon icon="chat-o" text="客服" />
|
<van-goods-action-icon icon="chat-o" text="客服" />
|
||||||
<van-goods-action-icon icon="shop-o" text="店铺" />
|
<van-goods-action-icon icon="shop-o" text="店铺" />
|
||||||
<van-goods-action-button color="#7232dd" text="加入购物" type="warning" />
|
<van-goods-action-button color="#7232dd" text="加入购物车" type="warning" />
|
||||||
<van-goods-action-button plain color="#7232dd" text="立即购买" />
|
<van-goods-action-button plain color="#7232dd" text="立即购买" />
|
||||||
</van-goods-action>
|
</van-goods-action>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
@ -23,10 +23,6 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
mounted() {
|
|
||||||
this.updateStyle();
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onClick(event: Weapp.Event) {
|
onClick(event: Weapp.Event) {
|
||||||
this.$emit('click', event.detail);
|
this.$emit('click', event.detail);
|
||||||
@ -34,6 +30,10 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
updateStyle() {
|
updateStyle() {
|
||||||
|
if (this.parent == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const { children = [] } = this.parent;
|
const { children = [] } = this.parent;
|
||||||
const { length } = children;
|
const { length } = children;
|
||||||
const index = children.indexOf(this);
|
const index = children.indexOf(this);
|
||||||
|
@ -5,6 +5,15 @@ VantComponent({
|
|||||||
type: 'descendant',
|
type: 'descendant',
|
||||||
name: 'goods-action-button',
|
name: 'goods-action-button',
|
||||||
current: 'goods-action',
|
current: 'goods-action',
|
||||||
|
linked() {
|
||||||
|
this.updateStyle();
|
||||||
|
},
|
||||||
|
unlinked() {
|
||||||
|
this.updateStyle();
|
||||||
|
},
|
||||||
|
linkChanged() {
|
||||||
|
this.updateStyle();
|
||||||
|
},
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
safeAreaInsetBottom: {
|
safeAreaInsetBottom: {
|
||||||
@ -12,4 +21,16 @@ VantComponent({
|
|||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
updateStyle() {
|
||||||
|
wx.nextTick(() => {
|
||||||
|
this.children.forEach(
|
||||||
|
(child: WechatMiniprogram.Component.TrivialInstance) => {
|
||||||
|
child.updateStyle();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user