Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dwsproject
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dws
dwsproject
Commits
0ad17b7f
Commit
0ad17b7f
authored
Feb 10, 2025
by
夏超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[fix] 玖姿项目导出数据
parent
0f6a80d2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
roke_product_income_expense/static/src/js/index.html
+5
-3
No files found.
roke_product_income_expense/static/src/js/index.html
View file @
0ad17b7f
...
...
@@ -191,7 +191,6 @@
},
// 列表 时间过滤
datePickerChange
(
e
)
{
console
.
log
(
e
);
if
(
!
e
)
{
this
.
datePickerValue
=
[
''
,
''
]
}
...
...
@@ -204,7 +203,7 @@
},
// 获取列表数据
getDataList
()
{
//
this.loading = true;
this
.
loading
=
true
;
let
parameter
=
{
limit
:
10
,
//每页数量 非必填
page
:
this
.
currentPageNo
,
//当前页码
...
...
@@ -230,7 +229,7 @@
});
}
this
.
loading
=
false
;
}).
catch
(
err
=>
{
}).
catch
(
err
=>
{
console
.
log
(
err
);
this
.
$message
({
type
:
"error"
,
...
...
@@ -276,6 +275,9 @@
this
.
loading
=
true
;
let
formData
=
new
FormData
();
let
_config
=
{
responseType
:
'blob'
}
if
(
!
this
.
datePickerValue
)
{
this
.
datePickerValue
=
[
''
,
''
]
}
formData
.
append
(
"start_date"
,
this
.
datePickerValue
[
0
]);
formData
.
append
(
"end_date"
,
this
.
datePickerValue
[
1
]);
formData
.
append
(
"type_str"
,
this
.
select_value
);
...
...
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