password.vue
3.51 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<template>
<div class="login-layout">
<div class="login-content">
<p class="login-title">
密码修改
</p>
<Card class="login-card">
<Form ref="formInline" :model="formInline" :rules="ruleInline">
<Form-item prop="user">
<Input type="text" size="large" v-model="formInline.user" placeholder="用户名" @on-enter="handleSubmit('formInline')">
<Icon type="ios-person-outline" slot="prepend"></Icon>
</Input>
</Form-item>
<Form-item prop="password">
<Input type="password" size="large" v-model="formInline.password" placeholder="新密码" @on-enter="handleSubmit('formInline')">
<Icon type="ios-locked-outline" slot="prepend"></Icon>
</Input>
</Form-item>
<Form-item class="login-btn">
<Button type="primary" :loading="loading" @click="handleSubmit('formInline')">
确认修改
</Button>
</Form-item>
</Form>
</Card>
</div>
</div>
</template>
<script>
import UserService from 'services/user/user-service';
import Vue from 'vue';
export default {
name: 'password',
data() {
return {
loading: false,
formInline: {
user: '',
password: ''
},
ruleInline: {
user: [
{ required: true, message: '请填写用户名', trigger: 'blur' }
],
password: [
{ required: true, message: '请填写密码', trigger: 'blur' }
]
}
};
},
created() {
this.UserService = new UserService();
},
methods: {
handleSubmit(name) {
this.$refs[name].validate((valid) => {
if (valid) {
this.update(this.formInline.user, this.formInline.password);
} else {
this.$Message.error('表单验证失败!');
}
});
},
update(user, password) {
this.loading = true;
this.UserService.update({
account: user,
password: password
}).then(ret => {
if (ret.code === 200) {
this.loading = false;
Vue.$store.remove('needUpdate');
this.$router.push('/');
} else {
this.loading = false;
this.$Message.error(ret.message);
}
});
}
}
};
</script>
<style lang="scss" scoped>
.login-layout {
background-color: rgb(70, 76, 91);
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
.login-content {
width: 350px;
margin: 200px auto;
}
.login-title {
width: 100%;
text-align: center;
font-size: 30px;
color: #fff;
line-height: 50px;
padding-bottom: 20px;
}
.ivu-form {
width: 90%;
margin: 20px auto;
}
.login-btn {
text-align: right;
button {
width: 100%;
height: 36px;
font-size: 14px;
}
}
.login-card {
min-height: 250px;
}
}
</style>