Compare commits
3 Commits
f0f1cd39b6
...
728510a72d
Author | SHA1 | Date |
---|---|---|
![]() |
728510a72d | |
![]() |
89fd2f5f0d | |
![]() |
52921e78b6 |
|
@ -77,7 +77,7 @@ struct ContentListItemView: View {
|
|||
|
||||
if item.price > 0 {
|
||||
HStack(spacing: 8) {
|
||||
Image("ic_coin_w")
|
||||
Image("ic_can")
|
||||
.resizable()
|
||||
.frame(width: 17, height: 17)
|
||||
|
||||
|
|
|
@ -29,8 +29,8 @@ final class ContentRepository {
|
|||
return api.requestPublisher(.registerComment(request: RegisterAudioContentCommentRequest(comment: comment, contentId: audioContentId, parentId: parentId)))
|
||||
}
|
||||
|
||||
func orderAudioContent(audioContentId: Int, orderType: OrderType) -> AnyPublisher<Response, MoyaError> {
|
||||
return api.requestPublisher(.orderAudioContent(request: OrderRequest(audioContentId: audioContentId, orderType: orderType)))
|
||||
func orderAudioContent(contentId: Int, orderType: OrderType) -> AnyPublisher<Response, MoyaError> {
|
||||
return api.requestPublisher(.orderAudioContent(request: OrderRequest(contentId: contentId, orderType: orderType)))
|
||||
}
|
||||
|
||||
func getOrderList(page: Int, size: Int) -> AnyPublisher<Response, MoyaError> {
|
||||
|
|
|
@ -280,7 +280,7 @@ final class ContentDetailViewModel: ObservableObject {
|
|||
isShowPreviewAlert = false
|
||||
isLoading = true
|
||||
|
||||
repository.orderAudioContent(audioContentId: contentId, orderType: orderType)
|
||||
repository.orderAudioContent(contentId: contentId, orderType: orderType)
|
||||
.sink { result in
|
||||
switch result {
|
||||
case .finished:
|
||||
|
|
|
@ -71,7 +71,7 @@ struct ContentOrderDialogView: View {
|
|||
Spacer()
|
||||
|
||||
HStack(spacing: 8) {
|
||||
Image("ic_coin_w")
|
||||
Image("ic_can")
|
||||
.resizable()
|
||||
.frame(width: 16.7, height: 16.7)
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
import Foundation
|
||||
|
||||
struct OrderRequest: Encodable {
|
||||
let audioContentId: Int
|
||||
let contentId: Int
|
||||
let orderType: OrderType
|
||||
let container: String = "ios"
|
||||
}
|
||||
|
|
|
@ -50,7 +50,7 @@ extension CanApi: TargetType {
|
|||
return "/charge"
|
||||
|
||||
case .pgVerify:
|
||||
return "/charge/v2/verify"
|
||||
return "/charge/verify"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue