1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <template>
- <div>
- <common @asynCallBack="asynCallBack" :projectCheck="false"></common>
- <top-header :pageTitle="pageTitle" :leftShow="false"></top-header>
- <div>
- <img src="~$project/assets/img/about.jpg" width="100%" style="margin-top:44px" />
- </div>
- <loading :visible="isLoading"></loading>
- </div>
- </template>
- <script>
- import Common from '$project/components/Common.vue'
- import Loading from '$project/components/Loading.vue'
- import TopHeader from '$project/components/TopHeader.vue'
- import {
- mapGetters,
- mapMutations
- } from 'vuex'
- export default {
- name: 'WxAboutContact',
- components: {
- Common,
- Loading,
- TopHeader
- },
- data() {
- return {
- pageTitle: '关于我们',
- isLoading: false,
- }
- },
- created() {
- },
- methods: {
- asynCallBack() {
- },
- },
- mounted() {},
- destroyed() {
- },
- computed: {
- ...mapGetters({
- openId: 'wx_openid',
- token: 'token',
- person_data: 'person_data',
- person_popedom: 'person_popedom',
- vister_scene: 'vister_scene',
- })
- }
- }
- </script>
- <style>
- </style>
|