提交 118fa6c0 authored 作者: 钟是志's avatar 钟是志

定位组件修改

上级 f977297f
...@@ -27,7 +27,7 @@ export default class location extends Component { ...@@ -27,7 +27,7 @@ export default class location extends Component {
componentDidMount = () => {}; componentDidMount = () => {};
//在组件从 DOM 中移除的时候立刻被调用。 //在组件从 DOM 中移除的时候立刻被调用。
componentWillUnmount = () => {}; componentWillUnmount = () => {};
getLocationMsg = (locationMsg) => { getLocationMsg = locationMsg => {
console.log(locationMsg); console.log(locationMsg);
//如果不为空的话显示提示 //如果不为空的话显示提示
this.setState({ loading: true }, () => { this.setState({ loading: true }, () => {
...@@ -75,7 +75,7 @@ export default class location extends Component { ...@@ -75,7 +75,7 @@ export default class location extends Component {
} }
}; };
// 点击确定提交定位 // 点击确定提交定位
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') {
...@@ -107,36 +107,20 @@ export default class location extends Component { ...@@ -107,36 +107,20 @@ export default class location extends Component {
title={btn ? '正在定位中' : locationMsg.address} title={btn ? '正在定位中' : locationMsg.address}
onConfirm={this.confirm} onConfirm={this.confirm}
okText="提交" okText="提交"
cancelText="取消"> cancelText="取消"
>
<Button <Button
disabled={btn} disabled={btn}
style={{ margin: 'auto', width: this.props.width }} style={{ margin: 'auto', width: this.props.width }}
loading={this.state.loading} loading={this.state.loading}
className={styles.btn} className={styles.btn}
type="primary"> type="primary"
>
{this.props.btnName} {this.props.btnName}
</Button> </Button>
</Popconfirm> </Popconfirm>
</div> </div>
</div> </div>
); );
// return (
// <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>
// )
} }
} }
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论