zhangchen
2023-10-23 61b8b562f74691ae4dfe11008339450d0bc91ea1
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
78
79
80
81
export default {
    title: "Data Intelligent Order System",
    subTitle: "WELCOME welcome to log in",
    form: {
        placeholder: {
            account: "please enter user name",
            pwd: "please enter password"
        }
    },
    btn: {
        auto: "auto login",
        forgetPwd: "forget the password",
        submit: "login",
        policyStart: "I have read and agree",
        termsOfService: "Website Terms of Service",
        legalNoticesAndPrivacyPolicy: "Legal Statement and Privacy Policy"
    },
    msg: {
        err: {
            account: "Please enter your username",
            pwd: "Please fill in the password",
            policy: "Please read and agree to the website terms of service, legal statement and privacy policy",
            init: "Project initialization failed, please log in agai"
        },
        success: {
            init: "Initialization successful",
            login: "login successful"
        }
    },
    forgetPwd: {
        title: "forget the password",
        form: {
            account: "phone",
            code: "code",
            pwd: "password",
            newPwd: "New Password"
        },
        placeholder: {
            account: "Phone number",
            code: "code",
            pwd: "password",
            newPwd: "New Password"
        },
        btn: {
            cancel: "Cancel",
            submit: "submit",
            codeDefault: "Send the verification code",
            codeSend: "Resend in seconds"
        },
        msg: {
            err: {
                account: "Please enter phone number",
                account1: "Malformed phone number",
                code: "please enter verification code",
                pwd: "please enter password",
                pwd1: "The password consists of 6~16 letters or numbers",
                pwd2: "Please enter a new password",
                pwd3: "The two passwords entered are inconsistent"
            },
            success: {
                code: "The verification code has been sent successfully, please pay attention to check",
                submit: "The operation was successful, please log in again"
            }
        }
    },
    clientList: {
        title: "select customer",
        placeholder: {
            client: "Please select a client"
        },
        btn: {
            cancel: "Cancel",
            submit: "submit"
        },
        msg: {
            err: {
                noSelectClient: "You have not selected any customers"
            }
        }
    }
};