wujingjing
2024-09-29 b9f5b855a3b8890d7dbbab6985bf4f78315cfe49
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<template>
    <el-form size="large" class="login-content-form">
        <el-form-item class="login-animation1">
            <el-input text :placeholder="$t('message.mobile.placeholder1')" v-model="state.ruleForm.userName" clearable autocomplete="off">
                <template #prefix>
                    <i class="myiconfont icon-dianhua el-input__icon"></i>
                </template>
            </el-input>
        </el-form-item>
        <el-form-item class="login-animation2">
            <el-col :span="15">
                <el-input
                    text
                    maxlength="4"
                    :placeholder="$t('message.mobile.placeholder2')"
                    v-model="state.ruleForm.code"
                    clearable
                    autocomplete="off"
                >
                    <template #prefix>
                        <el-icon class="el-input__icon"><ele-Position /></el-icon>
                    </template>
                </el-input>
            </el-col>
            <el-col :span="1"></el-col>
            <el-col :span="8">
                <el-button v-waves class="login-content-code">{{ $t('message.mobile.codeText') }}</el-button>
            </el-col>
        </el-form-item>
        <el-form-item class="login-animation3">
            <el-button round type="primary" v-waves class="login-content-submit">
                <span>{{ $t('message.mobile.btnText') }}</span>
            </el-button>
        </el-form-item>
        <div class="font12 mt30 login-animation4 login-msg">{{ $t('message.mobile.msgText') }}</div>
    </el-form>
</template>
 
<script setup lang="ts" name="loginMobile">
import { reactive } from 'vue';
 
// 定义变量内容
const state = reactive({
    ruleForm: {
        userName: '',
        code: '',
    },
});
</script>
 
<style scoped lang="scss">
.login-content-form {
    margin-top: 20px;
    @for $i from 1 through 4 {
        .login-animation#{$i} {
            opacity: 0;
            animation-name: error-num;
            animation-duration: 0.5s;
            animation-fill-mode: forwards;
            animation-delay: calc($i/10) + s;
        }
    }
    .login-content-code {
        width: 100%;
        padding: 0;
    }
    .login-content-submit {
        width: 100%;
        letter-spacing: 2px;
        font-weight: 300;
        margin-top: 15px;
    }
    .login-msg {
        color: var(--el-text-color-placeholder);
    }
}
</style>