feat: 打手接单考试(按俱乐部题库、配置与通过状态)

This commit is contained in:
XingQue
2026-06-26 05:48:53 +08:00
parent ff5b13e717
commit 65c5e6572e
7 changed files with 695 additions and 0 deletions

View File

@@ -51,6 +51,15 @@ from jituan.views import (
ClubWechatLoginView,
)
from jituan.views_dashou_exam import (
DashouExamBundleView,
DashouExamConfigAdminView,
DashouExamImageManageView,
DashouExamMarkPassedView,
DashouExamQuestionListView,
DashouExamQuestionManageView,
DashouExamStatusView,
)
from jituan.views_club_catalog import (
ClubKaoheChenghaoCatalogView,
ClubKaoheChenghaoDisableView,
@@ -130,5 +139,12 @@ urlpatterns = [
path('houtai/club-kaohe-catalog', ClubKaoheChenghaoCatalogView.as_view(), name='jituan_club_kaohe_catalog'),
path('houtai/club-kaohe-enable', ClubKaoheChenghaoEnableView.as_view(), name='jituan_club_kaohe_enable'),
path('houtai/club-kaohe-disable', ClubKaoheChenghaoDisableView.as_view(), name='jituan_club_kaohe_disable'),
path('dashou-exam/status', DashouExamStatusView.as_view(), name='jituan_dashou_exam_status'),
path('dashou-exam/bundle', DashouExamBundleView.as_view(), name='jituan_dashou_exam_bundle'),
path('dashou-exam/mark-passed', DashouExamMarkPassedView.as_view(), name='jituan_dashou_exam_mark_passed'),
path('houtai/dashou-exam-config', DashouExamConfigAdminView.as_view(), name='jituan_dashou_exam_config'),
path('houtai/dashou-exam-question-list', DashouExamQuestionListView.as_view(), name='jituan_dashou_exam_q_list'),
path('houtai/dashou-exam-question-manage', DashouExamQuestionManageView.as_view(), name='jituan_dashou_exam_q_manage'),
path('houtai/dashou-exam-image-manage', DashouExamImageManageView.as_view(), name='jituan_dashou_exam_img'),
path('club/list', ClubListView.as_view(), name='jituan_club_list'),
]