Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
118fa6c0
提交
118fa6c0
authored
4月 27, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
定位组件修改
上级
f977297f
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
109 行增加
和
125 行删除
+109
-125
index.jsx
one_stop_public/location/index.jsx
+109
-125
index.jsx
one_stop_public/tableCompon/index.jsx
+0
-0
没有找到文件。
one_stop_public/location/index.jsx
浏览文件 @
118fa6c0
...
@@ -13,130 +13,114 @@ import { getPopconfirm } from '@/webPublic/one_stop_public/utils/utils';
...
@@ -13,130 +13,114 @@ import { getPopconfirm } from '@/webPublic/one_stop_public/utils/utils';
const
Popconfirm
=
getPopconfirm
();
const
Popconfirm
=
getPopconfirm
();
export
default
class
location
extends
Component
{
export
default
class
location
extends
Component
{
constructor
(
props
)
{
constructor
(
props
)
{
super
(
props
);
super
(
props
);
this
.
state
=
{
this
.
state
=
{
locationMsg
:
{},
locationMsg
:
{},
btn
:
true
,
btn
:
true
,
style
:
{
display
:
'none'
},
style
:
{
display
:
'none'
},
};
};
}
}
// 该方法在首次渲染之前调用(数据初始化)
// 该方法在首次渲染之前调用(数据初始化)
componentWillMount
()
{}
componentWillMount
()
{}
//已经生成对应的dom结构
//已经生成对应的dom结构
componentDidMount
=
()
=>
{};
componentDidMount
=
()
=>
{};
//在组件从 DOM 中移除的时候立刻被调用。
//在组件从 DOM 中移除的时候立刻被调用。
componentWillUnmount
=
()
=>
{};
componentWillUnmount
=
()
=>
{};
getLocationMsg
=
(
locationMsg
)
=>
{
getLocationMsg
=
locationMsg
=>
{
console
.
log
(
locationMsg
);
console
.
log
(
locationMsg
);
//如果不为空的话显示提示
//如果不为空的话显示提示
this
.
setState
({
loading
:
true
},
()
=>
{
this
.
setState
({
loading
:
true
},
()
=>
{
if
(
Object
.
keys
(
locationMsg
).
length
!==
0
)
{
if
(
Object
.
keys
(
locationMsg
).
length
!==
0
)
{
this
.
setState
({
this
.
setState
({
locationMsg
:
locationMsg
,
locationMsg
:
locationMsg
,
loading
:
false
,
loading
:
false
,
style
:
{
display
:
'block'
},
style
:
{
display
:
'block'
},
btn
:
false
,
btn
:
false
,
});
});
}
else
{
}
else
{
this
.
setState
({
this
.
setState
({
loading
:
false
,
loading
:
false
,
});
});
}
}
});
});
};
};
submitLocation
=
()
=>
{
submitLocation
=
()
=>
{
const
{
showLocation
}
=
this
.
props
;
const
{
showLocation
}
=
this
.
props
;
if
(
!
showLocation
)
return
;
if
(
!
showLocation
)
return
;
if
(
isEmpty
(
this
.
state
.
locationMsg
)
&&
window
.
lat
&&
window
.
lng
)
{
if
(
isEmpty
(
this
.
state
.
locationMsg
)
&&
window
.
lat
&&
window
.
lng
)
{
let
obj
=
{
let
obj
=
{
lat
:
window
.
lat
,
lat
:
window
.
lat
,
lng
:
window
.
lng
,
lng
:
window
.
lng
,
};
};
this
.
props
.
onChange
(
obj
);
this
.
props
.
onChange
(
obj
);
if
(
this
.
props
.
get
===
'web'
)
{
if
(
this
.
props
.
get
===
'web'
)
{
openToast
(
'success'
,
'成功'
,
'已添加定位地址'
);
openToast
(
'success'
,
'成功'
,
'已添加定位地址'
);
}
else
{
}
else
{
successToast
(
'已添加定位地址'
);
successToast
(
'已添加定位地址'
);
}
}
}
else
if
(
!
isEmpty
(
this
.
state
.
locationMsg
))
{
}
else
if
(
!
isEmpty
(
this
.
state
.
locationMsg
))
{
this
.
props
.
onChange
(
this
.
state
.
locationMsg
);
this
.
props
.
onChange
(
this
.
state
.
locationMsg
);
if
(
this
.
props
.
get
===
'web'
)
{
if
(
this
.
props
.
get
===
'web'
)
{
openToast
(
'success'
,
'成功'
,
'已添加定位地址'
);
openToast
(
'success'
,
'成功'
,
'已添加定位地址'
);
}
else
{
}
else
{
successToast
(
'已添加定位地址'
);
successToast
(
'已添加定位地址'
);
}
}
}
else
{
}
else
{
if
(
this
.
props
.
get
===
'web'
)
{
if
(
this
.
props
.
get
===
'web'
)
{
openToast
(
'error'
,
'错误'
,
'定位失败,请稍后重试'
);
openToast
(
'error'
,
'错误'
,
'定位失败,请稍后重试'
);
}
else
{
}
else
{
successToast
(
'定位失败,请稍后重试'
);
successToast
(
'定位失败,请稍后重试'
);
}
}
}
}
};
};
// 点击确定提交定位
// 点击确定提交定位
confirm
=
(
e
)
=>
{
confirm
=
e
=>
{
console
.
log
(
e
);
console
.
log
(
e
);
if
(
this
.
state
.
btn
)
{
if
(
this
.
state
.
btn
)
{
if
(
this
.
props
.
get
===
'web'
)
{
if
(
this
.
props
.
get
===
'web'
)
{
openToast
(
'error'
,
'错误'
,
'正在定位,请稍后重试'
);
openToast
(
'error'
,
'错误'
,
'正在定位,请稍后重试'
);
}
else
{
}
else
{
failToast
(
'正在定位,请稍后重试'
);
failToast
(
'正在定位,请稍后重试'
);
}
}
return
;
return
;
}
}
this
.
submitLocation
();
this
.
submitLocation
();
};
};
render
()
{
render
()
{
let
{
locationMsg
,
btn
}
=
this
.
state
;
let
{
locationMsg
,
btn
}
=
this
.
state
;
let
{
lat
,
lng
,
address
,
params
,
json
,
showLocation
}
=
this
.
props
;
let
{
lat
,
lng
,
address
,
params
,
json
,
showLocation
}
=
this
.
props
;
return
(
return
(
<
div
style=
{
{
display
:
'flex'
}
}
>
<
div
style=
{
{
display
:
'flex'
}
}
>
<
Location
<
Location
lat=
{
lat
}
lat=
{
lat
}
json=
{
json
}
json=
{
json
}
lng=
{
lng
}
lng=
{
lng
}
getLocationMsg=
{
this
.
getLocationMsg
.
bind
(
this
)
}
getLocationMsg=
{
this
.
getLocationMsg
.
bind
(
this
)
}
showMap=
{
this
.
props
.
showMap
}
showMap=
{
this
.
props
.
showMap
}
params=
{
params
}
params=
{
params
}
/>
/>
<
div
style=
{
{
display
:
showLocation
?
'block'
:
'none'
}
}
>
<
div
style=
{
{
display
:
showLocation
?
'block'
:
'none'
}
}
>
{
' '
}
{
' '
}
<
Popconfirm
<
Popconfirm
title=
{
btn
?
'正在定位中'
:
locationMsg
.
address
}
title=
{
btn
?
'正在定位中'
:
locationMsg
.
address
}
onConfirm=
{
this
.
confirm
}
onConfirm=
{
this
.
confirm
}
okText=
"提交"
okText=
"提交"
cancelText=
"取消"
>
cancelText=
"取消"
<
Button
>
disabled=
{
btn
}
<
Button
style=
{
{
margin
:
'auto'
,
width
:
this
.
props
.
width
}
}
disabled=
{
btn
}
loading=
{
this
.
state
.
loading
}
style=
{
{
margin
:
'auto'
,
width
:
this
.
props
.
width
}
}
className=
{
styles
.
btn
}
loading=
{
this
.
state
.
loading
}
type=
"primary"
>
className=
{
styles
.
btn
}
{
this
.
props
.
btnName
}
type=
"primary"
</
Button
>
>
</
Popconfirm
>
{
this
.
props
.
btnName
}
</
div
>
</
Button
>
</
div
>
</
Popconfirm
>
);
</
div
>
// return (
</
div
>
// <div style={{ paddingBottom: 49, paddingTop: 44 }}>
);
// <Nav name="签到" link/>
}
// <div id="EditAddress" className={styles.EditAddress}>
// <Location getLocationMsg={this.getLocationMsg.bind(this)}/>
// <Button onClick={this.submitLocation} className={styles.btn} type='primary'>签到</Button>
// <div style={this.state.style} className={styles.div}>
// <p><i>经纬度:</i><span>{this.state.locationMsg.lng},{this.state.locationMsg.lat}</span></p>
// <p><i>详细地址:</i><span>{this.state.locationMsg.address}</span></p>
// <p><i>最近的路口:</i><span>{this.state.locationMsg.nearestJunction}</span></p>
// <p><i>最近的路:</i><span>{this.state.locationMsg.nearestRoad}</span></p>
// <p><i>最近的POI:</i><span>{this.state.locationMsg.nearestPOI}</span></p>
// <Button onClick={this.submitLocation} className={styles.btn} type='primary'>签到</Button>
// </div>
// </div>
// </div>
// )
}
}
}
one_stop_public/tableCompon/index.jsx
浏览文件 @
118fa6c0
差异被折叠。
点击展开。
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论