Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-unicloud-zh
提交
a1f1705b
U
unidocs-unicloud-zh
项目概览
DCloud
/
unidocs-unicloud-zh
通知
83
Star
2
Fork
19
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
8
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
unidocs-unicloud-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
8
合并请求
8
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
a1f1705b
编写于
8月 24, 2024
作者:
VK1688
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:uni-app-x.md
上级
886e1d72
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
27 addition
and
24 deletion
+27
-24
docs/uni-pay/uni-app-x.md
docs/uni-pay/uni-app-x.md
+27
-24
未找到文件。
docs/uni-pay/uni-app-x.md
浏览文件 @
a1f1705b
...
...
@@ -699,7 +699,7 @@ module.exports = {
"
devBundleId
"
:
""
,
// dev包名(如果dev包名和正式包名一致,则devBundleId可不填)
"
appCertPath
"
:
path
.
join
(
__dirname
,
'
appleiap/apiclient_cert.p8
'
),
// 证书路径
"
sandbox
"
:
true
,
// 是否是沙箱环境
}
}
,
}
}
```
...
...
@@ -2245,7 +2245,7 @@ await uniPayCo.getOpenid({
### 苹果虚拟支付@appleiap
> HBuilderX 版本需≥4.2
5
> HBuilderX 版本需≥4.2
6
**概述**
...
...
@@ -2261,17 +2261,20 @@ await uniPayCo.getOpenid({
```
js
// 发起苹果虚拟支付
this
.
$refs
.
pay
.
createOrder
({
let
buy_quantity
=
1
;
// 购买数量
let
goods_price
=
1
;
// 单价(此参数的单位是元)
this
.
$refs
.
payRef
.
createOrder
({
provider
:
"
appleiap
"
,
// 支付供应商(这里固定未appleiap,代表苹果虚拟支付)
order_no
:
"
20221027011000101001010
"
,
// 业务系统订单号
out_trade_no
:
"
2022102701100010100101001
"
,
// 插件支付单号
type
:
"
appleiap
"
,
// 支付回调类型(可自定义,建议填写appleiap)
description
:
"
为DCloud提供的免费软件进行赞助
"
,
// 订单描述
total_fee
:
parseInt
((
goods_price
*
100
*
buy_quantity
).
toFixed
(
0
)),
// 插件是以分为单位,故这里需要乘以100
// apple_virtual字段仅苹果虚拟支付生效
apple_virtual
:
{
product_id
:
"
uniappx.consumable.sponsor_1
"
,
// 产品id
goods_price
:
1
,
// 单价(此参数的单位是元)
buy_quantity
:
1
,
// 购买数量
goods_price
:
goods_price
,
// 单价(此参数的单位是元)
buy_quantity
:
buy_quantity
,
// 购买数量
},
custom
:
{},
// 自定义数据(此参数不推荐使用,因为是前端传的,此参数可能会被伪造,建议通过order_no查询自己业务订单表来获取自定义业务数据)
});
...
...
@@ -2287,8 +2290,8 @@ this.$refs.pay.createOrder({
<view
class=
"uni-list"
>
<radio-group
@
change=
"applePriceChange"
>
<view
class=
"uni-list-cell"
v-for=
"(item, index) in productList"
:key=
"index"
>
<radio
:value=
"item
.product_id"
:checked=
"product_id == item.product_id
"
/>
<view
class=
"price"
@
click=
"
product_id = item.product_id"
>
{{item.title}} {{item.goods_price
}}元
</view>
<radio
:value=
"item
['product_id']"
:checked=
"product_id == item['product_id']
"
/>
<view
class=
"price"
@
click=
"
applePriceClick(item)"
>
{{item['title']}} {{item['goods_price']
}}元
</view>
</view>
</radio-group>
</view>
...
...
@@ -2323,7 +2326,7 @@ this.$refs.pay.createOrder({
},
{
"
description
"
:
"
为DCloud提供的免费软件进行赞助
"
,
"
goods_price
"
:
5
0
,
// 单价(元)
"
goods_price
"
:
5
,
// 单价(元)
"
buy_quantity
"
:
1
,
// 数量(消耗性类型: 数量默认是1,最大值是10)
"
product_id
"
:
"
uniappx.consumable.sponsor_50
"
,
"
title
"
:
"
消耗性产品:赞助
"
...
...
@@ -2363,25 +2366,21 @@ this.$refs.pay.createOrder({
},
onShow
()
{
// if (this.$refs.payRef && this.$refs.payRef.appleiapRestore) {
// // 苹果虚拟支付未完成订单检测
// this.$refs.payRef.appleiapRestore();
// }
},
onUnload
()
{},
methods
:
{
// 支付组件加载完毕后执行
onMounted
(
insideData
){
onMounted
(
insideData
:
any
){
this
.
init
();
},
// 初始化
async
init
()
{
this
.
product_id
=
this
.
productList
[
0
]
.
product_id
;
init
()
{
this
.
product_id
=
this
.
productList
[
0
]
[
"
product_id
"
]
as
string
;
this
.
disabled
=
false
;
if
(
this
.
$refs
.
payRef
&&
this
.
$refs
.
payRef
.
appleiapRestore
)
{
// 苹果虚拟支付未完成订单检测
this
.
$refs
.
payRef
.
appleiapRestore
();
}
let
payRef
=
this
.
$refs
[
'
payRef
'
]
as
UniPayComponentPublicInstance
;
// 苹果虚拟支付未完成订单检测
payRef
.
appleiapRestore
();
},
/**
* 发起支付
...
...
@@ -2390,10 +2389,11 @@ this.$refs.pay.createOrder({
createOrder
(){
this
.
order_no
=
`test`
+
Date
.
now
();
this
.
out_trade_no
=
this
.
order_no
;
let
productInfo
=
this
.
productList
.
find
((
item
)
=>
{
return
item
.
product_id
=
==
this
.
product_id
;
let
productInfo
:
UTSJSONObject
=
this
.
productList
.
find
((
item
:
UTSJSONObject
)
:
boolean
=>
{
return
item
[
'
product_id
'
]
==
this
.
product_id
;
});
let
buy_quantity
=
productInfo
.
buy_quantity
||
1
;
let
buy_quantity
=
productInfo
.
getNumber
(
'
buy_quantity
'
)
||
1
;
let
goods_price
=
productInfo
.
getNumber
(
'
goods_price
'
);
// 发起支付
this
.
$refs
.
payRef
.
createOrder
({
provider
:
"
appleiap
"
,
// 支付供应商(这里固定为appleiap,代表苹果虚拟支付)
...
...
@@ -2401,11 +2401,11 @@ this.$refs.pay.createOrder({
out_trade_no
:
this
.
out_trade_no
,
// 插件支付单号
type
:
"
appleiap
"
,
// 支付回调类型(可自定义,建议填写appleiap)
description
:
productInfo
.
description
,
total_fee
:
parseInt
((
productInfo
.
goods_price
*
100
*
buy_quantity
).
toFixed
(
0
)),
// 插件是以分为单位,故这里需要乘以100
total_fee
:
parseInt
((
goods_price
*
100
*
buy_quantity
).
toFixed
(
0
)),
// 插件是以分为单位,故这里需要乘以100
// apple_virtual字段仅苹果虚拟支付生效
apple_virtual
:
{
product_id
:
this
.
product_id
,
// 产品id
goods_price
:
productInfo
.
goods_price
,
// 单价
goods_price
:
goods_price
,
// 单价
buy_quantity
:
buy_quantity
,
// 购买数量
},
// 自定义数据
...
...
@@ -2443,6 +2443,9 @@ this.$refs.pay.createOrder({
applePriceChange
(
e
)
{
this
.
product_id
=
e
.
detail
.
value
;
},
applePriceClick
(
item
:
any
){
this
.
product_id
=
item
[
'
product_id
'
]
as
string
;
}
}
}
</script>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录