Commit 47e4e5dcc84c20b3cdf4147caccd8b8305210e2c
1 parent
61ee402a
1
Showing
5 changed files
with
45 additions
and
36 deletions
admin-web-master/src/components/chakan/zl.vue
| ... | ... | @@ -253,9 +253,10 @@ |
| 253 | 253 | <el-form-item label="详细位置" prop="detailedLocation"> |
| 254 | 254 | <div class="duiqi">{{info.cereBasicInformationShop.detailedLocation || '无'}}</div> |
| 255 | 255 | </el-form-item> |
| 256 | - <el-form-item label="地图标点" prop="mapPunctuation"> | |
| 256 | + <el-form-item label="地图标点" prop="mapPunctuation" v-if="info.cereBasicInformationShop"> | |
| 257 | 257 | <div style="width: 100%;height: 300px;"> |
| 258 | 258 | <!-- :edit='edit' :sendMap='getChildDate' --> |
| 259 | + <!-- {{ info.cereBasicInformationShop.mapPunctuation }} --> | |
| 259 | 260 | <newmap :isx="false" :message="info.cereBasicInformationShop.mapPunctuation"></newmap> |
| 260 | 261 | </div> |
| 261 | 262 | </el-form-item> |
| ... | ... | @@ -344,10 +345,10 @@ |
| 344 | 345 | <!-- <el-form-item label="详细位置" prop="detailedLocation"> |
| 345 | 346 | <div class="duiqi">{{info.cereBasicInformationVenue.detailedLocation || '无'}}</div> |
| 346 | 347 | </el-form-item> --> |
| 347 | - <el-form-item label="地图标点" prop="mapMarker" v-if="false"> | |
| 348 | + <el-form-item label="地图标点" prop="mapMarker"> | |
| 348 | 349 | <div style="width: 100%;height: 300px;"> |
| 349 | - <newmap :isx="false" :message="editbgid.detailedLocation"></newmap> | |
| 350 | - <!-- <indexall :isx="false" :message="info.cereBasicInformationVenue.detailedLocation?info.cereBasicInformationVenue.detailedLocation:''"></indexall> --> | |
| 350 | + <!-- <newmap :isx="false" :message="editbgid.detailedLocation"></newmap> --> | |
| 351 | + <indexall :isx="false" :message="info.cereBasicInformationVenue.detailedLocation?info.cereBasicInformationVenue.detailedLocation:''"></indexall> | |
| 351 | 352 | </div> |
| 352 | 353 | </el-form-item> |
| 353 | 354 | <el-form-item label="场地描述" prop="description"> | ... | ... |
admin-web-master/src/components/newmap/index.vue
admin-web-master/src/components/newmap/indexall.vue
| ... | ... | @@ -47,8 +47,12 @@ export default { |
| 47 | 47 | }, |
| 48 | 48 | }, |
| 49 | 49 | mounted() { |
| 50 | - this.initMap(); | |
| 51 | - this.setActiveType('polygon') | |
| 50 | + let that = this; | |
| 51 | + // 延迟2秒执行,避免地图加载失败 | |
| 52 | + setTimeout(() => { | |
| 53 | + that.initMap(); | |
| 54 | + that.setActiveType('polygon') | |
| 55 | + }, 2000); | |
| 52 | 56 | }, |
| 53 | 57 | methods: { |
| 54 | 58 | searchLocation() { | ... | ... |
admin-web-master/src/layout/index.vue
| ... | ... | @@ -200,17 +200,17 @@ |
| 200 | 200 | } |
| 201 | 201 | } |
| 202 | 202 | return { |
| 203 | - msg: [], | |
| 204 | - list: [], | |
| 203 | + // msg: [], | |
| 204 | + // list: [], | |
| 205 | 205 | // msg: ['招商服务系统'], |
| 206 | - // msg: ['招商服务系统', '推广策划系统', '在线商城系统', '支付服务模块', '票务'], | |
| 207 | - // list: [ | |
| 208 | - // ['招商资源监测', '商家管理', '商铺租赁服务', '招商方案管理', '招商租赁管理', '广告服务', '轮播图设置', '商户意向管理', '问卷调查','客服服务管理', '系统设置'], | |
| 209 | - // ['品牌策划', '活动策划', '氛围策划', '媒体推广'], | |
| 210 | - // ['订单管理', '积分管理', '消息中心', '会员管理', '评论管理', '商品管理', '库存管理', '销售统计', '优惠券管理', '商城商家管理'], | |
| 211 | - // ['联机交易', '对账处理', '日志管理', '商户服务'], | |
| 212 | - // ['渠道售票统计分析', '销售额统计分析'], | |
| 213 | - // ], | |
| 206 | + msg: ['招商服务系统', '推广策划系统', '在线商城系统', '支付服务模块', '票务'], | |
| 207 | + list: [ | |
| 208 | + ['招商资源监测', '商家管理', '商铺租赁服务', '招商方案管理', '招商租赁管理', '广告服务', '轮播图设置', '商户意向管理', '问卷调查','客服服务管理', '系统设置'], | |
| 209 | + ['品牌策划', '活动策划', '氛围策划', '媒体推广'], | |
| 210 | + ['订单管理', '积分管理', '消息中心', '会员管理', '评论管理', '商品管理', '库存管理', '销售统计', '优惠券管理', '商城商家管理'], | |
| 211 | + ['联机交易', '对账处理', '日志管理', '商户服务'], | |
| 212 | + ['渠道售票统计分析', '销售额统计分析'], | |
| 213 | + ], | |
| 214 | 214 | listMune: [], |
| 215 | 215 | mumeList: [], |
| 216 | 216 | mumeChildren1: [], |
| ... | ... | @@ -299,10 +299,10 @@ |
| 299 | 299 | this.userAvatar = getUserAvatar() |
| 300 | 300 | }, |
| 301 | 301 | mounted() { |
| 302 | - this.getMemu() | |
| 303 | - this.address() | |
| 304 | - this.waibu() | |
| 305 | - // this.neibu() | |
| 302 | + // this.getMemu() | |
| 303 | + // this.address() | |
| 304 | + // this.waibu() | |
| 305 | + this.neibu() | |
| 306 | 306 | }, |
| 307 | 307 | |
| 308 | 308 | methods: { |
| ... | ... | @@ -779,19 +779,19 @@ |
| 779 | 779 | clk(index) { |
| 780 | 780 | this.index = index |
| 781 | 781 | this.listMune = [] |
| 782 | - // this.list = [ | |
| 783 | - // ['招商资源监测', '商家管理', '商铺租赁服务', '招商方案管理', '招商租赁管理', '广告服务', '轮播图设置', '商户意向管理', '问卷调查','客服服务管理', '系统设置'], | |
| 784 | - // ['品牌策划', '活动策划', '氛围策划', '媒体推广'], | |
| 785 | - // ['订单管理', '积分管理', '消息中心', '会员管理', '评论管理', '商品管理', '库存管理', '销售统计', '优惠券管理', '商城商家管理'], | |
| 786 | - // ['联机交易', '对账处理', '日志管理', '商户服务'], | |
| 787 | - // ['渠道售票统计分析', '销售额统计分析'], | |
| 788 | - // ] | |
| 789 | - // this.neibu() | |
| 790 | - | |
| 791 | - | |
| 792 | - this.getMemu() | |
| 793 | - this.waibu() | |
| 794 | - this.list = this.mumeList | |
| 782 | + this.list = [ | |
| 783 | + ['招商资源监测', '商家管理', '商铺租赁服务', '招商方案管理', '招商租赁管理', '广告服务', '轮播图设置', '商户意向管理', '问卷调查','客服服务管理', '系统设置'], | |
| 784 | + ['品牌策划', '活动策划', '氛围策划', '媒体推广'], | |
| 785 | + ['订单管理', '积分管理', '消息中心', '会员管理', '评论管理', '商品管理', '库存管理', '销售统计', '优惠券管理', '商城商家管理'], | |
| 786 | + ['联机交易', '对账处理', '日志管理', '商户服务'], | |
| 787 | + ['渠道售票统计分析', '销售额统计分析'], | |
| 788 | + ] | |
| 789 | + this.neibu() | |
| 790 | + | |
| 791 | + | |
| 792 | + // this.getMemu() | |
| 793 | + // this.waibu() | |
| 794 | + // this.list = this.mumeList | |
| 795 | 795 | |
| 796 | 796 | |
| 797 | 797 | }, | ... | ... |
admin-web-master/src/utils/request.js
| ... | ... | @@ -17,12 +17,12 @@ let baseURL = '' |
| 17 | 17 | if(host === 'localhost:8080' || host === 'localhost:8081' || host === 'localhost:9528'|| host === '192.168.31.45:9528'|| host === 'localhost:9529' ) { |
| 18 | 18 | |
| 19 | 19 | // baseURL = 'https://jy.scjysm.asia:18086/cdwlMall/meserver/admin-server'; |
| 20 | - // baseURL = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/admin-server'; | |
| 20 | + baseURL = 'https://zhgw-uat.028wlkj.com/cdwlMall/meserver/admin-server'; | |
| 21 | 21 | |
| 22 | 22 | // baseURL = process.env.VUE_APP_DOMAIN_PREFIX_1; |
| 23 | 23 | |
| 24 | 24 | |
| 25 | - baseURL = 'http://128.10.249.9:9003'; | |
| 25 | + // baseURL = 'http://128.10.249.9:9003'; | |
| 26 | 26 | |
| 27 | 27 | |
| 28 | 28 | } else { | ... | ... |