Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Guten-PigxUI
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄卓然
Guten-PigxUI
Commits
133d8944
Commit
133d8944
authored
Nov 22, 2018
by
冷冷
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
👽
Updating code due to external API changes.
parent
8b7a7983
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
login.js
src/api/login.js
+1
-1
token.js
src/api/token.js
+2
-2
index.vue
src/views/admin/gen/index.vue
+1
-1
No files found.
src/api/login.js
View file @
133d8944
...
...
@@ -64,7 +64,7 @@ export const getUserInfo = () => {
export
const
logout
=
()
=>
{
return
request
({
url
:
'/auth/
oauth
/logout'
,
url
:
'/auth/
token
/logout'
,
method
:
'delete'
})
}
src/api/token.js
View file @
133d8944
...
...
@@ -25,9 +25,9 @@ export function fetchList(query) {
})
}
export
function
delObj
(
id
)
{
export
function
delObj
(
token
)
{
return
request
({
url
:
'/admin/token/'
+
id
,
url
:
'/admin/token/'
+
token
,
method
:
'delete'
})
}
src/views/admin/gen/index.vue
View file @
133d8944
...
...
@@ -100,7 +100,7 @@ export default {
* 刷新回调
*/
refreshChange
()
{
this
.
getList
(
this
.
form
)
this
.
getList
(
this
.
page
)
},
searchChange
(
form
)
{
this
.
getList
(
this
.
page
,
form
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment