You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
crm-project/src/views/ForgetPassword.vue

40 lines
861 B

<!--
* @Descripttion:
* @version:
* @Author: Lone
* @Date: 2021-12-07 20:15:46
* @LastEditors: Lone
* @LastEditTime: 2021-12-11 21:54:58
-->
<template>
<div class="forgetPassword mgnBig">
<h2>{{ msg }}</h2>
<h4>忘記密碼</h4>
<a-input v-model="resetEmail" type="text" placeholder="Email" />
<a-button type="primary" @click="submitForm">
申請密碼重設
</a-button>
<a-button @click="goLogin" class="mgnCenter">
返回登录
</a-button>
</div>
</template>
<script>
export default {
name: "ForgetPassword",
props: ['msg'],
data() {
return {
resetEmail:'',
};
},
methods: {
submitForm(){
//
},
goLogin () {
this.$router.push('/login');
},
},
};
</script>