| 123456789101112131415161718192021222324 |
- <template>
- <view>
- <view class="nav-bar">
- <text><navigator open-type="navigateBack"><img src="../../static/my/login_close.png" width="30"></navigator></text>
- <text><navigator url="/pages/entry/register">注册</navigator></text>
- </view>
- <view>登录</view>
- </view>
- </template>
- <script>
- </script>
- <style>
- .nav-bar {
- padding-top: 50rpx;
- padding-bottom: 10rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background: linear-gradient(rgb(255, 152, 101), rgb(255, 122, 85));
- height: 125rpx;
- }
- </style>
|