Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
43db919d
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
6100
Star
97
Fork
167
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
43db919d
编写于
1月 26, 2024
作者:
DCloud-yyl
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dev' into alpha
上级
f7de525f
3e5dc43e
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
37 addition
and
39 deletion
+37
-39
pages/API/get-location/get-location.uvue
pages/API/get-location/get-location.uvue
+1
-1
pages/component/list-view/list-view-multiplex-input.uvue
pages/component/list-view/list-view-multiplex-input.uvue
+1
-1
pages/component/scroll-view/scroll-view-refresher.uvue
pages/component/scroll-view/scroll-view-refresher.uvue
+1
-1
pages/template/custom-refresher/custom-refresher.uvue
pages/template/custom-refresher/custom-refresher.uvue
+34
-36
未找到文件。
pages/API/get-location/get-location.uvue
浏览文件 @
43db919d
...
...
@@ -2,7 +2,7 @@
<page-head :title="title"></page-head>
<view style="padding: 4px;">
<text class="hello-text">
真机运行标准基座仅包含系统定位,即system
。\n
定位功能默认调用操作系统定位API实现
。\n
部分手机因gms兼容不好可能导致无法定位。\n
gcj国标、逆地理信息等功能需三方sdk定位。如果需要类似能力可以下载腾讯定位插件,打包自定义基座。参考示例:</text>
<u-link :href="'https://ext.dcloud.net.cn/plugin?id=14569'" :text="'https://ext.dcloud.net.cn/plugin?id=14569'" :inWhiteList="true"></u-link>
...
...
pages/component/list-view/list-view-multiplex-input.uvue
浏览文件 @
43db919d
...
...
@@ -5,7 +5,7 @@
<list-view v-show="list_show" id="listview" style="flex: 1;" show-scrollbar=false @scrolltolower="onScrollTolower">
<list-item v-for="index in item_count" class="item" @click="itemClick(index)">
<text >item-------<text>{{index}}</text></text>
<input :placeholder="index" :value= "index ==1 ? `第一个` :index "/>
<input
style="border-width: 1px; border-style: solid;"
:placeholder="index" :value= "index ==1 ? `第一个` :index "/>
</list-item>
</list-view>
</template>
...
...
pages/component/scroll-view/scroll-view-refresher.uvue
浏览文件 @
43db919d
...
...
@@ -19,7 +19,7 @@
scrollData: [] as Array<string>,
refresherTriggered: false,
refresherrefresh: false,
showScrollbar:
tru
e
showScrollbar:
fals
e
};
},
onLoad() {
...
...
pages/template/custom-refresher/custom-refresher.uvue
浏览文件 @
43db919d
<template>
<view style="flex: 1;">
<scroll-view class="scroll-view"
:refresher-enabled="true" :refresher-triggered="refresherTriggered" refresher-default-style="none"
@refresherpulling="onRefresherpulling"
@refresherrefresh="onRefresherrefresh"
:refresher-threshold="refresherThreshold"
>
<view v-for="i in 20" class="content-item">
<text class="text">item-{{i}}</text>
</view>
<refresh-box slot="refresher" :state="state" :pullingDistance="pullingDistance"></refresh-box>
</scroll-view>
</view>
<scroll-view class="scroll-view"
:refresher-enabled="true" :refresher-triggered="refresherTriggered" refresher-default-style="none"
@refresherpulling="onRefresherpulling"
@refresherrefresh="onRefresherrefresh"
:refresher-threshold="refresherThreshold"
>
<view v-for="i in 20" class="content-item">
<text class="text">item-{{i}}</text>
</view>
<refresh-box slot="refresher" :state="state" :pullingDistance="pullingDistance"></refresh-box>
</scroll-view>
</template>
<script>
...
...
@@ -23,14 +21,14 @@
refresherTriggered:false,
refresherThreshold:40,
pullingDistance:0,
resetting: false
resetting: false
}
},
computed:{
state():number{
if (this.resetting) {
return 3;
}
if (this.resetting) {
return 3;
}
if(this.refresherTriggered){
return 2
}
...
...
@@ -45,9 +43,9 @@
onRefresherpulling(e:RefresherEvent){
// console.log('onRefresherpulling',e.detail.dy)
this.pullingDistance = e.detail.dy
if (this.pullingDistance.toDouble() == 0.0) {
this.resetting = false;
}
if (this.pullingDistance.toDouble() == 0.0) {
this.resetting = false;
}
},
onRefresherrefresh(){
this.refresherTriggered = true
...
...
@@ -66,23 +64,23 @@
</script>
<style>
.scroll-view {
flex: 1;
padding: 5px 15px;
background-color: #f5f5f5;
}
.scroll-view {
flex: 1;
padding: 5px 15px;
background-color: #f5f5f5;
}
.content-item {
padding: 15px;
margin: 5px 0;
background-color: #fff;
border-radius: 5px;
}
.content-item {
padding: 15px;
margin: 5px 0;
background-color: #fff;
border-radius: 5px;
}
.text {
font-size: 14px;
color: #666;
line-height: 20px;
}
.text {
font-size: 14px;
color: #666;
line-height: 20px;
}
</style>
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录