123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- <template>
- <view class="login-page">
- <view class="title">
- <view>欢迎使用WORKARK</view>
- </view>
- <view class="form">
- <view class="tab">
- <view :class="loginType == 1 ? 'tab-item select type1' : 'tab-item type1'" @click="loginType=1">验证码登录
- </view>
- <view :class="loginType == 2 ? 'tab-item select type2' : 'tab-item type2'" @click="loginType=2">账号密码登陆
- </view>
- </view>
- <view class="inputs_button">
- <view class="inputs">
- <view class="account">
- <input type="number" v-model="account" :adjust-position="false" placeholder="手机号" />
- </view>
- <view class="password" v-if="loginType==2">
- <input :type="pwdShow? 'text' : 'password'" v-model="password" :adjust-position="false"
- placeholder="密码" />
- <uni-icons :type="pwdShow? 'eye-filled' : 'eye-slash-filled'" size="24" color="#cccccc"
- @click="pwdShow=!pwdShow">
- </uni-icons>
- </view>
- <view class="vcode" v-if="loginType==1">
- <input type="number" v-model="vcode" :adjust-position="false" placeholder="验证码" />
- <text v-if="vcodeTime==0" style="color:#3264ed" @click="getVcode">获取验证码</text>
- <text v-else style="color:#ccc">重新获取({{vcodeTime}}s)</text>
- </view>
- </view>
- <view class="button">
- <view @click="login">
- 登录
- </view>
- </view>
- </view>
- </view>
- <view class="pact">
- <radio :checked="pactChecked" activeBackgroundColor="#3264ed" activeBorderColor="#3264ed"
- borderColor="#3264ed" color="#fff" @click="pactChange" />
- <view>我已阅读并同意<text @click="toPact">《用户协议》</text>和<text @click="toPact">《隐私协议》</text></view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- account: "",
- password: "",
- vcode: "",
- loginType: 1,
- pwdShow: false,
- pactChecked: false,
- vcodeTime: 0,
- vcodeTimer: null
- }
- },
- onLoad() {
- },
- methods: {
- login() {
- uni.showToast({
- title: "登录方式" + this.loginType,
- icon: 'none'
- })
- },
- getVcode() {
- this.vcodeTime = 60
- this.vcodeTimer = setInterval(() => {
- if (this.vcodeTime > 0) {
- this.vcodeTime--
- } else {
- clearInterval(this.vcodeTimer)
- this.vcodeTimer = null
- }
- }, 1000)
- uni.showToast({
- title: "获取验证码",
- icon: 'none'
- })
- },
- pactChange() {
- this.pactChecked = !this.pactChecked
- },
- toPact() {
- uni.showToast({
- title: "协议",
- icon: 'none'
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .login-page {
- min-height: 100vh;
- background: url("https://images.unsplash.com/photo-1519751138087-5bf79df62d5b?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wyMDUzMDJ8MHwxfHNlYXJjaHwyMHx8YmFja2dyb3VuZHxlbnwxfHx8fDE3MjExOTc4NjJ8MA&ixlib=rb-4.0.3&q=80&w=1080") no-repeat top center;
- background-size: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .title {
- padding-top: 180rpx;
- padding-bottom: 40rpx;
- padding-left: 64rpx;
- font-size: 48rpx;
- font-weight: 700;
- color: #383838;
- }
- .form {
- flex: 1;
- margin: 0 32rpx;
- border-radius: 40rpx;
- background-color: #fff;
- overflow: hidden;
- .inputs_button {
- background-color: #fff;
- .inputs {
- padding: 150rpx 32rpx 0;
- margin-bottom: 80rpx;
- .account,
- .password,
- .vcode {
- height: 96rpx;
- border-radius: 20rpx;
- padding: 0 48rpx;
- display: flex;
- align-items: center;
- background-color: #f7fafc;
- input {
- flex: 1;
- }
- }
- .account {
- margin-bottom: 48rpx;
- }
- .vcode {
- text {
- text-wrap: nowrap;
- font-size: 26rpx;
- background-color: #fff;
- padding: 14rpx 30rpx;
- border-radius: 12rpx;
- }
- }
- }
- .button {
- padding: 0 32rpx;
- view {
- line-height: 96rpx;
- border-radius: 20rpx;
- text-align: center;
- font-size: 32rpx;
- background-color: #3264ed;
- color: #fff;
- }
- }
- }
- }
- .pact {
- display: flex;
- align-items: center;
- justify-content: center;
- padding-bottom: 120rpx;
- font-size: 24rpx;
- text {
- color: #3264ed;
- }
- radio {
- :deep(.uni-radio-input) {
- border: 1rpx solid #3264ed;
- }
- transform:scale(0.6)
- }
- }
- }
- .tab {
- display: flex;
- align-items: center;
- justify-content: space-between;
- background-color: #ecf1fb;
- height: 100rpx;
- background: linear-gradient(180deg, #e3ebf9 0%, #ffffff 100%);
- .tab-item {
- width: 340rpx;
- line-height: 100rpx;
- text-align: center;
- color: #9e9e9e;
- position: relative;
- &::after {
- content: '';
- width: 50rpx;
- height: 8rpx;
- display: block;
- background-color: $uv-primary;
- border-radius: 4rpx;
- position: absolute;
- left: 50%;
- bottom: 14rpx;
- transform: translateX(-50%);
- opacity: 0;
- }
- &.select {
- background-color: #fff;
- color: $uv-primary;
- }
- &.type1.select {
- border-radius: 0 40rpx 0 0;
- }
- &.type2.select {
- border-radius: 40rpx 0 0;
- }
- &.select::after {
- opacity: 1;
- }
- }
- }
- </style>
|