Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica-professional-exam
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Culm
pica-professional-exam
提交
17134634
提交
17134634
编写于
9月 08, 2020
作者:
guofeng.chen
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改提示
上级
0ee9ed49
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
44 行增加
和
22 行删除
+44
-22
goods-detail.vue
src/views/goods-detail.vue
+44
-22
未找到文件。
src/views/goods-detail.vue
浏览文件 @
17134634
...
...
@@ -68,11 +68,13 @@
{{
goods
.
isSale
===
2
?
'商品已下架'
:
'确认支付'
}}
</div>
</div>
<Loading
v-show=
"showLoading"
/>
</div>
</
template
>
<
script
>
import
{
Swipe
,
SwipeItem
}
from
'vant'
;
import
Loading
from
"@/components/common/common-loading"
;
import
{
wxConfig
,
chooseWXPay
}
from
'@/utils/wxShare'
;
import
{
getAPPID
,
getWebPageUrl
,
isWeiXin
,
wxOauth
,
debounce
}
from
'@/utils'
;
const
isWechat
=
isWeiXin
();
...
...
@@ -82,6 +84,7 @@ export default {
components
:
{
Swipe
,
SwipeItem
,
Loading
,
},
data
()
{
return
{
...
...
@@ -95,6 +98,7 @@ export default {
tabs
:
[],
curtTabIdx
:
0
,
tabW
:
0
,
// tab的宽度
showLoading
:
false
,
}
},
computed
:
{
...
...
@@ -223,6 +227,10 @@ export default {
this
.
$toast
(
'已达最大限购数量'
)
return
;
}
if
(
this
.
goods
.
goodsStocks
&&
num
>=
this
.
goods
.
goodsStocks
)
{
this
.
$toast
(
'库存不足'
)
return
;
}
this
.
curtGoodsNum
=
num
+
1
;
this
.
countTotalPrice
();
},
...
...
@@ -261,6 +269,10 @@ export default {
wxOauth
();
return
;
}
// 避免多次支付
if
(
this
.
showLoading
)
{
return
;
}
const
{
id
,
couponDTO
,
isSale
}
=
this
.
goods
;
const
{
preferentialPrice
,
costPrice
}
=
this
.
totalPrice
;
// if (!id || isSale !== 1) {
...
...
@@ -274,6 +286,7 @@ export default {
preferentialPrice
:
preferentialPrice
,
price
:
costPrice
,
}
this
.
showLoading
=
true
;
this
.
POST
(
'trade/center/order/createV2'
,
orderData
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
const
orderId
=
res
.
data
.
orderId
;
...
...
@@ -287,28 +300,11 @@ export default {
}
}
else
{
this
.
$toast
(
res
.
message
);
this
.
showLoading
=
false
;
}
})
},
// 站外微信支付
goWxPayOut
(
orderId
)
{
const
data
=
{
// openId: getAPPID(),
orderId
,
payChannel
:
1
,
tradeType
:
4
,
}
this
.
POST
(
'trade/center/mweb_prepay'
,
data
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
if
(
res
.
data
)
{
let
redirectUrl
=
this
.
getRedirectUrl
(
orderId
);
let
jumpLink
=
res
.
data
+
'&redirect_url='
+
encodeURIComponent
(
redirectUrl
);
window
.
location
.
href
=
jumpLink
;
}
}
else
{
this
.
$toast
(
res
.
message
||
'暂时不能支付'
);
}
})
}).
catch
(()
=>
{
this
.
showLoading
=
false
;
});
},
// 微信内支付
goWxPayInner
(
orderId
)
{
...
...
@@ -341,7 +337,7 @@ export default {
that
.
$toast
(
'支付失败,请重试~'
);
},
cancel
:
function
()
{
that
.
$toast
(
'支付取消~'
);
//
that.$toast('支付取消~');
},
complete
:
function
()
{},
};
...
...
@@ -349,6 +345,32 @@ export default {
}
else
{
this
.
$toast
(
res
.
message
);
}
this
.
showLoading
=
false
;
}).
catch
(()
=>
{
this
.
showLoading
=
false
;
})
},
// 站外微信支付
goWxPayOut
(
orderId
)
{
const
data
=
{
// openId: getAPPID(),
orderId
,
payChannel
:
1
,
tradeType
:
4
,
}
this
.
POST
(
'trade/center/mweb_prepay'
,
data
).
then
(
res
=>
{
if
(
res
.
code
==
"000000"
)
{
if
(
res
.
data
)
{
let
redirectUrl
=
this
.
getRedirectUrl
(
orderId
);
let
jumpLink
=
res
.
data
+
'&redirect_url='
+
encodeURIComponent
(
redirectUrl
);
window
.
location
.
href
=
jumpLink
;
}
}
else
{
this
.
$toast
(
res
.
message
||
'暂时不能支付'
);
}
this
.
showLoading
=
false
;
}).
catch
(()
=>
{
this
.
showLoading
=
false
;
})
},
getRedirectUrl
(
orderId
)
{
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录