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
53b5851b
Commit
53b5851b
authored
Jun 12, 2019
by
agping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
时间轴 成交报告
parent
815f4672
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
81 additions
and
15 deletions
+81
-15
bargaininfo_detail_static_pc.html
...n/app_broker/view/index/bargaininfo_detail_static_pc.html
+6
-2
daily_details.html
application/index/view/finance/daily_details.html
+2
-2
officeEdit.html
application/index/view/office_room/officeEdit.html
+1
-1
bargaininfo_detail_static_pc.js
public/app/js/bargaininfo_detail_static_pc.js
+57
-5
timeline_pc.js
public/app/js/timeline_pc.js
+11
-3
financial_manager_daily_list.js
public/resource/js/financial_manager_daily_list.js
+4
-2
financial_manager_daily_list_template_tpl.html
...e/template/financial_manager_daily_list_template_tpl.html
+0
-0
No files found.
application/app_broker/view/index/bargaininfo_detail_static_pc.html
View file @
53b5851b
...
...
@@ -21,10 +21,14 @@
<section
v-show=
"mainInit == 0"
>
<div
class=
"sec1-area1 oh"
>
<ul>
<li>
<div>
商铺
类型:
</div>
<li
v-if=
'is_office != 2'
>
<div>
房源
类型:
</div>
<div>
{{detailData.shop_type=='1'?'街铺':'商场'}}
</div>
</li>
<li
v-if=
'is_office == 2'
>
<div>
房源类型:
</div>
<div>
{{detailData.type}}
</div>
</li>
<li>
<div>
商铺地址:
</div>
<div>
{{detailData.internal_address}}
<button
v-if=
"otherBtn!='no'"
class=
"btn-pc btn-info-pc btn-show-shop-detail"
@
click
.
stop
.
prevent=
"showShopDetail"
>
商铺
</button></div>
...
...
application/index/view/finance/daily_details.html
View file @
53b5851b
...
...
@@ -1081,7 +1081,7 @@
<div
class=
"col-xs-3"
>
<div
class=
"form-group"
>
<strong><span>
成交报告ID:
</span></strong>
<span
id=
"chengjiaobaogaoId"
>
45122
</span>
<span
id=
"chengjiaobaogaoId"
></span>
</div>
</div>
<div
class=
"col-xs-3"
>
...
...
@@ -1101,7 +1101,7 @@
<div
class=
"col-xs-6"
>
<div
class=
"form-group"
>
<strong><span
class=
"col-xs-3 ld-Marheight"
>
房源地址:
</span></strong>
<span
id=
"address"
class=
"col-xs-6 ld-Marheight"
>
上海市南京东路123号
</span>
<span
id=
"address"
class=
"col-xs-6 ld-Marheight"
></span>
</div>
</div>
</div>
...
...
application/index/view/office_room/officeEdit.html
View file @
53b5851b
...
...
@@ -202,7 +202,7 @@
</div>
<div
class=
"col-xs-4 p-t-10"
>
<label
class=
""
>
房号:
</label>
<input
type=
"
number
"
class=
"form-control input-100-width"
id=
"room_number"
placeholder=
"请输入"
data-alert=
"请输入房号!"
>
<input
type=
"
text
"
class=
"form-control input-100-width"
id=
"room_number"
placeholder=
"请输入"
data-alert=
"请输入房号!"
>
</div>
<div
class=
"col-xs-4 p-t-10"
>
...
...
public/app/js/bargaininfo_detail_static_pc.js
View file @
53b5851b
...
...
@@ -3,6 +3,9 @@ require(['vue', 'css!style/bargaininfo_detail_static_pc.css', 'jquery0325', 'com
var
user_info_obj
=
JSON
.
parse
(
decodeURIComponent
(
localStorage
.
getItem
(
'pcUserInfo'
)));
//读取缓存
var
order_id
=
getUrlParam
(
'orderid'
);
//获取订单id
var
other_btn
=
getUrlParam
(
'otherbtn'
);
//是否显示其他按钮,如商铺详情等
var
isOffice
=
getUrlParam
(
'type'
);
//获取办公楼 商铺
var
isOfficeUrl
=
''
;
//获取办公楼 商铺接口
console
.
log
(
other_btn
);
var
_doc
=
$
(
document
);
console
.
log
(
user_info_obj
);
...
...
@@ -15,7 +18,8 @@ require(['vue', 'css!style/bargaininfo_detail_static_pc.css', 'jquery0325', 'com
otherBtn
:
other_btn
,
detailData
:
{},
fenyongData
:
[],
shuifeiData
:
[]
shuifeiData
:
[],
is_office
:
isOffice
},
created
:
function
()
{
var
_thisV
=
this
;
...
...
@@ -47,11 +51,18 @@ require(['vue', 'css!style/bargaininfo_detail_static_pc.css', 'jquery0325', 'com
};
},
getFenyong
()
{
//获取分佣提成
let
_thisV
=
this
;
//获取分佣提成
if
(
isOffice
==
2
){
isOfficeUrl
=
'/office_index/commissionList'
;
_thisV
.
otherBtn
=
'no'
;
}
else
{
isOfficeUrl
=
'/index/commissionList'
;
}
$
.
ajax
({
'type'
:
'GET'
,
'url'
:
'/index/commissionList'
,
'url'
:
isOfficeUrl
,
data
:
{
'id'
:
order_id
},
...
...
@@ -103,9 +114,17 @@ require(['vue', 'css!style/bargaininfo_detail_static_pc.css', 'jquery0325', 'com
getShuifei
()
{
//获取开票税费
let
_thisV
=
this
;
if
(
isOffice
==
2
){
isOfficeUrl
=
'/office_index/getTallAge'
;
_thisV
.
otherBtn
=
'no'
;
}
else
{
isOfficeUrl
=
'/index/getTallAge'
;
}
$
.
ajax
({
'type'
:
'GET'
,
'url'
:
'/index/getTallAge'
,
'url'
:
isOfficeUrl
,
data
:
{
'bargain_id'
:
order_id
},
...
...
@@ -124,9 +143,17 @@ require(['vue', 'css!style/bargaininfo_detail_static_pc.css', 'jquery0325', 'com
getDeatil
()
{
//获取成交信息
let
_thisV
=
this
;
if
(
isOffice
==
2
){
isOfficeUrl
=
'/office_index/bargainInfo'
;
_thisV
.
otherBtn
=
'no'
;
}
else
{
isOfficeUrl
=
'/index/bargainInfo'
;
}
$
.
ajax
({
'type'
:
'GET'
,
'url'
:
'/index/bargainInfo'
,
'url'
:
isOfficeUrl
,
data
:
{
'id'
:
order_id
},
...
...
@@ -163,6 +190,31 @@ require(['vue', 'css!style/bargaininfo_detail_static_pc.css', 'jquery0325', 'com
break
;
}
},
dealfangyuanType
(
n
)
{
switch
(
String
(
n
))
{
case
'1'
:
return
'写字楼'
;
break
;
case
'2'
:
return
'商住两用'
;
break
;
case
'3'
:
return
'园区'
;
break
;
case
'4'
:
return
'洋房'
;
break
;
case
'5'
:
return
'联合办公'
;
break
;
case
'6'
:
return
'厂房'
;
break
;
default
:
return
''
;
break
;
}
},
getInfoType
(
r
)
{
switch
(
Number
(
r
))
{
case
1
:
...
...
public/app/js/timeline_pc.js
View file @
53b5851b
'use strict'
;
require
([
'vue'
,
'css!style/timeline_pc.css'
,
'jquery0325'
,
'common'
],
function
(
Vue
,
VConsole
){
var
order_id
=
getUrlParam
(
'order_id'
);
var
isOffice
=
getUrlParam
(
'type'
);
var
urlOffice
=
''
;
var
user_info_obj
=
JSON
.
parse
(
decodeURIComponent
(
localStorage
.
getItem
(
'pcUserInfo'
)));
//读取缓存
var
vm
=
new
Vue
({
el
:
'#app'
,
data
:
{
...
...
@@ -9,12 +12,17 @@ require(['vue', 'css!style/timeline_pc.css', 'jquery0325', 'common'],function(Vu
created
:
function
()
{
var
_this
=
this
;
document
.
body
.
style
.
display
=
'block'
;
if
(
isOffice
==
2
){
urlOffice
=
"/office/selectReportAll"
;
}
else
{
urlOffice
=
"/index/selectReportAll"
;
}
$
.
ajax
({
type
:
'POST'
,
// url: ServerHostTempC + '/index/selectReportAll',
url
:
'/index/selectReportAll'
,
url
:
urlOffice
,
data
:
{
'order_id'
:
order_id
'order_id'
:
order_id
,
'AuthToken'
:
user_info_obj
.
AuthToken
,
},
timeout
:
30000
,
dataType
:
'json'
,
...
...
public/resource/js/financial_manager_daily_list.js
View file @
53b5851b
...
...
@@ -528,14 +528,16 @@ define(['doT','html2canvas','text!temp/financial_manager_daily_list_template_tpl
//点击成交报告ID,获取报告详情
_doc
.
on
(
'click'
,
'.details-btn-liu'
,
function
()
{
var
_id
=
$
(
this
).
attr
(
"data-id"
);
$
(
'.iframe-bargaininfo-static'
).
attr
(
'src'
,
'/app_broker/bargaininfo_detail_static_pc?orderid='
+
_id
).
load
;
var
_type
=
$
(
this
).
attr
(
"data-typeC"
);
$
(
'.iframe-bargaininfo-static'
).
attr
(
'src'
,
'/app_broker/bargaininfo_detail_static_pc?orderid='
+
_id
+
'&type='
+
_type
).
load
;
});
//时间轴点击事件
_doc
.
on
(
'click'
,
'a[href="#modal-time-liu"]'
,
function
(
e
){
e
.
preventDefault
();
e
.
stopPropagation
();
var
_id
=
$
(
this
).
attr
(
"data-id"
);
$
(
'.iframe-time-line'
).
attr
(
'src'
,
'/app_broker/timeline_pc?order_id='
+
_id
);
var
_type
=
$
(
this
).
attr
(
"data-typeC"
);
$
(
'.iframe-time-line'
).
attr
(
'src'
,
'/app_broker/timeline_pc?order_id='
+
_id
+
'&type='
+
_type
);
});
//获取调整详情
$
(
document
).
on
(
'click'
,
'.add-pic-liu'
,
function
(
e
){
...
...
public/resource/template/financial_manager_daily_list_template_tpl.html
View file @
53b5851b
This diff is collapsed.
Click to expand it.
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