Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hujun
tl_estate
Commits
f5cb755b
Commit
f5cb755b
authored
May 21, 2018
by
hujun
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'test-v1.9' of
https://gitee.com/zwyjjc/tl_estate
into test-v1.9
parents
a079fd68
15d5a21e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
stateMent.js
public/resource/js/stateMent.js
+22
-0
No files found.
public/resource/js/stateMent.js
View file @
f5cb755b
...
...
@@ -26,6 +26,10 @@ define (['doT', 'text!temp/statement_template_tpl.html', 'css!style/home.css','c
$
(
"#search"
).
click
(
function
()
{
business
.
getList
(
1
);
});
$
(
"#export"
).
click
(
function
()
{
//导出列表
business
.
exportList
();
});
$
(
"#reset"
).
click
(
function
()
{
//重置
document
.
getElementById
(
"form_search"
).
reset
();
...
...
@@ -329,6 +333,23 @@ define (['doT', 'text!temp/statement_template_tpl.html', 'css!style/home.css','c
}
});
},
exportList
:
function
(
pageNo
)
{
business
.
pageNo
=
pageNo
;
var
create_time
=
$
(
'#create_time'
)
.
val
();
var
end_time
=
$
(
'#end_time'
)
.
val
();
var
internal_address
=
$
(
'#internal_address'
)
.
val
();
var
agent
=
$
(
'#user_name'
)
.
val
();
var
user_phone
=
$
(
'#user_phone'
)
.
val
();
var
house_number
=
$
(
'#internal_num'
)
.
val
();
window
.
open
(
'/index/exportExcel?create_time='
+
create_time
+
'&end_time='
+
end_time
+
'&internal_address='
+
internal_address
+
'&name='
+
agent
+
'&phone='
+
user_phone
+
'&house_number='
+
house_number
);
},
};
return
business
;
});
\ No newline at end of file
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