aboutUs.vue 1003 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view class="container">
  3. <view class="logoView">
  4. <image mode="aspectFit" :style="{width: windowWidth*0.5, height: windowWidth*0.5}" 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. text-align: center;
  32. padding: 0 20px;
  33. }
  34. .logoText {
  35. text-align: center;
  36. font-size: 12px;
  37. color: #999999;
  38. }
  39. .copyright {
  40. position: absolute;
  41. bottom: 10%;
  42. text-align: center;
  43. width: 100%;
  44. font-size: 12px;
  45. color: #999999;
  46. }
  47. }
  48. </style>