index.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <view :class="'custom-class ' + utils.bem('goods-action', { safe: safeAreaInsetBottom })">
  3. <slot />
  4. </view>
  5. </template>
  6. <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
  7. <script>
  8. 'use strict';
  9. Object.defineProperty(exports, '__esModule', {
  10. value: true
  11. });
  12. var component_1 = require('../common/component');
  13. component_1.VantComponent({
  14. relation: {
  15. type: 'descendant',
  16. name: 'goods-action-button',
  17. current: 'goods-action',
  18. linked: function () {
  19. this.updateStyle();
  20. },
  21. unlinked: function () {
  22. this.updateStyle();
  23. },
  24. linkChanged: function () {
  25. this.updateStyle();
  26. }
  27. },
  28. props: {
  29. safeAreaInsetBottom: {
  30. type: Boolean,
  31. value: true
  32. }
  33. },
  34. methods: {
  35. updateStyle: function () {
  36. var that = this;
  37. this.$nextTick(function () {
  38. that.children.forEach(function (child) {
  39. child.updateStyle();
  40. });
  41. });
  42. }
  43. }
  44. });
  45. </script>
  46. <style>
  47. @import './index.css';
  48. </style>