Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
34a4df98
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5999
Star
91
Fork
163
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
34a4df98
编写于
6月 21, 2023
作者:
H
hdx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: add slider switch
上级
271a4502
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
128 addition
and
18 deletion
+128
-18
App.vue
App.vue
+20
-15
pages.json
pages.json
+12
-1
pages/component/slider/slider.uvue
pages/component/slider/slider.uvue
+43
-0
pages/component/switch/switch.uvue
pages/component/switch/switch.uvue
+51
-0
pages/tabBar/component/component.uvue
pages/tabBar/component/component.uvue
+2
-2
未找到文件。
App.vue
浏览文件 @
34a4df98
<
script
>
<
script
>
export
default
{
export
default
{
onLaunch
:
function
()
{
onLaunch
:
function
()
{
console
.
log
(
'
App Launch
'
)
console
.
log
(
'
App Launch
'
)
},
onShow
:
function
()
{
// const performance: Performance = uni.getPerformance()
console
.
log
(
'
App Show
'
)
// const observer1: PerformanceObserver = performance.createObserver((entryList: PerformanceObserverEntryList) => {
},
// console.log("observer1:entryList.getEntries()" + JSON.stringify(entryList.getEntries()))
onHide
:
function
()
{
// })
console
.
log
(
'
App Hide
'
)
// observer1.observe({ entryTypes: ['render', 'navigation'] } as PerformanceObserverOptions)
}
},
}
onShow
:
function
()
{
console
.
log
(
'
App Show
'
)
},
onHide
:
function
()
{
console
.
log
(
'
App Hide
'
)
}
}
</
script
>
</
script
>
<
style
>
<
style
>
/*每个页面公共css */
/*每个页面公共css */
@import
'./common/uni.css'
;
@import
'./common/uni.css'
;
</
style
>
</
style
>
\ No newline at end of file
pages.json
浏览文件 @
34a4df98
...
@@ -36,7 +36,6 @@
...
@@ -36,7 +36,6 @@
"navigationBarTitleText"
:
"button"
"navigationBarTitleText"
:
"button"
}
}
},
},
{
{
"path"
:
"pages/component/radio/radio"
,
"path"
:
"pages/component/radio/radio"
,
"style"
:
{
"style"
:
{
...
@@ -61,6 +60,18 @@
...
@@ -61,6 +60,18 @@
"navigationBarTitleText"
:
"textarea"
"navigationBarTitleText"
:
"textarea"
}
}
},
},
{
"path"
:
"pages/component/slider/slider"
,
"style"
:
{
"navigationBarTitleText"
:
"slider"
}
},
{
"path"
:
"pages/component/switch/switch"
,
"style"
:
{
"navigationBarTitleText"
:
"switch"
}
},
{
{
"path"
:
"pages/component/image/image"
,
"path"
:
"pages/component/image/image"
,
"style"
:
{
"style"
:
{
...
...
pages/component/slider/slider.uvue
0 → 100644
浏览文件 @
34a4df98
<template>
<view class="uni-padding-wrap">
<page-head :title="title"></page-head>
<view class="uni-title">显示当前value</view>
<view>
<slider @change="sliderChange" :value="50" :show-value="true" />
</view>
<view class="uni-title">设置步进step跳动</view>
<view>
<slider @change="sliderChange" :value="60" :step="5" />
</view>
<view class="uni-title">设置最小/最大值</view>
<view>
<slider @change="sliderChange" :value="100" :min="50" :max="200" :show-value="true" />
</view>
<view class="uni-title">不同颜色和大小的滑块</view>
<view>
<slider @change="sliderChange" :value="50" backgroundColor="#000000" activeColor="#FFCC33" block-color="#8A6DE9"
:block-size="20" />
</view>
</view>
</template>
<script lang="ts">
export default {
data() {
return {
title: 'slider 滑块'
}
},
methods: {
sliderChange(e : SliderChangeEvent) {
console.log('value 发生变化:' + e.detail.value)
}
}
}
</script>
<style>
</style>
pages/component/switch/switch.uvue
0 → 100644
浏览文件 @
34a4df98
<template>
<view class="uni-padding-wrap">
<view class="uni-common-mt">
<view class="uni-title">默认样式</view>
<view class="flex-row">
<switch :checked="true" @change="switch1Change" />
<switch @change="switch2Change" />
</view>
<view class="uni-title">不同颜色和尺寸的switch</view>
<view class="flex-row">
<switch color="#FFCC33" style="transform:scale(0.7)" :checked="true" />
<switch color="#FFCC33" style="transform:scale(0.7)" />
</view>
<view class="uni-title">推荐展示样式</view>
</view>
<view class="uni-list">
<view class="uni-list-cell uni-list-cell-pd">
<view class="uni-list-cell-db">开启中</view>
<switch :checked="true" />
</view>
<view class="uni-list-cell uni-list-cell-pd">
<view class="uni-list-cell-db">关闭</view>
<switch />
</view>
</view>
</view>
</template>
<script lang="ts">
export default {
data() {
return {
title: 'switch 开关'
}
},
methods: {
switch1Change: function (e : SwitchChangeEvent) {
console.log('switch1 发生 change 事件,携带值为', e.detail.value)
},
switch2Change: function (e : SwitchChangeEvent) {
console.log('switch2 发生 change 事件,携带值为', e.detail.value)
}
}
}
</script>
<style>
.flex-row {
flex-direction: row;
}
</style>
\ No newline at end of file
pages/tabBar/component/component.uvue
浏览文件 @
34a4df98
...
@@ -122,10 +122,10 @@
...
@@ -122,10 +122,10 @@
enable: true
enable: true
}, {
}, {
name: 'slider',
name: 'slider',
enable:
fals
e
enable:
tru
e
}, {
}, {
name: 'switch',
name: 'switch',
enable:
fals
e
enable:
tru
e
}, {
}, {
name: 'textarea',
name: 'textarea',
enable: true
enable: true
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录