aboutUs.vue 1010 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <view class="container">
  3. <view class="logoView">
  4. <image mode="aspectFit" :style="{width: '90px', height: '90px'}" src="../static/images/loginLogo.png"></image>
  5. </view>
  6. <view class="logoText">千家地</view>
  7. <view class="copyright">
  8. Copyright@2020 千家地
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. windowWidth: 0
  17. }
  18. },
  19. onLoad() {
  20. uni.getSystemInfo({
  21. success: (res) => {
  22. this.windowWidth = res.windowWidth
  23. }
  24. })
  25. },
  26. }
  27. </script>
  28. <style lang="less" scoped>
  29. .container {
  30. .logoView {
  31. margin-top: 20%;
  32. text-align: center;
  33. padding: 0 20px;
  34. }
  35. .logoText {
  36. text-align: center;
  37. font-size: 12px;
  38. color: #999999;
  39. }
  40. .copyright {
  41. position: absolute;
  42. bottom: 10%;
  43. text-align: center;
  44. width: 100%;
  45. font-size: 12px;
  46. color: #999999;
  47. }
  48. }
  49. </style>