fix: CORS

This commit is contained in:
qier222 2021-03-06 17:07:40 +08:00
parent 94ef0934a5
commit e169ee19e2
No known key found for this signature in database
GPG key ID: 9C85007ED905F14D
3 changed files with 16 additions and 0 deletions

View file

@ -93,6 +93,7 @@
<script>
import NProgress from "nprogress";
import { loginWithPhone, loginWithEmail } from "@/api/auth";
import { setCookies } from "@/utils/auth";
import md5 from "crypto-js/md5";
import { mapMutations } from "vuex";
@ -183,6 +184,7 @@ export default {
return;
}
if (data.code === 200) {
setCookies(data.cookie);
this.updateData({ key: "user", value: data.profile });
this.updateData({ key: "loginMode", value: "account" });
this.$router.push({ path: "/library" });