You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
233 B
13 lines
233 B
![]()
7 months ago
|
function pay(o) {
|
||
|
// 数据源转换成字符
|
||
|
let data = JSON.stringify(o)
|
||
|
// 转码传输
|
||
|
let value = encodeURIComponent(data)
|
||
|
uni.navigateTo({
|
||
|
url: '/uni_modules/common-pay/pages/pay/pay?data=' + value
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export {
|
||
|
pay
|
||
|
}
|