实现订单 Tab 并接入扫码核销流程
This commit is contained in:
@ -14,6 +14,7 @@ final class NetworkServices {
|
||||
let authAPI: AuthAPI
|
||||
let profileAPI: ProfileAPI
|
||||
let statisticsAPI: StatisticsAPI
|
||||
let orderAPI: OrderAPI
|
||||
let uploadAPI: UploadAPI
|
||||
let ossUploadService: OSSUploadService
|
||||
|
||||
@ -23,6 +24,7 @@ final class NetworkServices {
|
||||
authAPI = AuthAPI(client: client)
|
||||
profileAPI = ProfileAPI(client: client)
|
||||
statisticsAPI = StatisticsAPI(client: client)
|
||||
orderAPI = OrderAPI(client: client)
|
||||
uploadAPI = UploadAPI(client: client)
|
||||
ossUploadService = OSSUploadService(configService: uploadAPI)
|
||||
client.bindAuthTokenProvider {
|
||||
@ -37,6 +39,7 @@ final class NetworkServices {
|
||||
authAPI = AuthAPI(client: apiClient)
|
||||
profileAPI = ProfileAPI(client: apiClient)
|
||||
statisticsAPI = StatisticsAPI(client: apiClient)
|
||||
orderAPI = OrderAPI(client: apiClient)
|
||||
uploadAPI = UploadAPI(client: apiClient)
|
||||
ossUploadService = OSSUploadService(configService: uploadAPI)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user