From 0a512ebd9b0cff8041130f03e6ca2d6cea269016 Mon Sep 17 00:00:00 2001 From: rex Date: Wed, 13 May 2020 18:00:01 +0800 Subject: [PATCH] fix(goods-action-button): rerender style after link change (#3145) fix #3138 --- example/pages/goods-action/index.wxml | 2 +- packages/goods-action-button/index.ts | 8 ++++---- packages/goods-action/index.ts | 21 +++++++++++++++++++++ 3 files changed, 26 insertions(+), 5 deletions(-) diff --git a/example/pages/goods-action/index.wxml b/example/pages/goods-action/index.wxml index 9aa29e3f..ce606803 100644 --- a/example/pages/goods-action/index.wxml +++ b/example/pages/goods-action/index.wxml @@ -45,7 +45,7 @@ - + diff --git a/packages/goods-action-button/index.ts b/packages/goods-action-button/index.ts index dfd8f0bb..21634001 100644 --- a/packages/goods-action-button/index.ts +++ b/packages/goods-action-button/index.ts @@ -23,10 +23,6 @@ VantComponent({ }, }, - mounted() { - this.updateStyle(); - }, - methods: { onClick(event: Weapp.Event) { this.$emit('click', event.detail); @@ -34,6 +30,10 @@ VantComponent({ }, updateStyle() { + if (this.parent == null) { + return; + } + const { children = [] } = this.parent; const { length } = children; const index = children.indexOf(this); diff --git a/packages/goods-action/index.ts b/packages/goods-action/index.ts index 39b441c5..acb6cb4f 100644 --- a/packages/goods-action/index.ts +++ b/packages/goods-action/index.ts @@ -5,6 +5,15 @@ VantComponent({ type: 'descendant', name: 'goods-action-button', current: 'goods-action', + linked() { + this.updateStyle(); + }, + unlinked() { + this.updateStyle(); + }, + linkChanged() { + this.updateStyle(); + }, }, props: { safeAreaInsetBottom: { @@ -12,4 +21,16 @@ VantComponent({ value: true, }, }, + + methods: { + updateStyle() { + wx.nextTick(() => { + this.children.forEach( + (child: WechatMiniprogram.Component.TrivialInstance) => { + child.updateStyle(); + } + ); + }); + }, + }, });