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(); + } + ); + }); + }, + }, });