Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
A
admin-ci-test
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
test-ci
admin-ci-test
Commits
123a2bb8
提交
123a2bb8
authored
7月 20, 2023
作者:
龚洪江
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复:地图选点问题
上级
911f94e1
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
13 行增加
和
8 行删除
+13
-8
index.html
index.html
+1
-1
request.ts
src/api/request.ts
+1
-0
index.tsx
src/components/select-map/index.tsx
+9
-5
map.tsx
src/components/select-map/map.tsx
+2
-2
没有找到文件。
index.html
浏览文件 @
123a2bb8
...
...
@@ -11,7 +11,7 @@
<script
type=
"module"
src=
"/src/main.tsx"
></script>
<script
type=
"text/javascript"
>
window
.
_AMapSecurityConfig
=
{
securityJsCode
:
'
a9cd5c6e4eb563b65884efc14759d6a1
'
,
securityJsCode
:
'
e3e2af73906d447a776b1d5b59e9a046
'
,
}
</script>
</body>
...
...
src/api/request.ts
浏览文件 @
123a2bb8
...
...
@@ -43,6 +43,7 @@ service.interceptors.response.use(
if
([
'605'
,
'603'
,
'602'
,
'4004'
,
'607'
,
'2014'
,
'2013'
,
'5008'
].
includes
(
data
.
code
))
{
message
.
error
(
data
.
message
).
then
();
Cookies
.
remove
(
'SHAREFLY-TOKEN'
);
localStorage
.
removeItem
(
'roleId'
);
setTimeout
(()
=>
{
window
.
location
.
reload
();
},
1000
);
...
...
src/components/select-map/index.tsx
浏览文件 @
123a2bb8
...
...
@@ -15,6 +15,8 @@ const SelectMapModal: FC<propType> = (props) => {
SelectMapModal
.
defaultProps
=
{
title
:
'选择地点'
,
};
//筛选值
const
[
searchKey
,
setSearchKey
]
=
useState
<
string
>
(
''
);
// 参数
const
{
title
,
open
,
closed
,
submit
}
=
props
;
// 子组件事件
...
...
@@ -31,7 +33,8 @@ const SelectMapModal: FC<propType> = (props) => {
adCode
:
number
;
}
>
();
// 搜索地点
const
[
addressList
,
setAddressList
]
=
useState
<
{
label
:
string
;
value
:
number
;
data
:
any
}[]
>
();
const
[
addressList
,
setAddressList
]
=
useState
<
{
label
:
string
;
value
:
number
;
data
:
any
;
searchKey
:
string
}[]
>
();
// 取消事件
const
handleCancel
=
()
=>
{
setPosition
(
undefined
);
...
...
@@ -44,6 +47,7 @@ const SelectMapModal: FC<propType> = (props) => {
};
// 搜索地点
const
handleSearch
=
(
e
:
string
)
=>
{
setSearchKey
(
e
||
''
);
if
(
e
)
{
childRef
.
current
?.
onSearch
(
e
);
}
else
{
...
...
@@ -54,8 +58,7 @@ const SelectMapModal: FC<propType> = (props) => {
const
handleSearchDebounced
=
debounce
(
handleSearch
,
500
);
// 选择了地址
const
handleSearchAddress
=
(
e
:
number
)
=>
{
if
(
e
)
{
console
.
log
(
addressList
?.[
e
].
data
);
if
(
!
isNaN
(
e
))
{
// eslint-disable-next-line no-unsafe-optional-chaining
const
{
lat
,
lng
}
=
addressList
?.[
e
].
data
.
location
;
childRef
.
current
?.
addMarker
({
lat
,
lng
});
...
...
@@ -96,7 +99,7 @@ const SelectMapModal: FC<propType> = (props) => {
allowClear
onSearch={handleSearchDebounced}
filterOption={(input, option) =>
(option?.
label
?? '').toLowerCase().includes(input.toLowerCase())
(option?.
searchKey
?? '').toLowerCase().includes(input.toLowerCase())
}
options={addressList}
onChange={handleSearchAddress}
...
...
@@ -115,7 +118,8 @@ const SelectMapModal: FC<propType> = (props) => {
});
}}
onSearchAddress={(e) => {
setAddressList(e.map((i, j) => ({ label: i.name, value: j, data: i })));
console.log('筛选e--->', e);
setAddressList(e.map((i, j) => ({ label: i.name, value: j, data: i, searchKey })));
}}
></MapComponent>
<div
...
...
src/components/select-map/map.tsx
浏览文件 @
123a2bb8
...
...
@@ -45,7 +45,7 @@ class MapComponent extends Component<MapComponentProps> {
// dom渲染成功后进行map对象的创建
componentDidMount
()
{
AMapLoader
.
load
({
key
:
'
7a3a24e85672c06ab466d790fb5d38a3
'
,
// 申请好的Web端开发者Key,首次调用 load 时必填
key
:
'
5d75700ddef48d1c3d2de349e3dd260c
'
,
// 申请好的Web端开发者Key,首次调用 load 时必填
version
:
'2.0'
,
// 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
plugins
:
[],
// 需要使用的的插件列表,如比例尺'AMap.Scale'等
})
...
...
@@ -93,7 +93,6 @@ class MapComponent extends Component<MapComponentProps> {
if
(
status
===
'complete'
&&
result
.
info
===
'OK'
)
{
// result为对应的地理位置详细信息
const
{
formattedAddress
,
addressComponent
}
=
result
.
regeocode
;
console
.
log
(
'点击选择-->'
,
status
,
result
);
this
.
props
.
onSelectAddress
({
lat
,
lng
,
...
...
@@ -115,6 +114,7 @@ class MapComponent extends Component<MapComponentProps> {
onSearch
(
keyword
:
string
)
{
// 根据关键字进行搜索
this
.
autoComplete
.
search
(
keyword
,
(
status
,
result
)
=>
{
console
.
log
(
'搜索结果-->'
,
result
);
// 搜索成功时,result即是对应的匹配数据
if
(
status
===
'complete'
&&
result
.
info
===
'OK'
)
{
this
.
props
.
onSearchAddress
(
result
.
tips
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论