vuecli3学习的第5天(window系统)

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添加到你要滚动的地方

未完待续。。。

猜你喜欢

转载自blog.csdn.net/lbchenxy/article/details/101270388