We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a9e883 commit 016c354Copy full SHA for 016c354
src/components/Install.vue
@@ -83,7 +83,7 @@ export default {
83
if (valid) {
84
this.loading = true;
85
let that = this;
86
- this.$http.post('/install', qs.stringify(this.form)).then((response) => {
+ this.$http.post('/doInstall', qs.stringify(this.form)).then((response) => {
87
this.loading = false;
88
let data = response.data;
89
if (data.code === 0) {
src/components/Login.vue
@@ -81,7 +81,7 @@ export default {
81
handleSubmit() {
82
this.$refs.loginForm.validate((valid) => {
- this.$http.post('/login', qs.stringify(this.loginForm)).then((response) => {
+ this.$http.post('/doLogin', qs.stringify(this.loginForm)).then((response) => {
this.$message({
message: response.data.msg,
type: 'success',
0 commit comments