Compare commits
8 Commits
Author | SHA1 | Date |
---|---|---|
zmj | 76daf934b1 | |
zmj | 3bf955d804 | |
zmj | ecf2da62cf | |
zmj | ec33cc6119 | |
zmj | c899d8f472 | |
zmj | 10664005c9 | |
zmj | b115621925 | |
zmj | 4dfa00fa82 |
File diff suppressed because it is too large
Load Diff
|
@ -34,8 +34,8 @@
|
||||||
<up-transition :show="!showWeixin">
|
<up-transition :show="!showWeixin">
|
||||||
<view class="form">
|
<view class="form">
|
||||||
<view class="input">
|
<view class="input">
|
||||||
<up-input :customStyle="{height: '100%'}" v-model="loginForm.phone" placeholderClass="place"
|
<up-input :customStyle="{ height: '100%' }" v-model="loginForm.phone"
|
||||||
border="none" placeholder="请输入手机号" type="number">
|
placeholderClass="place" border="none" placeholder="请输入手机号" type="number">
|
||||||
<template #prefix>
|
<template #prefix>
|
||||||
<image style="height: 40rpx;width: 40rpx;margin-top: 6rpx;"
|
<image style="height: 40rpx;width: 40rpx;margin-top: 6rpx;"
|
||||||
src="https://lihai001.oss-cn-chengdu.aliyuncs.com/def/48491202404281006484208.png">
|
src="https://lihai001.oss-cn-chengdu.aliyuncs.com/def/48491202404281006484208.png">
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
</up-input>
|
</up-input>
|
||||||
</view>
|
</view>
|
||||||
<view class="input">
|
<view class="input">
|
||||||
<up-input :customStyle="{height: '100%'}" v-model="loginForm.code" :maxlength="4"
|
<up-input :customStyle="{ height: '100%' }" v-model="loginForm.code" :maxlength="4"
|
||||||
placeholderClass="place" border="none" placeholder="请输入验证码" type="number">
|
placeholderClass="place" border="none" placeholder="请输入验证码" type="number">
|
||||||
<template #prefix>
|
<template #prefix>
|
||||||
<image style="height: 40rpx;width: 40rpx;margin-top: 6rpx;"
|
<image style="height: 40rpx;width: 40rpx;margin-top: 6rpx;"
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
</template>
|
</template>
|
||||||
<template #suffix>
|
<template #suffix>
|
||||||
<up-code :seconds="seconds" ref="uCodeRef" @change="codeChange"></up-code>
|
<up-code :seconds="seconds" ref="uCodeRef" @change="codeChange"></up-code>
|
||||||
<view style="color: #20B128;" @click="getCode">{{tips}}</view>
|
<view style="color: #20B128;" @click="getCode">{{ tips }}</view>
|
||||||
</template>
|
</template>
|
||||||
</up-input>
|
</up-input>
|
||||||
</view>
|
</view>
|
||||||
|
@ -67,8 +67,8 @@
|
||||||
微信登录
|
微信登录
|
||||||
</view>
|
</view>
|
||||||
<view class="agreement">
|
<view class="agreement">
|
||||||
<image v-if="!isAgree" @click="isAgree=true" src="@/static/icon/n-check.png"></image>
|
<image v-if="!isAgree" @click="isAgree = true" src="@/static/icon/n-check.png"></image>
|
||||||
<image v-else @click="isAgree=false" src="@/static/icon/check.png"></image>
|
<image v-else @click="isAgree = false" src="@/static/icon/check.png"></image>
|
||||||
<view>
|
<view>
|
||||||
我已同意<text>《用户协议》</text>与<text>《隐私政策》</text>
|
我已同意<text>《用户协议》</text>与<text>《隐私政策》</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
Loading…
Reference in New Issue