123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="page HuoDong">
  3. 活动
  4. </view>
  5. </template>
  6. <script>
  7. import { createNamespacedHelpers } from 'vuex'
  8. const { mapState: mapUserState, mapActions: mapUserActions, mapMutations: mapUserMutations } = createNamespacedHelpers('user')
  9. export default {
  10. name: 'HuoDong',
  11. data () {
  12. return {
  13. DataLock: false
  14. }
  15. },
  16. computed: {
  17. ...mapUserState({
  18. UserInfo: x => x.UserInfo // 用户信息
  19. })
  20. },
  21. components: {
  22. },
  23. created () {
  24. },
  25. methods: {
  26. ...mapUserActions([
  27. ]),
  28. ...mapUserMutations([
  29. ]),
  30. Init () {
  31. }
  32. }
  33. }
  34. </script>
  35. <style lang="scss">
  36. @import "page.scss";
  37. </style>