Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mr-julyedu
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
baiguangyao
mr-julyedu
Commits
b4eb724e
Commit
b4eb724e
authored
Jan 06, 2020
by
zhanghaozhe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
微信分享
parent
6ae12cdc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
43 deletions
+42
-43
src/utils/wechat/base.js
+42
-43
No files found.
src/utils/wechat/base.js
View file @
b4eb724e
...
...
@@ -3,54 +3,54 @@ import { http, browser } from "@/utils"
const
url
=
`https://res.wx.qq.com/open/js/jweixin-1.4.0.js`
const
appId
=
'wx23dac6775ac82877'
const
jsApiList
=
[
'updateAppMessageShareData'
,
'updateTimelineShareData'
,
'onMenuShareAppMessage'
,
'onMenuShareTimeline'
]
const
jsApiList
=
[
'updateAppMessageShareData'
,
'updateTimelineShareData'
,
'onMenuShareAppMessage'
,
'onMenuShareTimeline'
]
export
const
getSignature
=
async
(
config
=
{})
=>
{
let
res
=
await
http
.
post
(
`
${
API
[
'base-api'
]}
/m/sale/signature`
,
{
url
:
browser
.
isWeixin
&&
browser
.
isIOS
?
sessionStorage
.
getItem
(
'enter_url'
)
:
window
.
location
.
href
.
split
(
'#'
)[
0
],
})
return
wx
.
config
({
debug
:
false
,
// 开启调试模式,
appId
,
// 必填,公众号的唯一标识
timestamp
:
res
.
data
.
timestamp
,
// 必填,生成签名的时间戳
nonceStr
:
res
.
data
.
nonce_str
,
// 必填,生成签名的随机串
signature
:
res
.
data
.
signature
,
// 必填,签名,见附录1
jsApiList
,
...
config
})
let
res
=
await
http
.
post
(
`
${
API
[
'base-api'
]}
/m/sale/signature`
,
{
url
:
encodeURIComponent
(
browser
.
isWeixin
&&
browser
.
isIOS
?
sessionStorage
.
getItem
(
'enter_url'
)
:
window
.
location
.
href
.
split
(
'#'
)[
0
],)
})
return
wx
.
config
({
debug
:
false
,
// 开启调试模式,
appId
,
// 必填,公众号的唯一标识
timestamp
:
res
.
data
.
timestamp
,
// 必填,生成签名的时间戳
nonceStr
:
res
.
data
.
nonce_str
,
// 必填,生成签名的随机串
signature
:
res
.
data
.
signature
,
// 必填,签名,见附录1
jsApiList
,
...
config
})
}
export
const
getWXObject
=
()
=>
{
return
new
Promise
(
resolve
=>
{
if
(
!
window
.
wx
)
{
return
loadScript
(
url
).
then
(()
=>
resolve
())
}
resolve
()
})
return
new
Promise
(
resolve
=>
{
if
(
!
window
.
wx
)
{
return
loadScript
(
url
).
then
(()
=>
resolve
())
}
resolve
()
})
}
function
loadScript
(
url
)
{
return
new
Promise
(
resolve
=>
{
var
head
=
document
.
head
||
document
.
getElementsByTagName
(
'head'
)[
0
]
var
script
=
document
.
createElement
(
'script'
)
script
.
type
=
'text/javascript'
script
.
src
=
url
if
(
!
(
'onload'
in
script
))
{
script
.
onreadystatechange
=
function
()
{
if
(
this
.
readyState
!==
'complete'
&&
this
.
readyState
!==
'loaded'
)
return
this
.
onreadystatechange
=
null
resolve
()
}
}
script
.
onload
=
function
()
{
this
.
onload
=
null
resolve
()
}
head
.
appendChild
(
script
)
})
}
\ No newline at end of file
return
new
Promise
(
resolve
=>
{
var
head
=
document
.
head
||
document
.
getElementsByTagName
(
'head'
)[
0
]
var
script
=
document
.
createElement
(
'script'
)
script
.
type
=
'text/javascript'
script
.
src
=
url
if
(
!
(
'onload'
in
script
))
{
script
.
onreadystatechange
=
function
()
{
if
(
this
.
readyState
!==
'complete'
&&
this
.
readyState
!==
'loaded'
)
return
this
.
onreadystatechange
=
null
resolve
()
}
}
script
.
onload
=
function
()
{
this
.
onload
=
null
resolve
()
}
head
.
appendChild
(
script
)
})
}
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