Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
marketing
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
陈玉桐
marketing
Commits
4623a7cf
Commit
4623a7cf
authored
Nov 13, 2019
by
陈玉桐
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
上传,分享
parent
9414886c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
33 additions
and
3 deletions
+33
-3
icon_arrow.png
src/assets/icon_arrow.png
+0
-0
icon_music.png
src/assets/icon_music.png
+0
-0
icon_silent.png
src/assets/icon_silent.png
+0
-0
activityDetail.vue
src/views/activityDetail.vue
+32
-2
tool.vue
src/views/tool.vue
+1
-1
No files found.
src/assets/icon_arrow.png
0 → 100644
View file @
4623a7cf
1.75 KB
src/assets/icon_music.png
0 → 100644
View file @
4623a7cf
1.92 KB
src/assets/icon_silent.png
0 → 100644
View file @
4623a7cf
2.6 KB
src/views/activityDetail.vue
View file @
4623a7cf
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<div
id=
"detailBox"
>
<div
id=
"detailBox"
>
<div
class=
"detailCon"
>
<div
class=
"detailCon"
>
<img
class=
"detailConImg"
v-if=
"thumb"
:src=
"thumb"
>
<img
class=
"detailConImg"
v-if=
"thumb"
:src=
"thumb"
>
<div
class=
"detailConTitle"
><span>
{{
title
}}
</span><img
src=
"../assets/icon_share.png"
></div>
<div
class=
"detailConTitle"
><span>
{{
title
}}
</span><img
@
click=
"share"
src=
"../assets/icon_share.png"
></div>
<div
class=
"detailContDes"
>
<div
class=
"detailContDes"
>
<div>
<div>
<img
src=
"../assets/icon_enrollment.png"
>
<img
src=
"../assets/icon_enrollment.png"
>
...
@@ -32,6 +32,10 @@
...
@@ -32,6 +32,10 @@
<span
@
click=
"tipDialogShow=false"
>
{{
tipDialogBtn
}}
</span>
<span
@
click=
"tipDialogShow=false"
>
{{
tipDialogBtn
}}
</span>
</div>
</div>
</div>
</div>
<div
id=
"shareWrap"
v-show=
"shareWrapShow"
@
click=
"shareWrapShow=false"
>
<span>
点击此处分享
</span>
<img
src=
"../assets/icon_arrow.png"
>
</div>
<loading
:loadingShow=
"loadingShow"
></loading>
<loading
:loadingShow=
"loadingShow"
></loading>
</div>
</div>
</
template
>
</
template
>
...
@@ -57,6 +61,8 @@ export default {
...
@@ -57,6 +61,8 @@ export default {
tipDialogBtn
:
''
,
tipDialogBtn
:
''
,
tipDialogText1
:
''
,
tipDialogText1
:
''
,
tipDialogText2
:
''
,
tipDialogText2
:
''
,
shareWrapShow
:
false
,
}
}
},
},
components
:
{
components
:
{
...
@@ -100,7 +106,7 @@ export default {
...
@@ -100,7 +106,7 @@ export default {
this
.
timestamp
=
response
.
data
.
timestamp
this
.
timestamp
=
response
.
data
.
timestamp
wx
.
config
({
wx
.
config
({
debug
:
tru
e
,
// 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
debug
:
fals
e
,
// 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId
:
this
.
appId
,
// 必填,公众号的唯一标识
appId
:
this
.
appId
,
// 必填,公众号的唯一标识
timestamp
:
this
.
timestamp
,
// 必填,生成签名的时间戳
timestamp
:
this
.
timestamp
,
// 必填,生成签名的时间戳
nonceStr
:
this
.
nonceStr
,
// 必填,生成签名的随机串
nonceStr
:
this
.
nonceStr
,
// 必填,生成签名的随机串
...
@@ -165,6 +171,9 @@ export default {
...
@@ -165,6 +171,9 @@ export default {
this
.
tipDialogShow
=
true
this
.
tipDialogShow
=
true
}
}
}
}
},
share
()
{
this
.
shareWrapShow
=
true
}
}
}
}
}
}
...
@@ -239,4 +248,24 @@ export default {
...
@@ -239,4 +248,24 @@ export default {
border-radius
:
19px
;
border-radius
:
19px
;
}
}
}
}
#shareWrap
{
position
:
fixed
;
top
:
0
;
bottom
:
0
;
left
:
0
;
right
:
0
;
background-color
:
rgba
(
0
,
0
,
0
,
0.6
);
color
:
#fff
;
font-size
:
16px
;
text-align
:
right
;
span{
margin-top
:
30px
;
display
:
inline-block
;
}
img
{
width
:
35px
;
margin
:
0
15px
0
10px
;
}
}
</
style
>
</
style
>
\ No newline at end of file
src/views/tool.vue
View file @
4623a7cf
...
@@ -162,7 +162,7 @@ export default {
...
@@ -162,7 +162,7 @@ export default {
this
.
timestamp
=
response
.
data
.
timestamp
this
.
timestamp
=
response
.
data
.
timestamp
wx
.
config
({
wx
.
config
({
debug
:
tru
e
,
// 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
debug
:
fals
e
,
// 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId
:
this
.
appId
,
// 必填,公众号的唯一标识
appId
:
this
.
appId
,
// 必填,公众号的唯一标识
timestamp
:
this
.
timestamp
,
// 必填,生成签名的时间戳
timestamp
:
this
.
timestamp
,
// 必填,生成签名的时间戳
nonceStr
:
this
.
nonceStr
,
// 必填,生成签名的随机串
nonceStr
:
this
.
nonceStr
,
// 必填,生成签名的随机串
...
...
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