Contact.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <div>
  3. <common @asynCallBack="asynCallBack" :projectCheck="false"></common>
  4. <top-header :pageTitle="pageTitle" :leftShow="false"></top-header>
  5. <div>
  6. <img src="~$project/assets/img/about.jpg" width="100%" style="margin-top:44px" />
  7. </div>
  8. <loading :visible="isLoading"></loading>
  9. </div>
  10. </template>
  11. <script>
  12. import Common from '$project/components/Common.vue'
  13. import Loading from '$project/components/Loading.vue'
  14. import TopHeader from '$project/components/TopHeader.vue'
  15. import {
  16. mapGetters,
  17. mapMutations
  18. } from 'vuex'
  19. export default {
  20. name: 'WxAboutContact',
  21. components: {
  22. Common,
  23. Loading,
  24. TopHeader
  25. },
  26. data() {
  27. return {
  28. pageTitle: '关于我们',
  29. isLoading: false,
  30. }
  31. },
  32. created() {
  33. },
  34. methods: {
  35. asynCallBack() {
  36. },
  37. },
  38. mounted() {},
  39. destroyed() {
  40. },
  41. computed: {
  42. ...mapGetters({
  43. openId: 'wx_openid',
  44. token: 'token',
  45. person_data: 'person_data',
  46. person_popedom: 'person_popedom',
  47. vister_scene: 'vister_scene',
  48. })
  49. }
  50. }
  51. </script>
  52. <style>
  53. </style>