Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
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
罗超
confucius
Commits
96e364b5
Commit
96e364b5
authored
Jun 30, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
1e8e0589
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
2 deletions
+35
-2
orderCompleteStatistics.vue
src/pages/financial/orderCompleteStatistics.vue
+35
-2
No files found.
src/pages/financial/orderCompleteStatistics.vue
View file @
96e364b5
...
...
@@ -138,10 +138,23 @@
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"下单时间:"
>
<el-date-picker
class=
"h34"
v-model=
"datevalue"
type=
"daterange"
value-format=
"yyyy-MM-dd"
range-separator=
"至"
></el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"7"
>
<el-form-item
label=
"消费课时:"
>
<el-date-picker
class=
"h34"
v-model=
"datevalue2"
type=
"daterange"
value-format=
"yyyy-MM-dd"
range-separator=
"至"
></el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
>
<!--
<button
class=
"normalBtn "
@
click=
"getData()"
>
查询
</button>
-->
<q-btn
color=
"primary"
size=
"11px"
label=
"查询"
@
click=
"
getData(
)"
style=
"marginRight:10px"
/>
<q-btn
color=
"primary"
size=
"11px"
label=
"查询"
@
click=
"
handleCurrentChange(1
)"
style=
"marginRight:10px"
/>
<!--
<button
class=
"normalBtn "
@
click=
"exportExcel"
>
导出EXCEL
</button>
-->
<q-btn
color=
"primary"
size=
"11px"
label=
"导出EXCEL"
@
click=
"exportExcel"
/>
</el-form-item>
...
...
@@ -345,8 +358,14 @@
FinanceId
:
0
,
//财务单据id
TradeWay
:
0
,
//交易方式
AccountId
:
0
,
//账号id
AccountType
:
0
//账户类型
AccountType
:
0
,
//账户类型
StartTime
:
''
,
//下单时间
EndTime
:
''
,
XFStartTime
:
''
,
//消费课时时间
XFEndTime
:
''
,
},
datevalue
:[],
datevalue2
:[],
data
:
[],
DataList
:
[],
UpdateStaus
:
0
,
...
...
@@ -392,6 +411,20 @@
getData
(){
if
(
this
.
datevalue
&&
this
.
datevalue
.
length
>
0
)
{
this
.
msg
.
StartTime
=
this
.
datevalue
[
0
];
this
.
msg
.
EndTime
=
this
.
datevalue
[
1
];
}
else
{
this
.
msg
.
StartTime
=
''
;
this
.
msg
.
EndTime
=
''
;
}
if
(
this
.
datevalue2
&&
this
.
datevalue2
.
length
>
0
)
{
this
.
msg
.
XFStartTime
=
this
.
datevalue2
[
0
];
this
.
msg
.
XFEndTime
=
this
.
datevalue2
[
1
];
}
else
{
this
.
msg
.
XFStartTime
=
''
;
this
.
msg
.
XFEndTime
=
''
;
}
getOrderCompleteStatisticsPageList
(
this
.
msg
).
then
((
res
)
=>
{
res
.
Data
.
PageData
.
map
((
item
)
=>
{
item
.
Progress
=
item
.
Progress
+
"%"
...
...
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