Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
62bacfc3
Commit
62bacfc3
authored
Mar 07, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
82696862
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
CouponList.vue
src/components/activity/CouponList.vue
+6
-2
LuckyDraw.vue
src/components/activity/LuckyDraw.vue
+3
-0
awardList.vue
src/components/activity/awardList.vue
+1
-1
No files found.
src/components/activity/CouponList.vue
View file @
62bacfc3
...
...
@@ -82,10 +82,12 @@
<table
class=
"singeRowTable"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
>
<tr>
<th>
优惠券名
</th>
<th>
数量
</th>
<th>
优惠券数量
</th>
<th>
发放数量
</th>
<th>
剩余数量
</th>
<th>
线路名称
</th>
<th>
类型
</th>
<th>
满减/折扣
</th>
<th>
使用条件
</th>
<th>
面额
</th>
<!--
<th>
使用状态
</th>
-->
<th>
叠加使用
</th>
...
...
@@ -97,6 +99,8 @@
<tr
v-for=
"(item,index) in DataList"
v-loading=
"loading"
>
<td>
{{
item
.
couponsName
}}
</td>
<td>
{{
item
.
couponCount
}}
</td>
<td>
{{
item
.
couponReceiveCount
}}
</td>
<td>
{{
(
item
.
couponCount
-
item
.
couponReceiveCount
)
>
0
?
(
item
.
couponCount
-
item
.
couponReceiveCount
)
:
0
}}
</td>
<td>
{{
item
.
lineName
}}
</td>
<td>
{{
item
.
couponsType
===
1
?
"抵用券"
:
"折扣券"
}}
</td>
<td>
{{
item
.
useCondition
}}
</td>
...
...
src/components/activity/LuckyDraw.vue
View file @
62bacfc3
...
...
@@ -62,6 +62,9 @@
.LuckyDraw
.ql-container
{
min-height
:
100px
;
}
.LuckyDraw
.avatar-uploader-icon
{
height
:
auto
}
</
style
>
<
template
>
<div
class=
"flexOne LuckyDraw"
>
...
...
src/components/activity/awardList.vue
View file @
62bacfc3
...
...
@@ -129,7 +129,7 @@ export default {
rank
:
''
,
},
rules
:{
awardName
:
[{
required
:
true
,
message
:
"请输入
公司
"
,
trigger
:
"blur"
}],
awardName
:
[{
required
:
true
,
message
:
"请输入
奖项名称
"
,
trigger
:
"blur"
}],
awardType
:
[{
required
:
true
,
message
:
"请选择奖项类型"
,
trigger
:
"change"
}],
awardRelationId
:
[{
required
:
true
,
message
:
"请选择奖项关联"
,
trigger
:
"change"
}],
awardCount
:
[{
required
:
true
,
message
:
"请输入奖项数量"
,
trigger
:
"blur"
}],
...
...
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