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
22b73c9d
Commit
22b73c9d
authored
Oct 25, 2018
by
agping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
业绩排行榜 优化
parent
85593150
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
4 deletions
+27
-4
realtimePerformance.html
application/index/view/realtime/realtimePerformance.html
+17
-0
realtimePerformance.js
public/resource/js/realtimePerformance.js
+4
-1
real_time_performance_template_tpl.html
...resource/template/real_time_performance_template_tpl.html
+6
-3
No files found.
application/index/view/realtime/realtimePerformance.html
View file @
22b73c9d
...
...
@@ -79,6 +79,18 @@
margin-right
:
30px
;
margin-top
:
10px
;
}
/*加载图标*/
#main_loading_pic
{
position
:
fixed
;
top
:
50%
;
left
:
50%
;
width
:
100px
;
height
:
100px
;
margin-left
:
-50px
;
margin-top
:
-50px
;
overflow
:
hidden
;
display
:
none
;
}
</style>
<div
id=
"page-content-wrapper"
>
...
...
@@ -577,4 +589,8 @@
</div>
<!-- /.modal -->
</div>
</div>
<!--加载图标-->
<div
id=
"main_loading_pic"
>
<img
src=
"/resource/image/jz2.gif"
>
</div>
\ No newline at end of file
public/resource/js/realtimePerformance.js
View file @
22b73c9d
...
...
@@ -431,7 +431,9 @@ define(['doT', 'text!temp/real_time_performance_template_tpl.html', 'text!temp/r
data
:
params
,
timeout
:
30000
,
dataType
:
'json'
,
beforeSend
:
function
()
{},
beforeSend
:
function
()
{
$
(
'#main_loading_pic'
).
show
();
},
success
:
function
(
data
)
{
if
(
typeof
data
===
'object'
)
{
if
(
data
.
code
==
200
)
{
...
...
@@ -465,6 +467,7 @@ define(['doT', 'text!temp/real_time_performance_template_tpl.html', 'text!temp/r
alert
(
'error'
);
},
complete
:
function
(
xhr
,
textStatus
)
{
$
(
'#main_loading_pic'
).
hide
();
if
(
textStatus
===
'timeout'
)
{
alert
(
'请求超时'
);
};
...
...
public/resource/template/real_time_performance_template_tpl.html
View file @
22b73c9d
...
...
@@ -478,10 +478,13 @@
<
td
class
=
"text-left"
>
[
%=
it
[
item
][
'industry_type'
]
%
]
<
/td
>
<
td
class
=
"text-center"
>
[
%=
it
[
item
][
'last_phone_follow_time'
]
%
]
<
/td
>
<
td
>
[
%
if
(
it
[
item
][
"status"
]
==
0
)
{
%
]
已租
[
%
if
(
it
[
item
][
"status"
]
==
1
)
{
%
]
上架
[
%
}
else
if
(
it
[
item
][
"status"
]
==
2
){
%
]
下架
[
%
}
else
{
%
]
待租
回收
[
%
}
%
]
<
/td
>
<
/tr
>
...
...
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