Commit 87b8ee65 authored by agping's avatar agping

成交地图显示按钮

parent 03670070
...@@ -203,6 +203,19 @@ ...@@ -203,6 +203,19 @@
margin-top: 10px; margin-top: 10px;
cursor: pointer; cursor: pointer;
font-weight: 600; font-weight: 600;
}
.big-data{
width:66px;
height:32px;
border-radius:3px;
border:1px solid rgba(255,255,255,1);
font-size:12px;
color:rgba(255,255,255,1);
line-height: 32px;
text-align: center;
margin-top: 10px;
cursor: pointer;
font-weight: 600;
} }
</style> </style>
</head> </head>
...@@ -225,6 +238,9 @@ ...@@ -225,6 +238,9 @@
<li><a href="/index/logout" id="logout">退出登录</a></li> <li><a href="/index/logout" id="logout">退出登录</a></li>
</ul> </ul>
</div> </div>
<div class="big-data" style="float: right;margin-left: 20px;">
成交地图
</div>
<div class="add-doc" style="float: right;display: none;"> <div class="add-doc" style="float: right;display: none;">
客户见证 客户见证
</div> </div>
...@@ -306,6 +322,13 @@ ...@@ -306,6 +322,13 @@
var str_ = "http://cms.tonglianjituan.com/plugin/tonglian/auth/index?token=" + JSON.parse(decodeURIComponent(localStorage.getItem('pcUserInfo'))).AuthToken; var str_ = "http://cms.tonglianjituan.com/plugin/tonglian/auth/index?token=" + JSON.parse(decodeURIComponent(localStorage.getItem('pcUserInfo'))).AuthToken;
window.open(str_); window.open(str_);
}); });
//同联商业运营大数据
$(document).on('click', '.big-data', function(e) {
e.preventDefault();
e.stopPropagation();
var str_ = "/app/distPC/#/dealMap";
window.open(str_);
});
$(document).on('click', '.reset-con', function(e) { $(document).on('click', '.reset-con', function(e) {
e.preventDefault(); e.preventDefault();
e.stopPropagation(); e.stopPropagation();
......
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