动态菜单

This commit is contained in:
何全
2019-04-22 19:26:54 +08:00
parent df81d58cf5
commit 8f2bdd2285
3 changed files with 59 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
from django.urls import path
from system.views import login_view, UserPasswordUpdateView, logout_view, UserInfo, UserLogout
from system.views import login_view, UserPasswordUpdateView, logout_view, UserInfo, UserLogout,MockMenu
app_name = "system"
@@ -10,5 +10,6 @@ urlpatterns = [
path('api/user_info', UserInfo.as_view()),
path('api/logout', UserLogout.as_view())
path('api/logout', UserLogout.as_view()),
path('mock_menu',MockMenu.as_view())
]