//
|
// Services.swift
|
// YixiuShop
|
//
|
// Created by Sweet on 2019/9/30.
|
// Copyright © 2019 jackLove. All rights reserved.
|
//
|
|
import UIKit
|
import RxSwift
|
import Alamofire
|
import JQTools
|
|
#if DEBUG
|
let All_Url = "http://"
|
#else
|
let All_Url = "http://" //正式地址
|
#endif
|
|
class Services: NSObject {
|
|
}
|
|
extension Services{
|
|
// class func updateInfo(birthday:String?,gender:Int?,name:String?)->Observable<BaseResponse<SimpleModel>>{
|
// let params = ParamsAppender.build(url: All_Url)
|
// .interface(url: "/account/api/appUser/updateInfo")
|
// .append(key: "birthday", value: birthday)
|
// .append(key: "gender", value: gender)
|
// .append(key: "name", value: name)
|
// return NetworkRequest.request(params: params, method: .post, progress: false)
|
// }
|
}
|