about.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view class="page-wrap">
  3. <image class="bg" src="../../static/img_about_bg.jpg" mode="aspectFill"></image>
  4. <image class="logo" src="../../static/icon_logo.png"></image>
  5. <view class="name">
  6. 鑫鑫园区® 综合管理系统
  7. </view>
  8. <view class="version">
  9. 版本 2.1.0.6
  10. </view>
  11. <text class="foot">
  12. ©2023-2029 天津鑫恩华产业园区管理有限公司
  13. All Rights Reserved.
  14. </text>
  15. </view>
  16. </template>
  17. <script>
  18. </script>
  19. <style lang="scss" scoped>
  20. .page-wrap{
  21. height: 100%;
  22. display: flex;
  23. flex-direction: column;
  24. align-items: center;
  25. position: relative;
  26. .bg{
  27. position: fixed;
  28. left: 0;
  29. top: 0;
  30. width: 100%;
  31. height: 100%;
  32. z-index: -1;
  33. }
  34. .logo{
  35. width: 181.32rpx;
  36. height: 181.32rpx;
  37. margin: 274.73rpx 0 21.98rpx;
  38. }
  39. .name{
  40. font-size: 27.47rpx;
  41. color: #555555;
  42. line-height: 41.21rpx;
  43. }
  44. .version{
  45. font-size: 24.73rpx;
  46. color: #666666;
  47. line-height: 41.21rpx;
  48. }
  49. .foot{
  50. position: fixed;
  51. left: 50%;
  52. bottom: 27.47rpx;
  53. transform: translateX(-50%);
  54. font-size: 19.23rpx;
  55. color: #666;
  56. line-height: 27.47rpx;
  57. white-space: nowrap;
  58. text-align: center;
  59. }
  60. }
  61. </style>