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
dfa30ae5
Commit
dfa30ae5
authored
Aug 27, 2018
by
agping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
业绩排行修改
parent
7d80476a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
67 additions
and
12 deletions
+67
-12
finance_update_log.html
application/index/view/finance/finance_update_log.html
+8
-3
realtimePerformance.html
application/index/view/realtime/realtimePerformance.html
+1
-1
realtimePerformance.js
public/resource/js/realtimePerformance.js
+52
-0
real_time_performance_template_tpl.html
...resource/template/real_time_performance_template_tpl.html
+6
-8
No files found.
application/index/view/finance/finance_update_log.html
View file @
dfa30ae5
...
...
@@ -61,6 +61,9 @@
width
:
9%
!important
;
}
.clear
{
clear
:
both
;
}
</style>
<div
id=
"page-content-wrapper"
>
<div
class=
"container"
>
...
...
@@ -90,10 +93,12 @@
<input
class=
"form-control btn2 ld-Marheight btn2-2"
data-rule-phoneus=
"false"
data-rule-required=
"false"
id=
"user_name"
placeholder=
"修改人姓名"
type=
"text"
value=
""
>
<input
class=
"form-control btn2 ld-Marheight"
data-rule-phoneus=
"false"
data-rule-required=
"false"
id=
"user_phone"
placeholder=
"修改人手机号"
type=
"text"
value=
""
>
<div
class=
"clear"
>
</div>
<input
class=
"form-control btn2 ld-Marheight"
data-rule-phoneus=
"false"
data-rule-required=
"false"
id=
"bargain_id"
placeholder=
"成交报告id"
type=
"text"
value=
""
>
<br/>
<span
class=
"btn btn-info btn3"
id=
"search"
>
搜索
</span>
<span
class=
"btn btn-info btn3"
id=
"reset"
>
重置
</span>
<span
class=
"btn btn-info btn3 ld-Marheight"
id=
"search"
>
搜索
</span>
<span
class=
"btn btn-info btn3 ld-Marheight"
id=
"reset"
>
重置
</span>
<!--<span class="btn btn-info btn3" id="export">导出excel</span>-->
</form>
</td>
...
...
application/index/view/realtime/realtimePerformance.html
View file @
dfa30ae5
...
...
@@ -201,7 +201,7 @@
×
</button>
<h4
class=
"modal-title"
>
<a
href=
"#"
><span
id=
"performance_ranking_agent_two"
>
成交单数时间:
</span>
<span
id=
"
rank_start_day_agent_two"
></span>
至
<span
id=
"rank_end_day_agent_two
"
></span></a>
<a
href=
"#"
><span
id=
"performance_ranking_agent_two"
>
成交单数时间:
</span>
<span
id=
"
deal_details_time_start"
></span>
至
<span
id=
"deal_details_time_end
"
></span></a>
</h4>
</div>
<div
class=
"modal-body"
>
...
...
public/resource/js/realtimePerformance.js
View file @
dfa30ae5
...
...
@@ -147,6 +147,13 @@ define(['doT', 'text!temp/real_time_performance_template_tpl.html', 'text!temp/r
e
.
stopPropagation
();
realtime
.
getPerformanceDetails
(
1
);
});
//部门-成交单数-弹出框
_doc
.
on
(
'click'
,
'.deal-number-details'
,
function
(
e
)
{
e
.
preventDefault
();
e
.
stopPropagation
();
realtime
.
district_store_agent_id
=
$
(
this
).
attr
(
"data-id"
);
realtime
.
getDealDetails
(
1
);
});
//部门-收款数-弹出框
_doc
.
on
(
'click'
,
'.collection-number-details'
,
function
(
e
)
{
e
.
preventDefault
();
...
...
@@ -514,6 +521,51 @@ define(['doT', 'text!temp/real_time_performance_template_tpl.html', 'text!temp/r
});
},
//部门-收款数-弹出框-详情
getDealDetails
:
function
(
pageNo
){
var
params
=
{
'id'
:
realtime
.
district_store_agent_id
,
'type'
:
realtime
.
switchType
,
'start_time'
:
realtime
.
time_search_start
,
'end_time'
:
realtime
.
time_search_end
,
'AuthToken'
:
user_info_obj
.
AuthToken
};
$
.
ajax
({
type
:
'GET'
,
url
:
'/broker/bargainSumPcInfo'
,
data
:
params
,
timeout
:
30000
,
dataType
:
'json'
,
beforeSend
:
function
()
{},
success
:
function
(
data
)
{
if
(
typeof
data
===
'object'
)
{
if
(
data
.
code
==
200
)
{
var
doTtmpl
=
doT
.
template
(
document
.
getElementById
(
'deal_number_details_tpl'
).
innerHTML
);
$
(
"#deal_number_details_list"
).
html
(
doTtmpl
(
data
.
data
));
//获取统计时间
$
(
'#deal_details_time_start'
).
html
(
realtime
.
time_search_start
);
$
(
'#deal_details_time_end'
).
html
(
realtime
.
time_search_end
);
}
else
{
alert
(
data
[
'msg'
]);
};
}
else
{
alert
(
'数据错误'
);
};
},
error
:
function
()
{
alert
(
'error'
);
},
complete
:
function
(
xhr
,
textStatus
)
{
if
(
textStatus
===
'timeout'
)
{
alert
(
'请求超时'
);
};
}
});
},
//部门-收款数-弹出框-详情
getcollectionNumberDetails
:
function
(
pageNo
){
var
params
=
{
...
...
public/resource/template/real_time_performance_template_tpl.html
View file @
dfa30ae5
...
...
@@ -20,7 +20,7 @@
<
a
class
=
"store-ranking"
href
=
"#modal-store"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it[item]['district_id'] %]"
>
[
%=
it
[
item
][
'district_name'
]
+
'-'
+
it
[
item
][
'name'
]
%
]
<
/a
>
<
/td
>
<
td
class
=
"text-center"
><
a
class
=
"performance-number-details performance-district-click"
href
=
"#modal-performance-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it[item]['district_id'] %]"
>
[
%=
it
[
item
][
'performance_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"deal-number-details performance-district-click"
href
=
"#modal-deal-number-details"
data
-
toggle
=
"modal"
>
[
%=
it
[
item
][
'bargain_sum_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"deal-number-details performance-district-click"
href
=
"#modal-deal-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it[item]['district_id'] %]"
>
[
%=
it
[
item
][
'bargain_sum_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"collection-number-details performance-district-click"
href
=
"#modal-collection-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it[item]['district_id'] %]"
>
[
%=
it
[
item
][
'paylog_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"approach-number-details performance-district-click"
href
=
"#modal-approach-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it[item]['district_id'] %]"
>
[
%=
it
[
item
][
'march_in_num_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"reported-number-details performance-district-click"
href
=
"#modal-reported-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it[item]['district_id'] %]"
>
[
%=
it
[
item
][
'look_at_num_total'
]
%
]
<
/a></
td
>
...
...
@@ -61,7 +61,7 @@
<
a
class
=
"agent-ranking"
href
=
"#modal-agent"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it[item]['store_id'] %]"
>
[
%=
it
[
item
][
'district_name'
]
+
'-'
+
it
[
item
][
'store_name'
]
+
'-'
+
it
[
item
][
'name'
]
%
]
<
/a
>
<
/td
>
<
td
class
=
"text-center"
><
a
class
=
"performance-number-details performance-store-click"
href
=
"#modal-performance-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it[item]['store_id'] %]"
>
[
%=
it
[
item
][
'performance_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"deal-number-details performance-store-click"
href
=
"#modal-deal-number-details"
data
-
toggle
=
"modal"
>
[
%=
it
[
item
][
'bargain_sum_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"deal-number-details performance-store-click"
href
=
"#modal-deal-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it[item]['store_id'] %]"
>
[
%=
it
[
item
][
'bargain_sum_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"collection-number-details performance-store-click"
href
=
"#modal-collection-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it[item]['store_id'] %]"
>
[
%=
it
[
item
][
'paylog_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"approach-number-details performance-store-click"
href
=
"#modal-approach-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it[item]['store_id'] %]"
>
[
%=
it
[
item
][
'march_in_num_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"reported-number-details performance-store-click"
href
=
"#modal-reported-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it[item]['store_id'] %]"
>
[
%=
it
[
item
][
'look_at_num_total'
]
%
]
<
/a></
td
>
...
...
@@ -98,7 +98,7 @@
<
td
class
=
"text-center"
>
[
%=
it
[
item
][
'index_'
]
%
]
<
/td
>
<
td
class
=
"text-center"
>
[
%=
it
[
item
][
'district_name'
]
+
'-'
+
it
[
item
][
'store_name'
]
+
'-'
+
it
[
item
][
'name'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"performance-number-details performance-person-click"
href
=
"#modal-performance-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it[item]['agent_id'] %]"
>
[
%=
it
[
item
][
'performance_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"deal-number-details performance-person-click"
href
=
"#modal-deal-number-details"
data
-
toggle
=
"modal"
>
[
%=
it
[
item
][
'bargain_sum_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"deal-number-details performance-person-click"
href
=
"#modal-deal-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it[item]['agent_id'] %]
>[%= it[item]['bargain_sum_total'] %]</a></td>
<td class="
text
-
center
"><a class="
collection
-
number
-
details
performance
-
person
-
click
" href="
#
modal
-
collection
-
number
-
details
" data-toggle="
modal
" data-id="
[
%=
it
[
item
][
'agent_id'
]
%
]
">[%= it[item]['paylog_total'] %]</a></td>
<td class="
text
-
center
"><a class="
approach
-
number
-
details
performance
-
person
-
click
" href="
#
modal
-
approach
-
number
-
details
" data-toggle="
modal
" data-id="
[
%=
it
[
item
][
'agent_id'
]
%
]
">[%= it[item]['march_in_num_total'] %]</a></td>
<td class="
text
-
center
"><a class="
reported
-
number
-
details
performance
-
person
-
click
" href="
#
modal
-
reported
-
number
-
details
" data-toggle="
modal
" data-id="
[
%=
it
[
item
][
'agent_id'
]
%
]
">[%= it[item]['look_at_num_total'] %]</a></td>
...
...
@@ -138,7 +138,7 @@
<
a
class
=
"store-ranking-two"
href
=
"#modal-agent-two"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['store_id'] %]"
>
[
%=
it
[
'list'
][
item
][
'district_name'
]
+
'-'
+
it
[
"list"
][
item
][
'store_name'
]
+
'-'
+
it
[
"list"
][
item
][
'name'
]
%
]
<
/a
>
<
/td
>
<
td
class
=
"text-center"
><
a
class
=
"performance-number-details performance-store-click"
href
=
"#modal-performance-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['store_id'] %]"
>
[
%=
it
[
"list"
][
item
][
'performance_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"deal-number-details performance-store-click"
href
=
"#modal-deal-number-details"
data
-
toggle
=
"modal"
>
[
%=
it
[
'list'
][
item
][
'bargain_sum_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"deal-number-details performance-store-click"
href
=
"#modal-deal-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['store_id'] %]"
>
[
%=
it
[
'list'
][
item
][
'bargain_sum_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"collection-number-details performance-store-click"
href
=
"#modal-collection-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['store_id'] %]"
>
[
%=
it
[
"list"
][
item
][
'paylog_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"approach-number-details performance-store-click"
href
=
"#modal-approach-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['store_id'] %]"
>
[
%=
it
[
"list"
][
item
][
'march_in_num_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"reported-number-details performance-store-click"
href
=
"#modal-reported-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['store_id'] %]"
>
[
%=
it
[
"list"
][
item
][
'look_at_num_total'
]
%
]
<
/a></
td
>
...
...
@@ -164,7 +164,6 @@
<
th
class
=
"text-center"
>
经纪人
<
/th
>
<
th
class
=
"text-center"
>
业绩(元)
<
/th
>
<
th
class
=
"text-center"
>
成交单数
<
/th
>
<!--<
th
class
=
"text-center"
>
成交报告(其他)
<
/th>--
>
<
th
class
=
"text-center"
>
收款数
<
/th
>
<
th
class
=
"text-center"
>
进场数
<
/th
>
<
th
class
=
"text-center"
>
报备数
<
/th
>
...
...
@@ -176,7 +175,7 @@
<
td
class
=
"text-center"
>
[
%=
it
[
"list"
][
item
][
'index_'
]
%
]
<
/td
>
<
td
class
=
"text-center"
>
[
%=
it
[
"list"
][
item
][
'district_name'
]
+
'-'
+
it
[
"list"
][
item
][
'store_name'
]
+
'-'
+
it
[
"list"
][
item
][
'name'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"performance-number-details performance-person-click"
href
=
"#modal-performance-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['agent_id'] %]"
>
[
%=
it
[
'list'
][
item
][
'performance_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"deal-number-details performance-person-click"
href
=
"#modal-deal-number-details"
data
-
toggle
=
"modal"
>
[
%=
it
[
'list'
][
item
][
'bargain_sum_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"deal-number-details performance-person-click"
href
=
"#modal-deal-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['agent_id'] %]"
>
[
%=
it
[
'list'
][
item
][
'bargain_sum_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"collection-number-details performance-person-click"
href
=
"#modal-collection-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['agent_id'] %]"
>
[
%=
it
[
'list'
][
item
][
'paylog_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"approach-number-details performance-person-click"
href
=
"#modal-approach-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['agent_id'] %]"
>
[
%=
it
[
'list'
][
item
][
'march_in_num_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"reported-number-details performance-person-click"
href
=
"#modal-reported-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['agent_id'] %]"
>
[
%=
it
[
'list'
][
item
][
'look_at_num_total'
]
%
]
<
/a></
td
>
...
...
@@ -211,7 +210,7 @@
<
td
class
=
"text-center"
>
[
%=
it
[
"list"
][
item
][
'index_'
]
%
]
<
/td
>
<
td
class
=
"text-center"
>
[
%=
it
[
"list"
][
item
][
'district_name'
]
+
'-'
+
it
[
"list"
][
item
][
'store_name'
]
+
'-'
+
it
[
"list"
][
item
][
'name'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"performance-number-details performance-person-click"
href
=
"#modal-performance-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['agent_id'] %]"
>
[
%=
it
[
'list'
][
item
][
'performance_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"deal-number-details performance-person-click"
href
=
"#modal-deal-number-details"
data
-
toggle
=
"modal"
>
[
%=
it
[
'list'
][
item
][
'bargain_sum_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"deal-number-details performance-person-click"
href
=
"#modal-deal-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['agent_id'] %]"
>
[
%=
it
[
'list'
][
item
][
'bargain_sum_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"collection-number-details performance-person-click"
href
=
"#modal-collection-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['agent_id'] %]"
>
[
%=
it
[
'list'
][
item
][
'paylog_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"approach-number-details performance-person-click"
href
=
"#modal-approach-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['agent_id'] %]"
>
[
%=
it
[
'list'
][
item
][
'march_in_num_total'
]
%
]
<
/a></
td
>
<
td
class
=
"text-center"
><
a
class
=
"reported-number-details performance-person-click"
href
=
"#modal-reported-number-details"
data
-
toggle
=
"modal"
data
-
id
=
"[%= it['list'][item]['agent_id'] %]"
>
[
%=
it
[
'list'
][
item
][
'look_at_num_total'
]
%
]
<
/a></
td
>
...
...
@@ -281,7 +280,6 @@
<
th
class
=
"text-center"
>
经纪人
<
/th
>
<
th
class
=
"text-center"
>
业绩(元)
<
/th
>
<
th
class
=
"text-center"
>
成交单数
<
/th
>
<!--<
th
class
=
"text-center"
>
成交报告(其他)
<
/th>--
>
<
th
class
=
"text-center"
>
收款数
<
/th
>
<
th
class
=
"text-center"
>
进场数
<
/th
>
<
th
class
=
"text-center"
>
报备数
<
/th
>
...
...
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