vuecli3学习的第5天(window系统)
发布日期:2021-05-08 09:49:09 浏览次数:18 分类:技术文章

本文共 584 字,大约阅读时间需要 1 分钟。

1.高德地图稿件次检索api

在这里插入图片描述

//city 表示搜索框前边的城市//keyword 表示你搜索框中输入的字段//result 为你需要的字段AMap.plugin('AMap.Autocomplete', function(){
// 实例化Autocomplete var autoOptions = {
//city 限定城市,默认全国 city: '全国' } var autoComplete= new AMap.Autocomplete(autoOptions); autoComplete.search(keyword, function(status, result) {
// 搜索成功时,result即是对应的匹配数据 console.log(result); })})

用better-scroll实现滚动

cnpm install better-scroll --save

在你滚动的div添加

ref=“area_scroll”
然后methods方法
initScroll() {
this.scroll = new BScroll(this.$refs.area_scroll, {
click: true
});
},
将initScroll添加到你要滚动的地方

未完待续。。。

转载地址:https://blog.csdn.net/lbchenxy/article/details/101270388 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:sql server management 备份数据库
下一篇:vuecli3学习的第4天(window系统)

发表评论

最新留言

不错!
[***.144.177.141]2024年04月01日 08时26分40秒