|
|
|
|
144
|
|
144
|
|
145
|
// 周边设施 回调
|
145
|
// 周边设施 回调
|
146
|
function getMapScope(e) {
|
146
|
function getMapScope(e) {
|
|
|
147
|
+ const coordinateValue = props.form.getFieldValue('coordinate')
|
|
|
148
|
+ if (!coordinateValue) {
|
|
|
149
|
+ openNotificationWithIcon('error', '请先选择项目坐标位置')
|
|
|
150
|
+ return
|
|
|
151
|
+ }
|
147
|
const coordinate = props.form.getFieldValue('coordinate').split(',')
|
152
|
const coordinate = props.form.getFieldValue('coordinate').split(',')
|
148
|
const poiData = [].concat(POI_TYPES)
|
153
|
const poiData = [].concat(POI_TYPES)
|
149
|
poiData.map(item => {
|
154
|
poiData.map(item => {
|