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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
| <template>
| <div class="">
| <a-form-model
| ref="formRef"
| name="advanced_search"
| class="ant-advanced-search-form"
| :model="form"
| :rules="rules"
| >
| <a-layout>
| <a-layout-content>
| <a-col :span="24">
| <a-form-model-item
| label="原密码"
| :labelCol="{ span: 5 }"
| :wrapperCol="{ span: 17, offset: 1 }"
| prop="oldPwd"
| >
| <a-input-password
| v-model="form.oldPwd"
| placeholder="请输入原密码"
| />
| </a-form-model-item>
| </a-col>
| <a-col :span="24">
| <a-form-model-item
| label="新密码"
| :labelCol="{ span: 5 }"
| :wrapperCol="{ span: 17, offset: 1 }"
| prop="pwd"
| >
| <a-input-password v-model="form.pwd" placeholder="请输入新密码" />
| </a-form-model-item>
| </a-col>
| <a-col :span="24">
| <a-form-model-item
| label="确认密码"
| :labelCol="{ span: 5 }"
| :wrapperCol="{ span: 17, offset: 1 }"
| prop="pwd1"
| >
| <a-input-password
| v-model="form.pwd1"
| placeholder="请再次输入新密码"
| />
| </a-form-model-item>
| </a-col>
| </a-layout-content>
| <a-layout-footer class="footer">
| <a-button key="back" @click="checkForm">确定</a-button>
| <a-button key="cancel" @click="cancel">取消</a-button>
| </a-layout-footer>
| </a-layout>
| </a-form-model>
| </div>
| </template>
|
| <script>
| import { changePwd } from "../apis";
| export default {
| name: "",
| data() {
| return {
| form: {
| oldPwd: "",
| pwd: "",
| pwd1: "",
| },
| rules: {
| oldPwd: [
| {
| required: true,
| message: "请输入原密码",
| trigger: "blur",
| },
| ],
| pwd: [
| {
| required: true,
| message: "请输入新密码",
| trigger: "blur",
| },
| {
| pattern: /^\S{8,}$/,
| message: "密码最少8位",
| trigger: "blur",
| },
| ],
| pwd1: [
| {
| required: true,
| message: "请再输入一次新密码",
| trigger: "blur",
| },
| {
| pattern: /^\S{8,}$/,
| message: "密码最少8位",
| trigger: "blur",
| },
| ],
| },
| };
| },
| components: {},
| methods: {
| checkForm() {
| this.$refs.formRef.validate((valid) => {
| if (valid) {
| // 新旧密码相同则退出
| // 两次旧密码不同则退出
| if (this.form.pwd == this.form.oldPwd) {
| this.$message.error("新密码不应和旧密码相同");
| return false;
| }
| if (this.form.pwd != this.form.pwd1) {
| this.$message.error("两次输入的新密码不一致");
| return false;
| }
| this.submit();
| } else {
| this.$message.error("存在未通过检验的表单项");
| return false;
| }
| });
| },
| submit() {
| let newSnId = this.form.pwd;
| let oldSnId = this.form.oldPwd;
| changePwd(oldSnId, newSnId).then((res) => {
| res = res.data;
| if (res.code && res.data) {
| this.$message.success(res.msg);
| this.$emit("close");
| } else {
| this.$message.error(`操作失败:${res.msg}`);
| }
| });
| },
| cancel() {
| this.$emit("close");
| },
| },
|
| mounted() {},
| };
| </script>
|
| <style scoped>
| .transbg {
| background: transparent;
| }
| .footer {
| padding: 4px;
| text-align: right;
| }
| .footer button + button {
| margin-left: 8px;
| }
| </style>
|
|