修改
This commit is contained in:
@@ -1,18 +1,34 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="">
|
<html lang="">
|
||||||
<head>
|
|
||||||
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||||
<!-- <link rel="icon" href="./favicon.ico"> -->
|
<!-- <link rel="icon" href="./favicon.ico"> -->
|
||||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||||
<title>港校租房</title>
|
<title>港校租房</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
|
||||||
|
<body>
|
||||||
<noscript>
|
<noscript>
|
||||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
|
||||||
|
Please enable it to continue.</strong>
|
||||||
</noscript>
|
</noscript>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
|
<div style="display:none;">
|
||||||
|
<script type="text/javascript" src="//v1.cnzz.com/z_stat.php?id=1281224882&web_id=1281224882"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
var _hmt = _hmt || [];
|
||||||
|
(function () {
|
||||||
|
var hm = document.createElement("script");
|
||||||
|
hm.src = "//hm.baidu.com/hm.js?4bd66cbe45a640b607fe46c48f658746";
|
||||||
|
var s = document.getElementsByTagName("script")[0];
|
||||||
|
s.parentNode.insertBefore(hm, s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
<!-- built files will be auto injected -->
|
<!-- built files will be auto injected -->
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
@@ -741,7 +741,8 @@ let deleteSeachVal = (i) => {
|
|||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
margin: 20px 30px 0 0;
|
margin-top: 20px;
|
||||||
|
padding-right: 30px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -752,7 +753,7 @@ let deleteSeachVal = (i) => {
|
|||||||
.btn-icon {
|
.btn-icon {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
right: -16px;
|
right: 16px;
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
width: 8px;
|
width: 8px;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
|
|||||||
@@ -105,7 +105,6 @@
|
|||||||
@click.stop="goUp">{{
|
@click.stop="goUp">{{
|
||||||
data.isding == 0 ? '顶上去' : '今天已顶' }}
|
data.isding == 0 ? '顶上去' : '今天已顶' }}
|
||||||
</div>
|
</div>
|
||||||
<!-- <div class="publish-item flexcenter already-go-up" v-if="stateData.btn == 2 && item.isding == 1"></div> -->
|
|
||||||
</div>
|
</div>
|
||||||
<div class="btm-box dis-f al-item" v-else>
|
<div class="btm-box dis-f al-item" v-else>
|
||||||
<div class="flex1 flexacenter">
|
<div class="flex1 flexacenter">
|
||||||
|
|||||||
@@ -140,6 +140,21 @@ router.beforeEach((to, from, next) => {
|
|||||||
let meta = to['meta'] || {}
|
let meta = to['meta'] || {}
|
||||||
let title = meta['title']
|
let title = meta['title']
|
||||||
if (title) setSeoTitle(title)
|
if (title) setSeoTitle(title)
|
||||||
|
|
||||||
|
|
||||||
|
if (window._hmt) {
|
||||||
|
if (to.path) {
|
||||||
|
window._hmt.push(['_trackPageview', '/#' + to.fullPath])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (window._czc) {
|
||||||
|
let location = window.location
|
||||||
|
let contentUrl = location.pathname + location.hash
|
||||||
|
let refererUrl = "/"
|
||||||
|
// 用于发送某个URL的PV统计请求
|
||||||
|
window._czc.push(["_trackPageview", contentUrl, refererUrl])
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
router.afterEach(() => {
|
router.afterEach(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user