Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
shuzilixiangwaibao
/
wanda-vr
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
1
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
3fc4f5f3
authored
Sep 09, 2020
by
杨翰文
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of gitlab.maxrocky.com:yanghanwen/wanda-vr
parents
653e1bbf
c1d7cae2
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
13 deletions
+18
-13
index.html
+1
-1
libs/helper.js
+5
-0
route.html
+2
-2
show.html
+4
-4
tour.html
+1
-1
travel.html
+5
-5
No files found.
index.html
View file @
3fc4f5f3
...
...
@@ -103,7 +103,7 @@ function _init_wx_jssdk(){
})
wx
.
updateTimelineShareData
({
title
:
FRONT_TITLE
,
// 分享标题
title
:
getUserInfoByLocalStorage
()?
`
${
getUserInfoByLocalStorage
()}
的2020幸运打卡地:丹寨`
:
FRONT_TITLE
,
// 分享标题
link
:
FRONT_URL
,
// 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl
:
shareImg
(),
// 分享图标
success
:
function
()
{
...
...
libs/helper.js
View file @
3fc4f5f3
...
...
@@ -129,11 +129,16 @@ const getUserInfo = async(storage='local')=>{
}
}
else
{
const
userInfo
=
await
$get
(
'/weixin/userinfo'
).
then
(
res
=>
res
.
data
).
catch
(
err
=>
{
throw
err
})
localStorage
.
setItem
(
'userInfo'
,
JSON
.
stringify
(
userInfo
))
return
{...
userInfo
}
}
}
const
getUserInfoByLocalStorage
=
function
()
{
return
JSON
.
parse
(
localStorage
.
getItem
(
'userInfo'
))?
JSON
.
parse
(
localStorage
.
getItem
(
'userInfo'
)).
nickname
:
false
}
function
setWxConfig
(
config
)
{
wx
.
config
(
config
)
}
...
...
route.html
View file @
3fc4f5f3
...
...
@@ -719,8 +719,8 @@ var vueInstance = new Vue({
if
(
wx
){
wx
.
updateAppMessageShareData
({
title
:
shareTitle
,
// 分享标题
desc
:
shareDesc
,
// 分享描述
title
:
FRONT_TITLE
,
// 分享标题
desc
:
FRONT_DESC
,
// 分享描述
link
:
FRONT_URL
,
// 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl
:
shareImg
(),
// 分享图标
success
:
function
()
{
...
...
show.html
View file @
3fc4f5f3
...
...
@@ -427,10 +427,10 @@ var vueInstance = new Vue({
if
(
wx
){
wx
.
updateAppMessageShareData
({
title
:
shareTitle
,
// 分享标题
desc
:
shareDesc
,
// 分享描述
title
:
FRONT_TITLE
,
// 分享标题
desc
:
FRONT_DESC
,
// 分享描述
link
:
FRONT_URL
,
// 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl
:
currentInfo
.
small_image
,
// 分享图标
imgUrl
:
shareImg
(),
// 分享图标currentInfo.small_image
success
:
function
()
{
// 设置成功
}
...
...
@@ -439,7 +439,7 @@ var vueInstance = new Vue({
wx
.
updateTimelineShareData
({
title
:
shareTitle
,
// 分享标题
link
:
FRONT_URL
,
// 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl
:
currentInfo
.
small_image
,
// 分享图标
imgUrl
:
shareImg
()
,
// 分享图标
success
:
function
()
{
// 设置成功
}
...
...
tour.html
View file @
3fc4f5f3
...
...
@@ -353,7 +353,7 @@ function _init_wx_jssdk(){
})
wx
.
updateTimelineShareData
({
title
:
FRONT_TITLE
,
// 分享标题
title
:
getUserInfoByLocalStorage
()?
`
${
getUserInfoByLocalStorage
()}
的2020幸运打卡地:丹寨`
:
FRONT_TITLE
,
// 分享标题
link
:
FRONT_URL
,
// 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl
:
shareImg
(),
// 分享图标
success
:
function
()
{
...
...
travel.html
View file @
3fc4f5f3
...
...
@@ -538,19 +538,19 @@ var vueInstance = new Vue({
if
(
wx
){
wx
.
updateAppMessageShareData
({
title
:
shareTitle
,
// 分享标题
desc
:
shareDesc
,
// 分享描述
title
:
FRONT_TITLE
,
// 分享标题
desc
:
FRONT_DESC
,
// 分享描述
link
:
FRONT_URL
,
// 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl
:
currentInfo
.
small_image
||
shareImg
(),
// 分享图标
imgUrl
:
shareImg
(),
// 分享图标
success
:
function
()
{
// 设置成功
}
})
wx
.
updateTimelineShareData
({
title
:
shareTitle
,
// 分享标题
title
:
getUserInfoByLocalStorage
()?
`
${
getUserInfoByLocalStorage
()}
的2020幸运打卡地:丹寨`
:
FRONT_TITLE
,
// 分享标题
link
:
FRONT_URL
,
// 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl
:
currentInfo
.
small_image
||
shareImg
(),
// 分享图标
imgUrl
:
shareImg
(),
// 分享图标
success
:
function
()
{
// 设置成功
}
...
...
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