123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="page HuoDong">
- 活动
- </view>
- </template>
-
- <script>
- import { createNamespacedHelpers } from 'vuex'
- const { mapState: mapUserState, mapActions: mapUserActions, mapMutations: mapUserMutations } = createNamespacedHelpers('user')
- export default {
- name: 'HuoDong',
- data () {
- return {
- DataLock: false
- }
- },
- computed: {
- ...mapUserState({
- UserInfo: x => x.UserInfo // 用户信息
- })
- },
- components: {
- },
- created () {
- },
- methods: {
- ...mapUserActions([
- ]),
- ...mapUserMutations([
- ]),
- Init () {
- }
- }
- }
- </script>
-
- <style lang="scss">
- @import "page.scss";
- </style>
|