1
This commit is contained in:
@@ -1,8 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="login-wrap" v-loading="loading">
|
<div class="login-wrap" v-loading="loading">
|
||||||
<template>
|
<template>
|
||||||
<p class="ms_notes">Thank you for your login with your ORCID ID, please login or register TMR Publshing Group
|
<p class="ms_notes">
|
||||||
account to connect with your ORCID ID. </p>
|
Thank you for your login with your ORCID ID, please login or register TMR Publshing Group account to connect with your ORCID
|
||||||
|
ID.
|
||||||
|
</p>
|
||||||
<!-- <p class="ms_noter">
|
<!-- <p class="ms_noter">
|
||||||
如果你拥有账户但没有绑定相应的ORCID,请点击绑定操作,<br/>
|
如果你拥有账户但没有绑定相应的ORCID,请点击绑定操作,<br/>
|
||||||
如果你没有账户,请点击注册进行相应操作
|
如果你没有账户,请点击注册进行相应操作
|
||||||
@@ -20,19 +22,29 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 密码 -->
|
<!-- 密码 -->
|
||||||
<el-form-item prop="password">
|
<el-form-item prop="password">
|
||||||
<el-input size="small" v-model="loginForm.password" auto-complete="off" placeholder="password" show-password>
|
<el-input
|
||||||
|
size="small"
|
||||||
|
v-model="loginForm.password"
|
||||||
|
auto-complete="off"
|
||||||
|
placeholder="password"
|
||||||
|
show-password
|
||||||
|
>
|
||||||
<i slot="prefix" class="el-icon-lock"></i>
|
<i slot="prefix" class="el-icon-lock"></i>
|
||||||
</el-input>
|
</el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 按钮 -->
|
<!-- 按钮 -->
|
||||||
<el-row justify="center">
|
<el-row justify="center">
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" @click.native.prevent="handleLogin" class="register-submit" style="width: 100%;">bind</el-button>
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
@click.native.prevent="handleLogin"
|
||||||
|
class="register-submit"
|
||||||
|
style="width: 100%"
|
||||||
|
>bind</el-button
|
||||||
|
>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
<el-tab-pane label="Register" name="second">
|
<el-tab-pane label="Register" name="second">
|
||||||
@@ -47,13 +59,25 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 密码 -->
|
<!-- 密码 -->
|
||||||
<el-form-item prop="password">
|
<el-form-item prop="password">
|
||||||
<el-input size="small" v-model="registerForm.password" auto-complete="off" placeholder="password" show-password>
|
<el-input
|
||||||
|
size="small"
|
||||||
|
v-model="registerForm.password"
|
||||||
|
auto-complete="off"
|
||||||
|
placeholder="password"
|
||||||
|
show-password
|
||||||
|
>
|
||||||
<i slot="prefix" class="el-icon-lock"></i>
|
<i slot="prefix" class="el-icon-lock"></i>
|
||||||
</el-input>
|
</el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- 确认密码 -->
|
<!-- 确认密码 -->
|
||||||
<el-form-item prop="passwordd">
|
<el-form-item prop="passwordd">
|
||||||
<el-input size="small" v-model="registerForm.passwordd" auto-complete="off" placeholder="password" show-password>
|
<el-input
|
||||||
|
size="small"
|
||||||
|
v-model="registerForm.passwordd"
|
||||||
|
auto-complete="off"
|
||||||
|
placeholder="password"
|
||||||
|
show-password
|
||||||
|
>
|
||||||
<i slot="prefix" class="el-icon-lock"></i>
|
<i slot="prefix" class="el-icon-lock"></i>
|
||||||
</el-input>
|
</el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -78,7 +102,13 @@
|
|||||||
<!-- 按钮 -->
|
<!-- 按钮 -->
|
||||||
<el-row justify="center">
|
<el-row justify="center">
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" @click.native.prevent="handleRegister" class="register-submit" style="width: 100%;">bind</el-button>
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
@click.native.prevent="handleRegister"
|
||||||
|
class="register-submit"
|
||||||
|
style="width: 100%"
|
||||||
|
>bind</el-button
|
||||||
|
>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
@@ -104,36 +134,53 @@
|
|||||||
registerForm: {},
|
registerForm: {},
|
||||||
activeName: 'first',
|
activeName: 'first',
|
||||||
registerRules: {
|
registerRules: {
|
||||||
username: [{
|
username: [
|
||||||
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: 'Please enter your username.',
|
message: 'Please enter your username.',
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
}],
|
}
|
||||||
password: [{
|
],
|
||||||
|
password: [
|
||||||
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: 'Please enter your password.',
|
message: 'Please enter your password.',
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
}],
|
}
|
||||||
passwordd: [{
|
],
|
||||||
|
passwordd: [
|
||||||
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: 'Please enter your password.',
|
message: 'Please enter your password.',
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
}],
|
}
|
||||||
name: [{
|
],
|
||||||
|
name: [
|
||||||
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: '请输入姓名',
|
message: 'Please enter your real name.',
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
}],
|
}
|
||||||
phone: [{
|
],
|
||||||
|
phone: [
|
||||||
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: '请输入手机号',
|
message: 'Please enter the correct mobile phone number.',
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
}],
|
}
|
||||||
email: [{
|
],
|
||||||
|
email: [
|
||||||
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: '请输入邮箱',
|
message: 'Please enter your email address.',
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
}]
|
},
|
||||||
|
{
|
||||||
|
type: 'email',
|
||||||
|
message: 'Email address format error(example@gmail.com).',
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user