|
@@ -16,11 +16,10 @@ from Controller import FeedBack, EquipmentOTA, EquipmentInfo, AdminManage, AppIn
|
|
DeviceTypeController, CloudTransfer, Cloudsum, IotCoreController, OperatingLogs, ProcessInfo, RegionCountryController, \
|
|
DeviceTypeController, CloudTransfer, Cloudsum, IotCoreController, OperatingLogs, ProcessInfo, RegionCountryController, \
|
|
VerifyCodeController, FileController, UIDController, LogController, SalesController, \
|
|
VerifyCodeController, FileController, UIDController, LogController, SalesController, \
|
|
OrderTaskController, HistoryUIDController, UIDManageUserController, SerialNumberController, CompanyController, \
|
|
OrderTaskController, HistoryUIDController, UIDManageUserController, SerialNumberController, CompanyController, \
|
|
- RegionController, VPGController, LanguageController, TestController
|
|
|
|
|
|
+ RegionController, VPGController, LanguageController, TestController, DeviceConfirmRegion
|
|
|
|
|
|
urlpatterns = [
|
|
urlpatterns = [
|
|
url(r'^testApi/(?P<operation>.*)$', TestApi.testView.as_view()),
|
|
url(r'^testApi/(?P<operation>.*)$', TestApi.testView.as_view()),
|
|
- url(r'^account/confirmRegion$', UserController.confirmRegion.as_view()),
|
|
|
|
url(r'^account/authcode$', UserController.authCodeView.as_view()),
|
|
url(r'^account/authcode$', UserController.authCodeView.as_view()),
|
|
url(r'^v3/account/generatepictureCodeView/$', UserController.generatePictureCodeView.as_view()),
|
|
url(r'^v3/account/generatepictureCodeView/$', UserController.generatePictureCodeView.as_view()),
|
|
url(r'^v3/account/imageCodeRegister/$', UserController.Image_Code_RegisterView.as_view()),
|
|
url(r'^v3/account/imageCodeRegister/$', UserController.Image_Code_RegisterView.as_view()),
|
|
@@ -307,7 +306,11 @@ urlpatterns = [
|
|
# 验证验证码
|
|
# 验证验证码
|
|
url(r'verifyCode/(?P<operation>.*$)', VerifyCodeController.VerifyCodeView.as_view()),
|
|
url(r'verifyCode/(?P<operation>.*$)', VerifyCodeController.VerifyCodeView.as_view()),
|
|
|
|
|
|
|
|
+ #设备确定分配地区
|
|
|
|
+ url(r'^device/confirmRegion$', DeviceConfirmRegion.ConfirmRegion.as_view()),
|
|
|
|
+
|
|
re_path('(?P<path>.*)', LogManager.errorPath),
|
|
re_path('(?P<path>.*)', LogManager.errorPath),
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
]
|
|
]
|