参数名 | 变量 | 类型[长度限制] | 必填 | 描述 |
---|---|---|---|---|
小程序APPID | appId | string[1,32] | 是 | 车主服务小程序appid,固定值:wxbcad394b3d99dac9 示例值:wxbcad394b3d99dac9 |
路径 | path | string[1,64] | 是 | 小程序页面path,固定值:pages/auth-creditpay/auth-creditpay 示例值:pages/auth-creditpay/auth-creditpay |
+业务参数 | extraData | Object | 是 | 需要传递给支付分的业务数据。 |
wx.navigateToMiniProgram({
appId: 'wxbcad394b3d99dac9',
path: '/pages/auth-creditpay/auth-creditpay',
extraData: {
mchid: '1230000100',
openid: '5K8264ILTKCH16CQ250',
plate_number: '粤B888888',
plate_color: 'BLUE',
trade_scene: 'PARKING'
},
success() {
//dosomething
},
fail() {
//dosomething
},
complete() {
//dosomething
}
});
App({
onShow(res) {
if (res.scene === 1038) { // 场景值1038:从被打开的小程序返回
const { appId, extraData } = res.referrerInfo
if (appId == 'wxbcad394b3d99dac9') { // appId为wxbcad394b3d99dac9:从车主小程序跳转回来
// TODO
// 客户端小程序不确定授权结果,需要发起‘查询车牌服务开通信息’确认授权结果
return;
}
}
}
})