feat: add service module; 🌟

新增: 数据服务模块;
This commit is contained in:
iczer
2020-07-15 19:15:23 +08:00
parent 3f742a4dc1
commit 3ff12474cd
5 changed files with 62 additions and 4 deletions

View File

@@ -75,6 +75,7 @@
<script>
import CommonLayout from '@/layouts/CommonLayout'
import {login} from '@/services'
export default {
name: 'Login',
@@ -97,10 +98,11 @@ export default {
this.form.validateFields((err) => {
if (!err) {
this.logging = true
this.$axios.post('/login', {
name: this.form.getFieldValue('name'),
password: this.form.getFieldValue('password')
}).then((res) => {
const name = this.form.getFieldValue('name')
const password = this.form.getFieldValue('password')
// 登录
login(name, password)
.then((res) => {
this.logging = false
const result = res.data
if (result.code >= 0) {