コード例 #1
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def getBizToken(data):
    url = host + '/discernApi/getBizToken'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #2
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def getIdentityInfoByCustId(data):
    url = host + '/authorization/getIdentityInfoByCustId'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #3
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def sendOCRTime(data):
    url = host + '/authorization/sendOCRTime'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #4
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def doRegister(data):
    url = host + '/reg/doRegister'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #5
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def getProductInfo(data):
    url = host + '/product/getProductInfo'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #6
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def partRepayTry(data):
    url = host + '/repay/partRepayTry'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #7
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def creditForH5Risk(data):
    url = host + '/order/creditForH5Risk'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #8
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def bindCardSendSmsCode(data):
    url = host + '/basicinfo/bindCardSendSmsCode'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #9
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def bindCardCheckSmsCode(data):
    url = host + '/basicinfo/bindCardCheckSmsCode'
    method = 'POST'
    requestType = 'data'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #10
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def getBank(data):
    url = host + '/basicinfo/getBank'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #11
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def bankCard(data):
    url = host + '/discernApi/bankCard'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #12
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def getSupportBankList(data):
    url = host + '/msg/getSupportBankList'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #13
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def basicinfogetComplete(data):
    url = host + '/basicinfo/getComplete'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #14
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def producthomePage(data):
    url = host + '/product/homePage'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #15
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def isCanRepay(data):
    url = host + '/order/isCanRepay'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #16
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def updatePassWord(data):
    url = host + '/basicinfo/updatePassWord'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #17
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def repaymentPlanList(data):
    url = host + '/repay/repaymentPlanList'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #18
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def getOrderPageInfo(data):
    url = host + '/order/getOrderPageInfo'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #19
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def directRepay(data):
    url = host + '/repay/directRepay'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #20
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def login(data):
    url = host + '/login/login'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #21
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def saveH5gid(data):
    url = host + '/authorization/saveH5gid'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #22
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def checkPayPassword(data):
    url = host + '/basicinfo/checkPayPassword'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #23
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def reggetSmsCode(data):
    url = host + '/reg/getSmsCode'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #24
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def createOrder(data):
    url = host + '/order/createOrder'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #25
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def applyProduct(data):
    url = host + '/product/applyProduct'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #26
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def checkTimePeriod(data):
    url = host + '/product/checkTimePeriod'
    method = 'POST'
    requestType = 'data'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #27
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def checkOCRTimes(data):
    url = host + '/authorization/checkOCRTimes'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #28
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def repayreceipt(data):
    url = host + '/repay/receipty'
    method = 'POST'
    requestType = 'data'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #29
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def idCardBack(data):
    url = host + '/discernApi/idCardBack'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r
コード例 #30
0
ファイル: Appapi.py プロジェクト: xiaopeiguan/ALP
def maintenanceinfo(data):
    url = host + '/maintenance/info'
    r = RequestMethodJC.sendrequest(s, url, method, requestType, data)
    return r