1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
| import request from '@/router/axios'
|
| export const getRemoteDetailsList = () => {
| return request({
| url: '/remoteType/type/getRemoteDetailsList',
| method: 'post',
| })
| }
| var viewdata = []
| getRemoteDetailsList().then(res=>{
| var data = res.data.data
|
| data.forEach(e=>{
| var childItem = []
| e.remoteList.forEach(k=>{
| childItem.push({
| title:k.reName,
| url:k.reUrl
| })
| })
| viewdata.push({
| name:e.name,
| latitude: e.latitude,
| longitude: e.longitude,
| childItem:childItem
| })
| })
| })
| export {viewdata}
|
| // export const viewdata = [
| // {
| // name: '南城县南城麻姑集团',
| // latitude: '116.625419',
| // longitude: '27.586658',
| // childItem: [
| // { title: '2022年6月', url: 'http://59.55.128.155:9003/image/wmts/x6FjrhkG/{z}/{x}/{y}' }
| // ]
| // },
| // {
| // name: '南城县水龙米业',
| // latitude: '116.642107',
| // longitude: '27.596825',
| // childItem: [
| // { title: '2022年6月', url: 'http://59.55.128.155:9003/image/wmts/EigNM2I4/{z}/{x}/{y}' }
| // ]
| // },
| // {
| // name: '南城县田南村绿色基地',
| // latitude: '116.56705776',
| // longitude: '27.42386903',
| // childItem: [
| // { title: '2022年6月', url: 'http://59.55.128.155:9003/image/wmts/vNjFuYLb/{z}/{x}/{y}' },
| // { title: '2022年7月', url: 'http://59.55.128.155:9003/image/wmts/XPkwzs0M/{z}/{x}/{y}' },
| // { title: '2022年8月', url: 'http://59.55.128.155:9003/image/wmts/YnJOjH09/{z}/{x}/{y}' }
| // ]
| // },
| // {
| // name: '南城县有机种植基地',
| // latitude: '116.778964',
| // longitude: '27.563004',
| // childItem: [
| // { title: '2022年6月', url: 'http://59.55.128.155:9003/image/wmts/syOssp0f/{z}/{x}/{y}' },
| // { title: '2022年7月', url: 'http://59.55.128.155:9003/image/wmts/taX7ipoo/{z}/{x}/{y}' },
| // { title: '2022年8月', url: 'http://59.55.128.155:9003/image/wmts/JqaZaGwd/{z}/{x}/{y}' }
| // ]
| // },
| // {
| // name: '南城县育秧中心',
| // latitude: '116.650792',
| // longitude: '27.633852',
| // childItem: [
| // { title: '2022年8月', url: 'http://59.55.128.155:9003/image/wmts/U49OG6vT/{z}/{x}/{y}' }
| // ]
| // }
| // ]
|
|