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
d141cf95
Commit
d141cf95
authored
Nov 20, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
cce8f7fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
24 deletions
+18
-24
salesStatistics.vue
src/components/statistics/salesStatistics.vue
+18
-24
No files found.
src/components/statistics/salesStatistics.vue
View file @
d141cf95
...
...
@@ -10,11 +10,13 @@
<div
style=
"display: flex;flex-direction: row;align-items: center"
>
<el-select
class=
"w100"
@
change=
"querychange"
style=
"margin-right: 10px;"
v-model=
"msg.PlatformType"
size=
"small"
placeholder=
"请选择"
>
<el-option
label=
"全部平台"
:value=
"0"
></el-option>
<el-option
v-for=
"(item,index) in options"
:key=
"index"
:label=
"item.Name"
:value=
"item.Id"
>
</el-option>
</el-select>
<el-select
class=
"w100"
@
change=
"querychange"
style=
"margin-right: 10px;"
size=
"small"
v-model=
"msg.OrderType"
placeholder=
"请选择"
>
<el-option
label=
"全部订单"
:value=
"0"
></el-option>
<el-option
v-for=
"(item,index) in options2"
:key=
"index"
:label=
"item.Name"
:value=
"item.Id"
>
</el-option>
</el-select>
...
...
@@ -200,28 +202,28 @@
},
Listloading
:
false
,
tabsList
:
[{
'Name'
:
'全部'
,
"ID"
:
'0'
Name
:
"全部"
,
ID
:
"0"
},
{
'Name'
:
'未完成订单'
,
"ID"
:
'1'
Name
:
"未完成订单"
,
ID
:
"1"
},
{
'Name'
:
'已完成订单'
,
"ID"
:
'2'
Name
:
"已完成订单"
,
ID
:
"2"
},
{
'Name'
:
'已取消订单'
,
"ID"
:
'3'
Name
:
"已取消订单"
,
ID
:
"3"
},
{
'Name'
:
'售后中订单'
,
"ID"
:
'4'
Name
:
"售后中订单"
,
ID
:
"4"
},
{
'Name'
:
'已完成售后订单'
,
"ID"
:
'5'
Name
:
"已完成售后订单"
,
ID
:
"5"
},
],
options
:
[],
...
...
@@ -249,19 +251,13 @@
}
},
created
()
{
this
.
getplat
();
this
.
getOrderTypeEnumEnumList
()
this
.
querychange
()
},
methods
:
{
getplat
()
{
this
.
apipost
(
"/api/User/GetMemberUserSourceEnumList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
options
=
res
.
data
.
data
;
this
.
options
.
unshift
({
Name
:
"全部平台"
,
Id
:
0
})
}
})
},
...
...
@@ -269,10 +265,6 @@
this
.
apipost
(
"/api/Order/GetOrderTypeEnumEnumList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
options2
=
res
.
data
.
data
;
this
.
options2
.
unshift
({
Name
:
"全部订单"
,
Id
:
0
})
}
})
},
...
...
@@ -409,7 +401,9 @@
},
},
mounted
()
{
this
.
getplat
();
this
.
getOrderTypeEnumEnumList
()
this
.
querychange
()
}
}
...
...
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