Commit 7acc7ec2 authored by xishifeng's avatar xishifeng

1

parent 681f65a7
......@@ -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>
......
......@@ -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;
}
......@@ -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;
}
'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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment