uni-app
马达加斯加的灯塔
永远炙热,永远热爱
展开
-
uni-app传入地址打开地图获取定位
planningRoute.jsfunction openMapRoute(lat,lon,cityName) { var url = ''; if (plus.os.name == 'Android') { var hasBaiduMap = plus.runtime.isApplicationExist({ pname: 'com.baidu.BaiduMap', action: 'baidumap://' }); var hasAmap = plus.runtime.is原创 2021-03-01 09:55:58 · 1453 阅读 · 1 评论 -
uni-app实现列表懒加载
html中<view v-for="(item,index) in resultList" :key="index" class="item"></view><uni-load-more :status="loadStatus"></uni-load-more>vue实例中export default { data() { return { resultList: [], loadStatus: 'nomore',原创 2021-02-03 10:06:52 · 4245 阅读 · 3 评论 -
uni-app获取导航栏
const pages = getCurrentPages()const page = pages[pages.length - 1]const currentWebview = page.$getAppWebview()currentWebview.getStyle().titleNView //获取titleNView(currentWebview.getStyle().titleNView.buttons.length //获取导航栏按钮原创 2021-01-06 11:32:06 · 1292 阅读 · 0 评论 -
uni-app通过webView在原生导航栏中添加自定义按钮
// #ifdef APP-PLUS const pages = getCurrentPages() const page = pages[pages.length - 1]; const currentWebview = page.$getAppWebview() if(pages.length > 3){ currentWebview.setStyle({ titleNView:{ buttons:[{ float:'left',原创 2021-01-05 16:44:34 · 3063 阅读 · 0 评论 -
uni-app隐藏导航栏返回按钮
const webView = this.$scope.$getAppWebview() webView.setStyle({ titleNView:{ autoBackButton:false } })原创 2020-12-09 16:35:47 · 7228 阅读 · 0 评论 -
e.text的值为什么不变呢?
onNavigationBarButtonTap(e){ const webView = this.$scope.$getAppWebview() if (this.rightText == '编辑') { webView.setTitleNViewButtonStyle(0,{ text: '删除', }) this.rightText = '删除' this.show = true }else{ webView.setTitleNViewButtonSty原创 2020-11-26 09:43:56 · 111 阅读 · 0 评论 -
uni-app自定义导航栏搜索框显示接收参数
if("undefined" != typeof this.$route.query.keyword){ this.$refs['search'].show = true this.$refs['search'].searchVal = this.$route.query.keyword //自定义导航栏搜索框 }原创 2020-11-04 10:22:47 · 338 阅读 · 1 评论 -
textarea实现placeholder多行显示
<textarea placeholder="请按照顺序填写装修内容,例如:" placeholder-class="setExample" />在style中.setExample::after { content:'\A 1. \A 2. \A 3.'; line-height: 50rpx; }其中\A实现换行原创 2020-11-09 16:57:04 · 1008 阅读 · 0 评论 -
uni-app设置titleNView
搜索框const webView = this.$scope.$getAppWebview()//此对象相当于html5plus里的plus.webview.currentWebview()。在uni-app里vue页面直接使用plus.webview.currentWebview()无效,非v3编译模式使用this.$mp.page.$getAppWebview()webView.setTitleNViewSearchInputText(query.keyword) 按钮const webVie原创 2020-11-10 16:06:51 · 7788 阅读 · 0 评论