Commit e63140dd authored by 华国豪's avatar 华国豪 🙄

1

parent a4a59dc2
...@@ -29,15 +29,15 @@ ...@@ -29,15 +29,15 @@
.CityChange .el-select .el-input__inner:focus { .CityChange .el-select .el-input__inner:focus {
border: none; border: none;
} }
.juanmei{ .juanmei {
width: 140px !important; width: 140px !important;
cursor: pointer; cursor: pointer;
padding-right: 40px; padding-right: 40px;
} }
.juanmei div{ .juanmei div {
text-align: right !important; text-align: right !important;
} }
.juanmei img{ .juanmei img {
z-index: 1; z-index: 1;
position: absolute; position: absolute;
top: -20px; top: -20px;
...@@ -142,7 +142,7 @@ ...@@ -142,7 +142,7 @@
<el-row class="_flex_center"> <el-row class="_flex_center">
<!-- 左 logo --> <!-- 左 logo -->
<el-col :span="5"> <el-col :span="5">
<img class="logo" src="../../assets/img/logo_t.png" alt> <img class="logo" src="../../assets/img/logo_t.png" alt />
</el-col> </el-col>
<!-- 中 搜索框 --> <!-- 中 搜索框 -->
<el-col :span="2"> <el-col :span="2">
...@@ -338,13 +338,17 @@ ...@@ -338,13 +338,17 @@
<!-- 活动中心 --> <!-- 活动中心 -->
<li :class="{_active: navActive === 9}" style="width: auto;"> <li :class="{_active: navActive === 9}" style="width: auto;">
<div @click="handleSelect('/IceCreamTask', 9), navActive = 9"> <div @click="handleSelect('/IceCreamTask', 9), navActive = 9">
<img style="z-index: -1;position: absolute;top: -27px;" src="../../assets/img/task/nav_bg.png" alt=""> <img
<img src="../../assets/img/task/nav_text.png" alt=""> style="z-index: -1;position: absolute;top: -27px;"
src="../../assets/img/task/nav_bg.png"
alt
/>
<img src="../../assets/img/task/nav_text.png" alt />
</div> </div>
</li> </li>
<li :class="{_active: navActive === 9}" class="juanmei"> <li :class="{_active: navActive === 9}" class="juanmei">
<div @click="handleSelect('', ), navActive = 9"> <div @click="handleSelect('', ), navActive = 9">
<img src="../../assets/img/task/juanmei.png" alt=""> <img src="../../assets/img/task/juanmei.png" alt />
</div> </div>
</li> </li>
</ul> </ul>
...@@ -414,12 +418,11 @@ export default { ...@@ -414,12 +418,11 @@ export default {
let cityname = this.cityText.slice(0, this.cityText.length - 1); let cityname = this.cityText.slice(0, this.cityText.length - 1);
if (this.sites.length > 0) { if (this.sites.length > 0) {
this.sites.forEach(item => { this.sites.forEach(item => {
if (item.siteName.indexOf(cityname) != -1) { if (cityname.indexOf(item.siteName.replace("站", "")) != -1) {
//出现改字段 //出现改字段
this.city = item.companyId; this.city = item.companyId;
window.localStorage.site = this.city; window.localStorage.site = this.city;
window.localStorage.cityId = item.cityId; window.localStorage.cityId = item.cityId;
console.log(window.localStorage.cityId);
} else { } else {
} }
}); });
...@@ -493,31 +496,17 @@ export default { ...@@ -493,31 +496,17 @@ export default {
} }
}, },
created() { created() {
let _this = this; let that = this;
//获取用户所在城市信息 require(["http://pv.sohu.com/cityjson?ie=utf-8"], () => {
//实例化城市查询类 setTimeout(() => {
var citysearch = new AMap.CitySearch(); if (returnCitySN) {
//自动获取用户IP,返回当前城市 that.loadSites();
citysearch.getLocalCity(function(status, result) { that.cityText = returnCitySN.cname;
if (status === "complete" && result.info === "OK") { } else {
if (result && result.city && result.bounds) { that.loadSites();
var citybounds = result.bounds;
_this.cityText = result.city;
// document.getElementById('info').innerHTML = '您当前所在城市:'+cityinfo;
// //地图显示当前城市
// map.setBounds(citybounds);
} }
} else { }, 1500);
}
}); });
// let geolocation = location.initMap("map-container"); //定位
// AMap.event.addListener(geolocation, "complete", result => {
// console.log(result)
// if(result.addressComponent.city){
// this.cityText=result.addressComponent.city;
// }
this.loadSites();
// });
if (localStorage.g && localStorage.g != "undefined") { if (localStorage.g && localStorage.g != "undefined") {
this.groupInfo = JSON.parse(localStorage.g); this.groupInfo = JSON.parse(localStorage.g);
} }
......
...@@ -10,8 +10,9 @@ module.exports = { ...@@ -10,8 +10,9 @@ module.exports = {
devServer: { devServer: {
// host: 'www.B2B.com', // host: 'www.B2B.com',
}, },
externals: { externals: [
BMap: 'BMap' 'BMap',
} require('webpack-require-http')
]
}, },
} }
\ 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