paysigncenter() {
my.paysigncenter({
//对服务端返回的签约字符串进行urlencode编码(如果服务端已进行编码则不需要再进行编码)
signstr: encodeuricomponent('服务端返回的签约字符串'),
success: (res) => {
my.alert({
title: 'success', // alert框的标题content: json.stringify(res),
})
},
fail: (res) => {
my.alert({
title: 'fail', // alert框的标题
content: json.stringify(res),
})
},
})