Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ElectricitySheep
Project
Project
Details
Activity
Releases
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
黄媛媛
ElectricitySheep
Commits
4c0d7028
Commit
4c0d7028
authored
Jan 18, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
a2df6759
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
12 deletions
+13
-12
duihuan.png
src/assets/img/userman/duihuan.png
+0
-0
setupActivityList.vue
src/components/setup/setupActivityList.vue
+4
-4
winningList.vue
src/components/setup/winningList.vue
+9
-8
No files found.
src/assets/img/userman/duihuan.png
View replaced file @
a2df6759
View file @
4c0d7028
4.49 KB
|
W:
|
H:
921 Bytes
|
W:
|
H:
2-up
Swipe
Onion skin
src/components/setup/setupActivityList.vue
View file @
4c0d7028
...
...
@@ -68,10 +68,10 @@
<div
v-if=
"scope.row.Type==2"
>
订单金额:
{{
scope
.
row
.
OrderNum
}}
元
</div>
<div
v-if=
"scope.row.Type==3"
>
商品数量:
{{
scope
.
row
.
OrderNum
}}
个
</div>
<div
v-if=
"scope.row.Tier==0"
>
层级范围
:
全部
</div>
<div
v-if=
"scope.row.Tier==1"
>
层级范围
:
一级分销
</div>
<div
v-if=
"scope.row.Tier==2"
>
层级范围
:
二级分销
</div>
<div
v-if=
"scope.row.Tier==3"
>
层级范围
:
三级分销
</div>
<div
v-if=
"scope.row.Tier==0"
>
层级范围
:
全部
</div>
<div
v-if=
"scope.row.Tier==1"
>
层级范围
:
一级分销
</div>
<div
v-if=
"scope.row.Tier==2"
>
层级范围
:
二级分销
</div>
<div
v-if=
"scope.row.Tier==3"
>
层级范围
:
三级分销
</div>
</
template
>
</el-table-column>
<el-table-column
...
...
src/components/setup/winningList.vue
View file @
4c0d7028
...
...
@@ -66,7 +66,7 @@
<el-table-column
prop=
"ActivityName"
label=
"封面图"
>
label=
"封面图"
width=
"270"
>
<template
slot-scope=
"scope"
>
<div
class=
"app-image"
:style=
"
{backgroundImage:'url(' + scope.row.CoverImage + ')',backgroundSize:'cover'}">
</div>
<div
flex=
"dir:left cross:center"
>
...
...
@@ -76,7 +76,7 @@
</el-table-column>
<el-table-column
prop=
"Name"
label=
"用户信息"
>
label=
"用户信息"
width=
"270"
>
<
template
slot-scope=
"scope"
>
<div
class=
"app-image"
:style=
"
{backgroundImage:'url(' + scope.row.Photo + ')',backgroundSize:'cover'}">
</div>
<div
flex=
"dir:left cross:center"
>
...
...
@@ -86,7 +86,7 @@
</el-table-column>
<el-table-column
prop=
"Name"
label=
"奖品信息"
>
label=
"奖品信息"
width=
"270"
>
<
template
slot-scope=
"scope"
>
<div
class=
"app-image"
:style=
"
{backgroundImage:'url(' + scope.row.PrizeImage + ')',backgroundSize:'cover'}">
</div>
<div
flex=
"dir:left cross:center"
>
...
...
@@ -113,8 +113,8 @@
</el-table-column>
<el-table-column
label=
"
活动时间
"
prop=
"Way"
width=
"200"
>
label=
"
领取方式
"
prop=
"Way"
>
<
template
slot-scope=
"scope"
>
<div>
{{
scope
.
row
.
Way
==
1
?
'线上'
:
'线下'
}}
</div>
</
template
>
...
...
@@ -140,15 +140,16 @@
width=
"180"
>
<
template
slot-scope=
"scope"
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"查看中奖订单"
placement=
"top"
>
<img
src=
"../../assets/img/userman/detail.png"
alt=
""
class=
"imgstyle"
@
click=
"see(scope.row)"
>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"兑换"
placement=
"top"
v-if=
"scope.row.State==1"
>
<img
src=
"../../assets/img/userman/duihuan.png"
alt=
""
class=
"imgstyle"
@
click=
"grant(scope.row,1)"
v-if=
"scope.row.State==1"
>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"失效"
placement=
"top"
v-if=
"scope.row.State==1"
>
<img
src=
"../../assets/img/userman/nopass.png"
alt=
""
class=
"imgstyle"
@
click=
"grant(scope.row,2)"
v-if=
"scope.row.State==1"
>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"查看中奖订单"
placement=
"top"
>
<img
src=
"../../assets/img/userman/detail.png"
alt=
""
class=
"imgstyle"
@
click=
"see(scope.row)"
>
</el-tooltip>
</
template
>
</el-table-column>
</el-table>
...
...
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