提交 075528f2 编写于 作者: zhaofengliang920817's avatar zhaofengliang920817

调整getLocation和virtualPayment页面示例。

上级 a479cec8
...@@ -144,6 +144,11 @@ ...@@ -144,6 +144,11 @@
}, },
getLocationTap: function () { getLocationTap: function () {
if (this.providerList.length == 0) { if (this.providerList.length == 0) {
uni.showToast({
title: '未获取到provider,请确定基座中包含location功能',
icon: "error"
})
console.log("未获取到provider,请确定基座中包含location功能")
return return
} }
uni.showLoading({ uni.showLoading({
......
...@@ -54,15 +54,15 @@ ...@@ -54,15 +54,15 @@
methods: { methods: {
initProductList() { initProductList() {
this.productList.push({ this.productList.push({
name: '消耗性产品:个人赞助1元, 数量=5', name: '消耗性产品:个人赞助1元',
id: this.isDebug() ? "uniappx.consumable.sponsor_1" : "uniappx.consumable.sponsor1", id: this.isDebug() ? "uniappx.consumable.sponsor_1" : "uniappx.consumable.sponsor1",
quantity: 5 quantity: 1
} as PayItem); } as PayItem);
this.productList.push({ this.productList.push({
name: '消耗性产品:金牌赞助50元', name: '消耗性产品:金牌赞助5元, 数量=2',
id: this.isDebug() ? "uniappx.consumable.sponsor_50" : "uniappx.consumable.sponsor50", id: this.isDebug() ? "uniappx.consumable.sponsor_50" : "uniappx.consumable.sponsor50",
quantity: 1 quantity: 2
} as PayItem); } as PayItem);
this.productList.push({ this.productList.push({
...@@ -124,9 +124,10 @@ ...@@ -124,9 +124,10 @@
}); });
uni.requestVirtualPayment({ uni.requestVirtualPayment({
//需要将orderId转换为如下符合UUID规则的字符串,然后赋值给参数appAccountToken, 传入不符合UUID规则的字符串无效
apple: { apple: {
productId: e.id, productId: e.id,
appAccountToken: "orderId+accountId", appAccountToken: "123eaaaa-e89b-12d3-a456-42661417400b",
quantity: e.quantity ?? 1, quantity: e.quantity ?? 1,
}, },
success: (res) => { success: (res) => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册