Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
dev
/
lilejia-f2mb-pro
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
222cda25
authored
2019-08-15 18:58:32 +0800
by
joe
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
1
1 parent
fcf6d777
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
26 additions
and
16 deletions
src/components/biz-model/biz-model.vue
src/components/biz-model/draw-model.vue
src/pages/list/components/MemberWorksView.vue
src/pages/prize/index.vue
src/pages/sign/components/EditModel.vue
src/pages/sign/index.vue
src/components/biz-model/biz-model.vue
View file @
222cda2
...
...
@@ -153,6 +153,7 @@ export default {
height
:
116px
;
background
:
url(../../assets/imgs/model-close.png)
;
background-size
:
100%
;
margin-right
:
20px
;
}
.model-content
{
...
...
src/components/biz-model/draw-model.vue
View file @
222cda2
...
...
@@ -259,9 +259,11 @@ export default {
.model-close
{
width
:
64px
;
height
:
11
6px
;
height
:
8
6px
;
background
:
url(../../assets/imgs/model-close.png)
;
background-size
:
100%
;
background-size
:
cover
;
margin-right
:
20px
;
margin-top
:
20px
;
}
.model-content
{
...
...
src/pages/list/components/MemberWorksView.vue
View file @
222cda2
...
...
@@ -93,6 +93,7 @@ export default {
},
methods
:
{
praiseHandler
()
{
as
.
setShare
(
""
,
""
,
""
,
""
);
Toast
.
loading
({
mask
:
true
,
message
:
"请稍等..."
...
...
src/pages/prize/index.vue
View file @
222cda2
...
...
@@ -85,19 +85,21 @@ export default {
},
viewDetailHandler
(
item
)
{
console
.
log
(
item
);
let
type
=
item
.
prizeType
;
switch
(
type
)
{
case
"real"
:
this
.
model
.
drawResult
=
item
;
this
.
model
.
show
=
true
;
break
;
case
"coupon"
:
location
.
href
=
global_view_coupon_url
;
break
;
default
:
location
.
href
=
global_view_integral_url
;
break
;
}
this
.
model
.
drawResult
=
item
;
this
.
model
.
show
=
true
;
// let type = item.prizeType;
// switch (type) {
// case "real":
// this.model.drawResult = item;
// this.model.show = true;
// break;
// case "coupon":
// location.href = global_view_coupon_url;
// break;
// default:
// location.href = global_view_integral_url;
// break;
// }
}
},
components
:
{
...
...
@@ -174,6 +176,8 @@ export default {
line-height
:
40px
;
border-radius
:
26px
;
background-color
:
#f6b843
;
position
:
relative
;
z-index
:
1000
;
}
.empty
{
...
...
src/pages/sign/components/EditModel.vue
View file @
222cda2
...
...
@@ -358,6 +358,7 @@ export default {
.base-margin
{
margin-top
:
40px
;
margin-bottom
:
80px
;
}
.icon-register
{
...
...
src/pages/sign/index.vue
View file @
222cda2
...
...
@@ -137,12 +137,13 @@ export default {
}
else
{
return
;
}
let
title
=
"我C位出道,需要你的一票"
;
let
desc
=
this
.
formData
.
profile
||
null
;
let
imgurl
=
this
.
formData
.
worksList
.
length
>
0
?
this
.
formData
.
worksList
[
0
].
worksUrl
:
null
;
as
.
setShare
(
link
,
null
,
desc
,
imgurl
);
as
.
setShare
(
link
,
title
,
desc
,
imgurl
);
}
},
components
:
{
...
...
Please
register
or
sign in
to post a comment