Commit 11af3e61 authored by 黄奎's avatar 黄奎
parents 5e56f7cd eb45d728
...@@ -64,8 +64,8 @@ ...@@ -64,8 +64,8 @@
methods: { methods: {
// 初始化地图 // 初始化地图
initMap() { initMap() {
let self = this; let self = this
let center = new qq.maps.LatLng(self.latitude, self.longitude); // 默认坐标 let center = new qq.maps.LatLng(self.latitude?self.latitude:39.961627, self.longitude?self.longitude:116.294625); // 默认坐标
self.map = new qq.maps.Map( self.map = new qq.maps.Map(
document.getElementById("container"), { document.getElementById("container"), {
center: center, center: center,
......
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
top: 1px; top: 1px;
"></span> "></span>
</div> --> </div> -->
<!-- <div class="searchInput" style="width: 250px; margin-bottom: 10px"> <div class="searchInput" style="width: 250px; margin-bottom: 10px">
<el-input @keyup.enter.native="(msg.pageIndex = 1), getList()" @clear="(msg.pageIndex = 1), getList()" <el-input @keyup.enter.native="(msg.pageIndex = 1), getList()" @clear="(msg.pageIndex = 1), getList()"
style="display: inline-block; width: 225px; height: 30px" @keyup.native="checkInteger(msg, 'MetroNum')" style="display: inline-block; width: 225px; height: 30px" @keyup.native="checkInteger(msg, 'MetroNum')"
placeholder="地铁线路" v-model="msg.MetroNum" size="small" clearable> placeholder="地铁线路" v-model="msg.MetroNum" size="small" clearable>
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
position: relative; position: relative;
top: 1px; top: 1px;
"></span> "></span>
</div> --> </div>
<!-- <div class="searchInput" style="width: 200px; margin-bottom: 10px"> <!-- <div class="searchInput" style="width: 200px; margin-bottom: 10px">
<el-select size="small" v-model="msg.UserId" :filter-method="ChangeListName" filterable <el-select size="small" v-model="msg.UserId" :filter-method="ChangeListName" filterable
@change="(msg.pageIndex = 1), getList()" placeholder="请选择"> @change="(msg.pageIndex = 1), getList()" placeholder="请选择">
...@@ -133,7 +133,7 @@ ...@@ -133,7 +133,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="OpenTime" width="180" label="开业时间"> <el-table-column prop="OpenTime" width="180" label="开业时间">
</el-table-column> </el-table-column>
<el-table-column prop="ProjectType" label="项目分类"> <el-table-column prop="ProjectType" min-width="200" label="项目分类">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.CategoryName }} {{ scope.row.CategoryName }}
</template> </template>
...@@ -151,7 +151,7 @@ ...@@ -151,7 +151,7 @@
<el-table-column prop="SupportingFacilities" width="100" label="水电气及配套"></el-table-column> <el-table-column prop="SupportingFacilities" width="100" label="水电气及配套"></el-table-column>
<el-table-column prop="ManagementCompany" width="100" label="管理公司及管理费"></el-table-column> <el-table-column prop="ManagementCompany" width="100" label="管理公司及管理费"></el-table-column>
<el-table-column prop="BrandDemand" width="200" label="目标招商业态及品牌需求"></el-table-column> --> <el-table-column prop="BrandDemand" width="200" label="目标招商业态及品牌需求"></el-table-column> -->
<el-table-column label="操作" width="100" fixed="right"> <el-table-column label="操作" width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tooltip class="item" effect="dark" content="修改" placement="top"> <el-tooltip class="item" effect="dark" content="修改" placement="top">
<img @click="CommonJump('editVehicle', { ID: scope.row.ID,isCarrier:isCarrier?1:0 })" <img @click="CommonJump('editVehicle', { ID: scope.row.ID,isCarrier:isCarrier?1:0 })"
......
...@@ -437,7 +437,7 @@ ...@@ -437,7 +437,7 @@
> >
</el-input> </el-input>
</el-form-item> --> </el-form-item> -->
<!-- <el-form-item label="地铁信息"> <el-form-item label="地铁信息">
<div <div
v-for="(item, index) in MetroList" v-for="(item, index) in MetroList"
:key="index" :key="index"
...@@ -477,7 +477,7 @@ ...@@ -477,7 +477,7 @@
icon="el-icon-plus" icon="el-icon-plus"
circle circle
></el-button> ></el-button>
</el-form-item> --> </el-form-item>
<el-form-item label="分类" prop="CategoryId"> <el-form-item label="分类" prop="CategoryId">
<el-select <el-select
v-model="addMsg.CategoryId" v-model="addMsg.CategoryId"
...@@ -867,12 +867,12 @@ export default { ...@@ -867,12 +867,12 @@ export default {
baiduMap, baiduMap,
}, },
created() { created() {
this.isCarrier = this.$route.query.isCarrier
this.addMsg.BuildingCarrierType = this.isCarrier?this.isCarrier:2
if (this.$route.query.ID) { if (this.$route.query.ID) {
this.ID = this.$route.query.ID; this.ID = this.$route.query.ID;
this.getData(); this.getData();
} }
this.isCarrier = this.$route.query.isCarrier
this.addMsg.BuildingCarrierType = this.isCarrier?this.isCarrier:2
this.getTypeEnumList(); this.getTypeEnumList();
this.GetAuthenticationCategoryEnumList(); this.GetAuthenticationCategoryEnumList();
}, },
......
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