refactor: simplify noNeedToken judge

This commit is contained in:
张传龙
2022-09-10 15:56:53 +08:00
parent 40483e09e6
commit 2b2a324a62
3 changed files with 3 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
import request from '@/utils/http'
export default {
login: (data) => request.post('/auth/login', data),
login: (data) => request.post('/auth/login', data, { noNeedToken: true }),
}