Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
group-buy-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ui
group-buy-ui
Commits
cf614ace
Commit
cf614ace
authored
Nov 08, 2021
by
郭志伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore(pay.js): 移除无用支付文件
parent
5562e9dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
156 deletions
+0
-156
pay.service.js
src/service/pay.service.js
+0
-156
No files found.
src/service/pay.service.js
deleted
100644 → 0
View file @
5562e9dc
/* eslint-disable space-before-function-paren */
/* eslint-disable prettier/prettier */
/*
* @Description: 支付微信h5, jsapi, 第三方收银台,跳转)
* @Date: 2020-07-28 15:03:52
* @LastEditors: gzw
* @LastEditTime: 2021-08-11 10:33:50
*/
import
qs
from
'
qs
'
;
import
cookies
from
'
@/service/cookieStorage.service
'
;
import
localStorage
from
'
@/service/localStorage.service
'
;
/**
* payByWeixinJsapi
* @description: 微信通过jsapi支付
* 可以在微信浏览器调起支付
* @param {type}
* @return:
*/
function
payByWeixinJsapi
(
info
=
{},
callback
)
{
function
onBridgeReady
()
{
// eslint-disable-next-line no-undef
WeixinJSBridge
.
invoke
(
'
getBrandWCPayRequest
'
,
info
,
function
(
res
)
{
if
(
res
.
err_msg
==
'
get_brand_wcpay_request:ok
'
)
{
// 使用以上方式判断前端返回,微信团队郑重提示:
//res.err_msg将在用户支付成功后返回ok,但并不保证它绝对可靠。
callback
(
'
ok
'
);
}
else
if
(
res
.
err_msg
==
'
get_brand_wcpay_request:cancel
'
)
{
// 支付取消
callback
(
'
cancel
'
);
}
else
{
// 支付失败
callback
(
'
fail
'
);
}
});
}
if
(
typeof
WeixinJSBridge
==
'
undefined
'
)
{
if
(
document
.
addEventListener
)
{
document
.
addEventListener
(
'
WeixinJSBridgeReady
'
,
onBridgeReady
,
false
);
}
else
if
(
document
.
attachEvent
)
{
document
.
attachEvent
(
'
WeixinJSBridgeReady
'
,
onBridgeReady
);
document
.
attachEvent
(
'
onWeixinJSBridgeReady
'
,
onBridgeReady
);
}
}
else
{
onBridgeReady
();
}
}
/**
* payByWeixinH5
* @description: 微信通过H5支付
* 可以在浏览器调起微信支付
* 在羊小咩(信用钱包)app中调起微信支付,会先唤起微信,原来的页面会自动跳转到redirect_url设定的地址
* @param {type}
* @return:
*/
function
payByWeixinH5
(
info
)
{
if
(
!
info
.
url
)
return
;
if
(
!
info
.
params
)
{
info
.
params
=
{};
}
const
vccToken
=
localStorage
.
get
(
'
vccToken
'
);
const
orderNo
=
cookies
.
get
(
'
orderNo
'
);
info
.
params
.
isWxH5
=
1
;
info
.
params
.
vccToken
=
vccToken
;
info
.
params
.
orderNo
=
orderNo
;
info
.
params
.
isWx
=
true
;
const
currentPath
=
encodeURIComponent
(
window
.
location
.
origin
+
// eslint-disable-next-line prettier/prettier
'
/payWaiting
'
+
qs
.
stringify
(
info
.
params
,
{
encode
:
true
,
addQueryPrefix
:
true
})
);
try
{
const
nextPage
=
document
.
createElement
(
'
a
'
);
nextPage
.
setAttribute
(
'
href
'
,);
nextPage
.
click
();
}
catch
(
error
)
{
window
.
location
.
href
=
`
${
info
.
url
}
&redirect_url=
${
currentPath
}
`
;
}
}
/**
* payByALIH5
* @description: 支付宝支付
* @param {type}
* @return:
*/
function
payByALIH5
(
info
)
{
if
(
!
info
.
url
)
return
;
const
aliWrap
=
document
.
createElement
(
'
div
'
);
aliWrap
.
id
=
'
ALIWEB_WRAP
'
;
aliWrap
.
setAttribute
(
'
id
'
,
'
ALIWEB_WRAP
'
);
aliWrap
.
innerHTML
=
info
.
url
;
document
.
body
.
appendChild
(
aliWrap
);
document
.
forms
[
0
].
submit
();
setTimeout
(()
=>
{
const
ALIWEB_WRAP
=
document
.
getElementById
(
'
ALIWEB_WRAP
'
);
if
(
ALIWEB_WRAP
!=
null
)
ALIWEB_WRAP
.
parentNode
.
removeChild
(
ALIWEB_WRAP
);
},
500
);
}
/**
* payByThirdPartyCashier
* @description: 第三方收银台
* @param {type}
* @return:
*/
function
payByThirdPartyCashier
(
info
)
{
if
(
!
info
.
url
)
return
;
const
orderNo
=
cookies
.
get
(
'
orderNo
'
);
info
.
params
.
third
=
1
;
info
.
params
.
orderNo
=
orderNo
;
const
currentPath
=
encodeURIComponent
(
window
.
location
.
origin
+
'
/payWaiting
'
+
qs
.
stringify
(
info
.
params
,
{
encode
:
true
,
addQueryPrefix
:
true
})
);
const
nextPage
=
document
.
createElement
(
'
a
'
);
nextPage
.
setAttribute
(
'
href
'
,
`
${
info
.
url
}
&redirect_uri=
${
currentPath
}
`
);
nextPage
.
click
();
window
.
location
.
href
=
`
${
info
.
url
}
&redirect_uri=
${
currentPath
}
`
;
}
/**
* @description: 支付方式判断, 返回promise
* NATIVE=原生扫码支付.,APP=ap支付,,JSAPI=公众号支付/小程序支付,,MWEB=H5支付.,MICROPAY=刷卡支付,默认JSAPI
* @param {String} type 支付方式,THIRD -> 第三方,MWEB -> H5支付, JSAPI -> jsapi支付,默认支付方式,THIRD
* @param {Object/String} payInfo 支付信息
* @return {Promise} 回调
*/
export
function
payByWay
(
type
=
'
THIRD
'
,
payInfo
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
if
(
type
===
'
JSAPI
'
&&
!
payInfo
.
url
)
{
payByWeixinJsapi
(
payInfo
,
function
(
e
)
{
if
(
e
===
'
ok
'
)
{
resolve
();
}
else
{
reject
();
}
});
}
else
{
if
(
payInfo
.
url
.
indexOf
(
'
tenpay
'
)
>
-
1
)
{
payByWeixinH5
(
payInfo
);
reject
();
}
else
if
(
type
===
'
ALIWEB
'
)
{
payByALIH5
(
payInfo
);
resolve
();
}
else
{
payByThirdPartyCashier
(
payInfo
);
reject
();
}
// resolve();
}
});
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment