about.vue 768 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="page">
  3. <view class="flex flex-center">
  4. <u-image src="/static/images/logo/logo-round.png" width="160rpx" height="160rpx"></u-image>
  5. </view>
  6. <u-text :text="about_us" size="26" lineHeight="48" margin="91rpx 0"></u-text>
  7. <u-text
  8. :text="`版本号 v${version}`"
  9. color="#666"
  10. size="24rpx"
  11. customStyle="position:fixed;bottom:100rpx;left:50%;transform:translate(-50%)"
  12. ></u-text>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. version: this.$store.state.sysInfo.app_version,
  20. about_us: this.$store.state.appconfig.about_us
  21. }
  22. },
  23. methods: {}
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. .page {
  28. background-color: #fff;
  29. padding: 146rpx 77rpx 0;
  30. }
  31. .logo {
  32. width: 400rpx;
  33. height: 400rpx;
  34. }
  35. </style>