|
@@ -29,14 +29,26 @@
|
29
|
29
|
</ul>
|
30
|
30
|
</div>
|
31
|
31
|
<!-- <router-link to="/product"> -->
|
32
|
|
- <button
|
|
32
|
+ <div class="remember">
|
|
33
|
+ <el-checkbox v-model="checked">记住密码</el-checkbox>
|
|
34
|
+ </div>
|
|
35
|
+ <!-- <button
|
33
|
36
|
class="loginBtn"
|
34
|
37
|
@click="loginAction"
|
35
|
38
|
:class="loginDisable ? 'disableLoginBtn' : ''"
|
36
|
39
|
:disabled="loginDisable"
|
37
|
40
|
>
|
38
|
41
|
登录
|
|
42
|
+ </button> -->
|
|
43
|
+ <button
|
|
44
|
+ class="loginBtn"
|
|
45
|
+ @click="submitForm"
|
|
46
|
+ :class="loginDisable ? 'disableLoginBtn' : ''"
|
|
47
|
+ :disabled="loginDisable"
|
|
48
|
+ >
|
|
49
|
+ 登录
|
39
|
50
|
</button>
|
|
51
|
+
|
40
|
52
|
<!-- <router-link to="/forgetPassword"> -->
|
41
|
53
|
<div class="newForget" style="display:none">忘记密码</div>
|
42
|
54
|
<!-- </router-link> -->
|
|
@@ -64,7 +76,8 @@ export default {
|
64
|
76
|
form: {
|
65
|
77
|
mobile: "",
|
66
|
78
|
pwd: ""
|
67
|
|
- }
|
|
79
|
+ },
|
|
80
|
+ checked: false
|
68
|
81
|
};
|
69
|
82
|
},
|
70
|
83
|
computed: {
|
|
@@ -78,6 +91,9 @@ export default {
|
78
|
91
|
this.form.mobile = loginInfo.mobile;
|
79
|
92
|
this.form.pwd = loginInfo.password;
|
80
|
93
|
},
|
|
94
|
+ mounted() {
|
|
95
|
+ this.getCookie();
|
|
96
|
+ },
|
81
|
97
|
methods: {
|
82
|
98
|
loginAction: function() {
|
83
|
99
|
loginByPwd(this.form.mobile, hex_md5(this.form.pwd)).then(rs => {
|
|
@@ -116,6 +132,83 @@ export default {
|
116
|
132
|
},
|
117
|
133
|
to: function() {
|
118
|
134
|
this.$router.push({ path: "/forgetPassword" });
|
|
135
|
+ },
|
|
136
|
+ submitForm() {
|
|
137
|
+ const self = this;
|
|
138
|
+ //判断复选框是否被勾选 勾选则调用配置cookie方法
|
|
139
|
+ if (self.checked == true) {
|
|
140
|
+ console.log("checked == true");
|
|
141
|
+ //传入账号名,密码,和保存天数3个参数
|
|
142
|
+ self.setCookie(self.form.mobile, self.form.pwd, 7);
|
|
143
|
+ } else {
|
|
144
|
+ console.log("清空Cookie");
|
|
145
|
+ //清空Cookie
|
|
146
|
+ self.clearCookie();
|
|
147
|
+ }
|
|
148
|
+
|
|
149
|
+ //与后端请求代码,本功能不需要与后台交互所以省略
|
|
150
|
+ loginByPwd(this.form.mobile, hex_md5(this.form.pwd)).then(rs => {
|
|
151
|
+ var resp = rs.data;
|
|
152
|
+
|
|
153
|
+ if (resp.state == 1) {
|
|
154
|
+ cacheLoginInfo(this.form.mobile, this.form.pwd);
|
|
155
|
+ console.log(resp);
|
|
156
|
+
|
|
157
|
+ var user = resp.data.user;
|
|
158
|
+ var org = resp.data.org;
|
|
159
|
+ var subscibe = resp.data.subscibe;
|
|
160
|
+ var config_list = resp.data.config_list;
|
|
161
|
+ var template_info = resp.data.template_info;
|
|
162
|
+ var filed_list = resp.data.filed_list;
|
|
163
|
+ console.log(resp.data.filed_list);
|
|
164
|
+ console.log(filed_list);
|
|
165
|
+
|
|
166
|
+ this.$store.dispatch("InitUserInfo", {
|
|
167
|
+ user: user,
|
|
168
|
+ org: org,
|
|
169
|
+ subscibe: subscibe,
|
|
170
|
+ template_info: template_info,
|
|
171
|
+ filed_list: filed_list
|
|
172
|
+ });
|
|
173
|
+ this.$store.dispatch("SetConfigList", config_list);
|
|
174
|
+
|
|
175
|
+ // this.$router.push({path: "/product"})
|
|
176
|
+ this.$router.push({ path: "/main" });
|
|
177
|
+ } else {
|
|
178
|
+ this.$toast({
|
|
179
|
+ message: resp.msg
|
|
180
|
+ });
|
|
181
|
+ }
|
|
182
|
+ });
|
|
183
|
+ console.log("登陆成功");
|
|
184
|
+ },
|
|
185
|
+ //设置cookie
|
|
186
|
+ setCookie(c_name, c_pwd, exdays) {
|
|
187
|
+ var exdate = new Date(); //获取时间
|
|
188
|
+ exdate.setTime(exdate.getTime() + 24 * 60 * 60 * 1000 * exdays); //保存的天数
|
|
189
|
+ //字符串拼接cookie
|
|
190
|
+ window.document.cookie =
|
|
191
|
+ "userName" + "=" + c_name + ";path=/;expires=" + exdate.toGMTString();
|
|
192
|
+ window.document.cookie =
|
|
193
|
+ "userPwd" + "=" + c_pwd + ";path=/;expires=" + exdate.toGMTString();
|
|
194
|
+ },
|
|
195
|
+ getCookie: function() {
|
|
196
|
+ if (document.cookie.length > 0) {
|
|
197
|
+ var arr = document.cookie.split("; "); //这里显示的格式需要切割一下自己可输出看下
|
|
198
|
+ for (var i = 0; i < arr.length; i++) {
|
|
199
|
+ var arr2 = arr[i].split("="); //再次切割
|
|
200
|
+ //判断查找相对应的值
|
|
201
|
+ if (arr2[0] == "userName") {
|
|
202
|
+ this.form.mobile = arr2[1]; //保存到保存数据的地方
|
|
203
|
+ } else if (arr2[0] == "userPwd") {
|
|
204
|
+ this.form.pwd = arr2[1];
|
|
205
|
+ }
|
|
206
|
+ }
|
|
207
|
+ }
|
|
208
|
+ },
|
|
209
|
+ //清除cookie
|
|
210
|
+ clearCookie: function() {
|
|
211
|
+ this.setCookie("", "", -1); //修改2值都为空,天数为负1天就好了
|
119
|
212
|
}
|
120
|
213
|
}
|
121
|
214
|
};
|
|
@@ -234,5 +327,8 @@ export default {
|
234
|
327
|
}
|
235
|
328
|
}
|
236
|
329
|
}
|
|
330
|
+ .remember {
|
|
331
|
+ float: left;
|
|
332
|
+ }
|
237
|
333
|
}
|
238
|
334
|
</style>
|