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
03e8958a
Commit
03e8958a
authored
Aug 07, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Plain Diff
页面修改
parents
7c6131ce
4f2f3187
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
406 additions
and
33 deletions
+406
-33
RecommendRebate.vue
src/components/UserMan/RecommendRebate.vue
+2
-2
baseSet.vue
src/components/UserMan/baseSet.vue
+6
-1
usersCoupon.vue
src/components/UserMan/usersCoupon.vue
+8
-4
usersList.vue
src/components/UserMan/usersList.vue
+1
-1
RecommendBill.vue
src/components/orderMan/RecommendBill.vue
+1
-1
orderList.vue
src/components/orderMan/orderList.vue
+5
-6
pintuanSet.vue
src/components/pintuan/pintuanSet.vue
+383
-18
No files found.
src/components/UserMan/RecommendRebate.vue
View file @
03e8958a
...
...
@@ -154,7 +154,7 @@
</div>
<div
class=
"goods-item"
style=
"width: 10%;"
>
<div
v-for=
"(list,index2) in item.DetailList"
:key=
"index2"
class=
"goods"
flex=
"main:center cross:center"
>
<div
v-for=
"(list,index2) in item.DetailList"
:key=
"index2"
class=
"goods"
flex=
"main:center cross:center"
v-if=
"list.OrderIntroduction.Commission!=null && list.OrderIntroduction.Commission!='' && list.OrderIntroduction.Commission!=0 "
>
<div
v-if=
"list.OrderIntroduction.CommissionState==1"
>
待结算
</div>
<div
v-if=
"list.OrderIntroduction.CommissionState==2"
>
已结算
</div>
...
...
@@ -163,7 +163,7 @@
</div>
<div
class=
"goods-item"
style=
"width: 20%;"
>
<div
v-for=
"(list,index2) in item.DetailList"
:key=
"index2"
class=
"goods"
>
<div
v-for=
"(list,index2) in item.DetailList"
:key=
"index2"
class=
"goods"
v-if=
"list.OrderIntroduction.Commission!=null && list.OrderIntroduction.Commission!='' && list.OrderIntroduction.Commission!=0 "
>
...
...
src/components/UserMan/baseSet.vue
View file @
03e8958a
...
...
@@ -44,6 +44,10 @@
<el-radio
v-model=
"addMsg.IsEnableFXGrade"
:label=
"1"
>
开启
</el-radio>
<el-radio
v-model=
"addMsg.IsEnableFXGrade"
:label=
"2"
>
不开启
</el-radio>
</el-form-item>
<el-form-item
label=
"无上级是否开启返佣"
>
<el-radio
v-model=
"addMsg.IsEnableNoSuperiorFY"
:label=
"1"
>
开启
</el-radio>
<el-radio
v-model=
"addMsg.IsEnableNoSuperiorFY"
:label=
"2"
>
不开启
</el-radio>
</el-form-item>
</div>
</el-card>
<el-card
class=
"box-card"
style=
"margin-top:10px"
>
...
...
@@ -247,7 +251,8 @@
IndexImage
:
''
,
IndexImagePath
:
''
,
IsCommissionResidue
:
1
,
IsEnableFXGrade
:
1
//1开启 2不开启
IsEnableFXGrade
:
1
,
//1开启 2不开启
IsEnableNoSuperiorFY
:
1
,
},
dialogVisible
:
false
,
...
...
src/components/UserMan/usersCoupon.vue
View file @
03e8958a
...
...
@@ -87,7 +87,8 @@
msg
:
{
pageIndex
:
1
,
pageSize
:
15
,
UserId
:
-
1
,
//0-未使用,1-已使用,2-已过期,-1全部
UseState
:
-
1
,
//0-未使用,1-已使用,2-已过期,-1全部
UserId
:
0
,
StartDate
:
''
,
EndDate
:
''
,
},
...
...
@@ -103,8 +104,11 @@
}
},
created
()
{
this
.
getList
();
if
(
this
.
$route
.
query
.
UserId
){
this
.
msg
.
UserId
=
this
.
$route
.
query
.
UserId
;
}
this
.
getList
();
},
mounted
()
{
},
...
...
@@ -132,7 +136,7 @@
this
.
getList
();
},
handleClick
(
val
){
this
.
msg
.
Use
rId
=
val
.
$attrs
.
dataId
;
this
.
msg
.
Use
State
=
val
.
$attrs
.
dataId
;
this
.
getList
()
},
delete_b
(
row
){
...
...
src/components/UserMan/usersList.vue
View file @
03e8958a
...
...
@@ -71,7 +71,7 @@
</el-table-column>
<el-table-column
prop=
"name"
label=
"优惠券数量"
>
<
template
slot-scope=
"scope"
>
<span
@
click=
"CommonJump('usersCoupon')"
class=
"blue point"
>
{{
scope
.
row
.
CouponsNum
}}
</span>
<span
@
click=
"CommonJump('usersCoupon'
,
{UserId:scope.row.Id}
)" class="blue point">
{{
scope
.
row
.
CouponsNum
}}
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"name"
label=
"卡券数量"
>
...
...
src/components/orderMan/RecommendBill.vue
View file @
03e8958a
...
...
@@ -134,7 +134,7 @@
</el-table-column>
<el-table-column
prop=
"Number"
label=
"数量"
width=
"60"
></el-table-column>
<el-table-column
prop=
"Final_Price"
label=
"价格"
width=
"80"
></el-table-column>
<el-table-column
prop=
"OrderIntroduction"
label=
"返佣信息"
width=
"
13
0"
>
<el-table-column
prop=
"OrderIntroduction"
label=
"返佣信息"
width=
"
20
0"
>
<
template
slot-scope=
"scope"
>
<div>
姓名:
{{
scope
.
row
.
OrderIntroduction
.
Name
}}
</div>
<div>
昵称:
{{
scope
.
row
.
OrderIntroduction
.
UserName
}}
</div>
...
...
src/components/orderMan/orderList.vue
View file @
03e8958a
...
...
@@ -138,7 +138,7 @@
</div>
</div>
</div>
<div
style=
"margin-bottom:
24
px;"
>
<div
style=
"margin-bottom:
5
px;"
>
<span
style=
"margin-right: 10px;"
>
规格:
<el-tag
...
...
@@ -150,12 +150,11 @@
</el-tag>
</span>
</div>
<div
class=
"app-order-goods-price"
>
<span>
货号:
{{
list
.
ProductCode
}}
</span>
</div>
<div
class=
"app-order-goods-price"
v-if=
'list.FreeShippingRemarks!=null'
>
<span>
{{
list
.
FreeShippingRemarks
}}
</span>
<div
style=
" display: flex;flex-direction: row;align-items: center;"
>
<span>
货号:
{{
list
.
ProductCode
!=
null
&&
list
.
ProductCode
!=
''
?
list
.
ProductCode
:
'无'
}}
</span>
<span
style=
"margin-left:20px"
v-if=
'list.FreeShippingRemarks!=null'
>
{{
list
.
FreeShippingRemarks
}}
</span>
</div>
</div>
<div
flex=
"dir:left box:mean"
style=
"width: 300px;"
>
<div
flex=
"cross:center main:center"
style=
"display: flex;flex-direction: column;align-items: flex-start;"
>
...
...
src/components/pintuan/pintuanSet.vue
View file @
03e8958a
This diff is collapsed.
Click to expand it.
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