index.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <view class="">
  3. <view class="login" v-if="$store.state.is_kg == 1">
  4. <!-- logo部分 -->
  5. <view class="title">
  6. <view class="logo">
  7. <image src="@/static/logo.png" mode="widthFix" style="width: 240rpx;"></image>
  8. </view>
  9. <view class="text">
  10. <view class="">
  11. 鲑鱼数藏
  12. </view>
  13. <view class="">
  14. 欢迎来到你的鲑鱼数藏
  15. </view>
  16. </view>
  17. </view>
  18. <!-- logo部分 结束-->
  19. <view class="logincontent">
  20. <view class="login_phone" @click="href('/pages/login/landLogin')">
  21. 手机号登录
  22. </view>
  23. <view class="login_btn" @click="href('/pages/login/login')">
  24. 账号登录
  25. </view>
  26. <!-- 登录按钮 结束-->
  27. </view>
  28. </view>
  29. <view class="content" v-else>
  30. <view class="">
  31. <image src="@/static/index/04.png" mode="widthFix" style="width: 750rpx;"></image>
  32. </view>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. export default {
  38. components: {},
  39. data() {
  40. return {
  41. }
  42. },
  43. onLoad() {
  44. },
  45. watch: {
  46. },
  47. methods: {
  48. }
  49. }
  50. </script>
  51. <style scoped lang="less">
  52. .login {
  53. width: 100%;
  54. height: 100vh;
  55. background: #171918;
  56. overflow-x: hidden;
  57. color: #fff;
  58. .title {
  59. margin: 100rpx 0 0 96rpx;
  60. .logo {
  61. width: 240rpx;
  62. }
  63. .text {
  64. font-size: 68rpx;
  65. margin-top: 24rpx;
  66. view:last-child {
  67. font-size: 28rpx;
  68. }
  69. }
  70. }
  71. }
  72. .logincontent {
  73. width: 710rpx;
  74. margin: auto;
  75. border-radius: 30rpx;
  76. padding-top: 77rpx;
  77. margin-top: 26rpx;
  78. padding-bottom: 70rpx;
  79. }
  80. .login_phone {
  81. width: 550rpx;
  82. height: 100rpx;
  83. color: #000;
  84. background: linear-gradient(to bottom, #69FF60, #0C9D5B);
  85. font-size: 28rpx;
  86. line-height: 100rpx;
  87. margin: 0 auto;
  88. margin-top: 280rpx;
  89. text-align: center;
  90. border-radius: 138rpx;
  91. }
  92. .login_btn {
  93. width: 550rpx;
  94. height: 100rpx;
  95. color: #fff;
  96. border: #999 1px solid;
  97. font-size: 28rpx;
  98. line-height: 100rpx;
  99. margin: 0 auto;
  100. margin-top: 32rpx;
  101. text-align: center;
  102. border-radius: 138rpx;
  103. }
  104. </style>