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
7acc7ec2
Commit
7acc7ec2
authored
Nov 01, 2018
by
xishifeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
681f65a7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
9 deletions
+24
-9
bargaininfo_detail_static_pc.html
...n/app_broker/view/index/bargaininfo_detail_static_pc.html
+2
-2
bargaininfo_detail_static_pc.css
public/app/css/bargaininfo_detail_static_pc.css
+8
-6
common.css
public/app/css/common.css
+6
-0
bargaininfo_detail_static_pc.js
public/app/js/bargaininfo_detail_static_pc.js
+8
-1
No files found.
application/app_broker/view/index/bargaininfo_detail_static_pc.html
View file @
7acc7ec2
...
...
@@ -27,7 +27,7 @@
</li>
<li>
<div>
商铺地址:
</div>
<div>
{{detailData.internal_address}}
</div>
<div>
{{detailData.internal_address}}
<
button
class=
"btn-pc btn-info-pc btn-show-shop-detail"
@
click
.
stop
.
prevent=
"showShopDetail"
>
商铺
</button><
/div>
</li>
<li>
<div>
业态:
</div>
...
...
@@ -61,7 +61,7 @@
</li>
<li>
<div>
客户电话:
</div>
<div>
{{hidePhone(detailData.user_phone)}}
</div>
<div>
{{hidePhone(detailData.user_phone)}}
<
button
class=
"btn-pc btn-info-pc btn-show-customer-detail"
@
click
.
stop
.
prevent=
"showCustomerDetail"
>
客户
</button><
/div>
</li>
<li>
<div>
成交日期:
</div>
...
...
public/app/css/bargaininfo_detail_static_pc.css
View file @
7acc7ec2
...
...
@@ -22,12 +22,6 @@ body{
.sec1-area1
>
ul
>
li
>
div
:nth-of-type
(
1
)
{
width
:
100px
;
}
.sec1-area1
>
ul
>
li
>
div
:nth-of-type
(
2
)
{
width
:
140px
;
}
.sec1-area1
>
ul
>
li
>
div
:nth-of-type
(
3
)
{
padding-left
:
10px
;
}
.sec1-area2
{
padding-top
:
20px
;
...
...
@@ -147,3 +141,11 @@ main>section:nth-of-type(1){
.shuifei-list-table
+
.shuifei-list-table
{
margin-top
:
40px
;
}
.btn-show-shop-detail
,
.btn-show-customer-detail
{
padding
:
2px
4px
;
border
:
0
;
margin-left
:
10px
;
cursor
:
pointer
;
}
public/app/css/common.css
View file @
7acc7ec2
...
...
@@ -379,3 +379,9 @@ display: none;}*/
background-image
:
linear-gradient
(
to
bottom
,
#428bca
0
,
#3071a9
100%
);
border
:
1px
solid
#2d6ca2
;
}
.btn-info-pc
{
color
:
white
;
background-image
:
linear-gradient
(
to
bottom
,
#5bc0de
0
,
#31b0d5
100%
);
border
:
1px
solid
#2d6ca2
;
}
public/app/js/bargaininfo_detail_static_pc.js
View file @
7acc7ec2
'use strict'
;
require
([
'vue'
,
'css!style/bargaininfo_detail_static_pc.css'
,
'jquery0325'
,
'common'
],
function
(
Vue
,
VConsole
)
{
require
([
'vue'
,
'css!style/bargaininfo_detail_static_pc.css'
,
'jquery0325'
,
'common'
],
function
(
Vue
)
{
var
user_info_obj
=
JSON
.
parse
(
decodeURIComponent
(
localStorage
.
getItem
(
'pcUserInfo'
)));
//读取缓存
var
order_id
=
JSON
.
parse
(
decodeURIComponent
(
getUrlParam
(
'orderid'
)));
//获取订单id
var
_doc
=
$
(
document
);
...
...
@@ -176,6 +176,12 @@ require(['vue', 'css!style/bargaininfo_detail_static_pc.css', 'jquery0325', 'com
hidePhone
(
t
)
{
return
hideTel
(
t
);
},
showCustomerDetail
()
{
$
(
'a[href="#modal_user_detail"]'
,
parent
.
document
).
click
();
},
showShopDetail
()
{
$
(
'a[href="#modal_shop_detail"]'
,
parent
.
document
).
click
();
}
}
});
});
\ 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