index.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <template>
  2. <view class="content">
  3. <image class="logo" src="/static/logo/logo.png"></image>
  4. <view class="text-area">
  5. <!-- <text class="title">{{title}}</text> -->
  6. <view class="text-area-login">
  7. 登录
  8. </view>
  9. <view class="text-area-content">
  10. <text class="text1">广州医科大</text>
  11. <view class="line"></view>
  12. <text class="text2">实验室管理系统</text>
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. title: 'Hello'
  22. }
  23. },
  24. onLoad() {
  25. },
  26. methods: {
  27. }
  28. }
  29. </script>
  30. <style lang="scss">
  31. .content {
  32. display: flex;
  33. flex-direction: column;
  34. align-items: center;
  35. justify-content: center;
  36. }
  37. .logo {
  38. height: 300rpx;
  39. width: 300rpx;
  40. position: fixed;
  41. top: 30%;
  42. left:50%;
  43. transform: translate(-50%,-50%);
  44. }
  45. .text-area {
  46. display: flex;
  47. justify-content: center;
  48. flex-direction: column;
  49. position: fixed;
  50. top: 60%;
  51. text-align: center;
  52. }
  53. .text-area-login{
  54. font-size: $uni-font-size-lg;
  55. width: 448rpx;
  56. height: 84rpx;
  57. line-height: 84rpx;
  58. text-align: center;
  59. border: 2rpx solid $uni-text-color-black;
  60. border-radius: 38rpx;
  61. }
  62. .title {
  63. font-size: 36rpx;
  64. color: #8f8f94;
  65. }
  66. .text-area-content{
  67. margin-top: 50rpx;
  68. .text1{
  69. color: $uni-text-color;
  70. font-size: 56rpx;
  71. line-height: 150%;
  72. }
  73. .text2{
  74. color: rgba(128, 128, 128, 1);
  75. font-size: 30rpx;
  76. line-height: 150%;
  77. }
  78. .line{
  79. width: 354rpx;
  80. height: 2rpx;
  81. margin: auto;
  82. color: $uni-text-color;
  83. background-color: $uni-text-color-grey;
  84. font-size: 32rpx;
  85. line-height: 150%;
  86. text-align: center;
  87. }
  88. }
  89. </style>