about-us.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <view class="about-us">
  3. <custom-nav :title="title"></custom-nav>
  4. <view class="content">
  5. <image src="../../static/appicon/logo.png"></image>
  6. <view class="version">
  7. <text>版本信息</text>
  8. <text>{{ version }}</text>
  9. </view>
  10. <view class="name">— 郑州久卫云科技公司 —</view>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. title: '关于我们'
  19. }
  20. },
  21. computed: {
  22. version() { return this.$store.state.app.version }
  23. }
  24. }
  25. </script>
  26. <style lang="scss">
  27. .about-us {
  28. @include page();
  29. .content {
  30. image {
  31. width: 160rpx;
  32. height: 160rpx;
  33. display: block;
  34. margin: 70rpx auto 60rpx;
  35. }
  36. .version {
  37. @include flex();
  38. height: 90rpx;
  39. padding: 0 30rpx;
  40. font-size: 32rpx;
  41. background: #FFFFFF;
  42. box-sizing: border-box;
  43. justify-content: space-between;
  44. }
  45. .name {
  46. left: 0;
  47. right: 0;
  48. bottom: 40rpx;
  49. position: fixed;
  50. font-size: 26rpx;
  51. text-align: center;
  52. }
  53. }
  54. }
  55. </style>