123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <template>
- <view class="wrap">
- <view class="top"></view>
- <view class="content">
- <view class="title">欢迎登录XX</view>
- <input class="u-border-bottom" type="number" v-model="tel" placeholder="请输入手机号" />
- <view class="tips">未注册的手机号验证后自动创建XX账号</view>
- <button @tap="submit" :style="[inputStyle]" class="getCaptcha">获取短信验证码</button>
- <view class="alternative">
- <view class="password">密码登录</view>
- <view class="issue">遇到问题</view>
- </view>
- </view>
- <view class="buttom">
- <view class="loginType">
- <view class="wechat item">
- <view class="icon"><u-icon size="70" name="weixin-fill" color="rgb(83,194,64)"></u-icon></view>
- 微信
- </view>
- <view class="QQ item">
- <view class="icon"><u-icon size="70" name="qq-fill" color="rgb(17,183,233)"></u-icon></view>
- QQ
- </view>
- </view>
- <view class="hint">
- 登录代表同意
- <text class="link">XXXX用户协议、隐私政策,</text>
- 并授权使用您的XXXX账号信息(如昵称、头像、收获地址)以便您统一管理
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- tel: ''
- }
- },
- computed: {
- inputStyle() {
- let style = {};
- if(this.tel) {
- style.color = "#fff";
- style.backgroundColor = this.$u.color['warning'];
- }
- return style;
- }
- },
- methods: {
- submit() {
- if(this.$u.test.mobile(this.tel)) {
- this.$u.route({
- url: 'pages/login/code',
- params: {
- tel: this.tel
- }
- })
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .wrap {
- font-size: 28rpx;
- .content {
- width: 600rpx;
- margin: 80rpx auto 0;
- .title {
- text-align: left;
- font-size: 60rpx;
- font-weight: 500;
- margin-bottom: 100rpx;
- }
- input {
- text-align: left;
- margin-bottom: 10rpx;
- padding-bottom: 6rpx;
- }
- .tips {
- color: $u-type-info;
- margin-bottom: 60rpx;
- margin-top: 8rpx;
- }
- .getCaptcha {
- background-color: rgb(253, 243, 208);
- color: $u-tips-color;
- border: none;
- font-size: 30rpx;
- padding: 12rpx 0;
-
- &::after {
- border: none;
- }
- }
- .alternative {
- color: $u-tips-color;
- display: flex;
- justify-content: space-between;
- margin-top: 30rpx;
- }
- }
- .buttom {
- .loginType {
- display: flex;
- padding: 350rpx 150rpx 150rpx 150rpx;
- justify-content:space-between;
-
- .item {
- display: flex;
- flex-direction: column;
- align-items: center;
- color: $u-content-color;
- font-size: 28rpx;
- }
- }
-
- .hint {
- padding: 20rpx 40rpx;
- font-size: 20rpx;
- color: $u-tips-color;
-
- .link {
- color: $u-type-warning;
- }
- }
- }
- }
- </style>
|