login.vue 552 B

123456789101112131415161718192021222324
  1. <template>
  2. <view>
  3. <view class="nav-bar">
  4. <text><navigator open-type="navigateBack"><img src="../../static/my/login_close.png" width="30"></navigator></text>
  5. <text><navigator url="/pages/entry/register">注册</navigator></text>
  6. </view>
  7. <view>登录</view>
  8. </view>
  9. </template>
  10. <script>
  11. </script>
  12. <style>
  13. .nav-bar {
  14. padding-top: 50rpx;
  15. padding-bottom: 10rpx;
  16. display: flex;
  17. justify-content: space-between;
  18. align-items: center;
  19. background: linear-gradient(rgb(255, 152, 101), rgb(255, 122, 85));
  20. height: 125rpx;
  21. }
  22. </style>