1.0.6 • Published 6 years ago

tools-cashier v1.0.6

Weekly downloads
2
License
ISC
Repository
-
Last release
6 years ago

tools-cashier

install

npm i tools-cashier --save

useage

var Sdk = require('tools-cashier');
var cashierPay = document.getElementById('cashierPay');
function cashierPaySuccessBack(res) {
    alert(JSON.stringify(res));
}

cashierPay.addEventListener('click', function () {
    Sdk.cashierPay(cashierPaySuccessBack);
});

如果是全局引入的话 @展帝

function cashierPaySuccessBack(res) {
    alert(JSON.stringify(res));
}
window.CashierSdk.cashierPay(cashierPaySuccessBack);

返回结构格式如下

{
    "error": {
        "returnCode": 0,
        "returnMessage": "success",
        "returnUserMessage": "success"
    },
    "data": {
        "balance": 30000,
        "productList": [
            {
                "id": 1,
                "price": "0.01",
                "beans": 10000,
                "productId": 1
            },
        ]
    }
}
1.0.6

6 years ago

1.0.5

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago