uniapp 内购 -100返回订单信息失败

      uni.getProvider({
				service: 'payment',
				success: (res) => {
					const iapChannel = res.providers.find((channel) => {
						return (channel.id === 'appleiap')
					})

					if (iapChannel) {
							let ids = ['1234567890', '1234567892'];
							iapChannel.requestOrder(ids, (
								orderList) => {
								console.log("----- order -----", orderList); 
							}, (e) => {
								console.log('--- failed ---' , e);
							});

							uni.requestPayment({
								provider: 'appleiap',
								orderInfo: {
									productid: that.productid,
									manualFinishTransaction: true,
									username: ress.data.orderId
								},
								success: (e) => {
									that.isPayLoadding = false
								},
								fail: (e) => {
									that.isPayLoadding = false
								}
							})
					}
				}
			});
uniapp 内购 -100返回订单信息失败
 
 
Q