Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
348a9617
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5992
Star
90
Fork
162
代码
文件
提交
分支
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看板
提交
348a9617
编写于
1月 12, 2024
作者:
雪洛
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 废弃scroll-y、scroll-x
上级
344418eb
变更
26
隐藏空白更改
内联
并排
Showing
26 changed file
with
28 addition
and
31 deletion
+28
-31
pages/API/canvas/canvas.uvue
pages/API/canvas/canvas.uvue
+1
-1
pages/API/request/request.uvue
pages/API/request/request.uvue
+1
-1
pages/CSS/layout/position.uvue
pages/CSS/layout/position.uvue
+0
-3
pages/CSS/transform/rotate.uvue
pages/CSS/transform/rotate.uvue
+1
-1
pages/CSS/transform/scale.uvue
pages/CSS/transform/scale.uvue
+1
-1
pages/CSS/transform/translate.uvue
pages/CSS/transform/translate.uvue
+1
-1
pages/component/button/button.uvue
pages/component/button/button.uvue
+1
-1
pages/component/checkbox/checkbox.uvue
pages/component/checkbox/checkbox.uvue
+1
-1
pages/component/form/form.uvue
pages/component/form/form.uvue
+1
-1
pages/component/general-event/touch-event.uvue
pages/component/general-event/touch-event.uvue
+1
-1
pages/component/list-view/list-view-multiplex.uvue
pages/component/list-view/list-view-multiplex.uvue
+1
-1
pages/component/mixin-datacom/datacom.uvue
pages/component/mixin-datacom/datacom.uvue
+1
-1
pages/component/progress/progress.uvue
pages/component/progress/progress.uvue
+1
-1
pages/component/radio/radio.uvue
pages/component/radio/radio.uvue
+1
-1
pages/component/slider/slider.uvue
pages/component/slider/slider.uvue
+1
-1
pages/component/sticky-header/sticky-header.uvue
pages/component/sticky-header/sticky-header.uvue
+1
-1
pages/component/textarea/textarea.uvue
pages/component/textarea/textarea.uvue
+1
-1
pages/component/unicloud-db-contacts/edit.uvue
pages/component/unicloud-db-contacts/edit.uvue
+1
-1
pages/component/video/video.uvue
pages/component/video/video.uvue
+1
-1
pages/template/long-list/long-list.uvue
pages/template/long-list/long-list.uvue
+2
-2
pages/template/long-list2/long-list2.uvue
pages/template/long-list2/long-list2.uvue
+2
-2
pages/template/pull-zoom-image/pull-zoom-image.uvue
pages/template/pull-zoom-image/pull-zoom-image.uvue
+1
-1
pages/template/scroll-fold-nav/scroll-fold-nav.uvue
pages/template/scroll-fold-nav/scroll-fold-nav.uvue
+1
-1
pages/template/scroll-sticky/scroll-sticky.uvue
pages/template/scroll-sticky/scroll-sticky.uvue
+2
-2
pages/template/swiper-list/swiper-list.uvue
pages/template/swiper-list/swiper-list.uvue
+1
-1
pages/template/swiper-list2/swiper-list2.uvue
pages/template/swiper-list2/swiper-list2.uvue
+1
-1
未找到文件。
pages/API/canvas/canvas.uvue
浏览文件 @
348a9617
...
...
@@ -2,7 +2,7 @@
<view class="page">
<page-head :title="title"></page-head>
<canvas class="canvas-element" canvas-id="canvas" id="canvas"></canvas>
<scroll-view class="scroll-view"
:scroll-y="true"
>
<scroll-view class="scroll-view">
<view class="grid-view">
<view class="grid-item" v-for="(name, index) in names" :key="index">
<button class="canvas-drawing-button" @click="handleCanvasButton(name)">{{name}}</button>
...
...
pages/API/request/request.uvue
浏览文件 @
348a9617
...
...
@@ -12,7 +12,7 @@
<button type="primary" @click="sendRequest">发起请求</button>
</view>
</view>
<scroll-view style="flex: 1;" show-scrollbar="true"
:scroll-y="true"
>
<scroll-view style="flex: 1;" show-scrollbar="true">
<view style="padding: 20rpx;">
<text>设置请求方式</text>
<view class="uni-common-pb"></view>
...
...
pages/CSS/layout/position.uvue
浏览文件 @
348a9617
...
...
@@ -7,7 +7,6 @@
<text>position: relative</text>
<scroll-view
style="width: 500rpx; height: 500rpx; background-color: gray"
scroll-y="true"
>
<view
style="width: 100rpx; height: 100rpx; background-color: red"
...
...
@@ -43,7 +42,6 @@
<text>position: absolute</text>
<scroll-view
style="width: 500rpx; height: 500rpx; background-color: gray"
scroll-y="true"
>
<view
style="width: 100rpx; height: 100rpx; background-color: red"
...
...
@@ -79,7 +77,6 @@
<text>position: fixed</text>
<scroll-view
style="width: 500rpx; height: 500rpx; background-color: gray"
scroll-y="true"
>
<view
style="width: 100rpx; height: 100rpx; background-color: red"
...
...
pages/CSS/transform/rotate.uvue
浏览文件 @
348a9617
<template>
<scroll-view class="page"
scroll-y="true"
>
<scroll-view class="page">
<view class="trace">
<view class="base reserve">
...
...
pages/CSS/transform/scale.uvue
浏览文件 @
348a9617
<template>
<scroll-view class="page"
scroll-y="true"
>
<scroll-view class="page">
<view class="trace">
<view class="base reserve">
<text class="reserve-text">scaleX(0.6)</text>
...
...
pages/CSS/transform/translate.uvue
浏览文件 @
348a9617
<template>
<scroll-view class="page"
scroll-y="true"
>
<scroll-view class="page">
<view class="trace">
<view class="base reserve">
<text class="reserve-text">translateX(80%)</text>
...
...
pages/component/button/button.uvue
浏览文件 @
348a9617
...
...
@@ -45,7 +45,7 @@
{{ text }}
</button>
</view>
<scroll-view style="flex: 1"
:scroll-y="true"
>
<scroll-view style="flex: 1">
<view class="content">
<boolean-data :defaultValue="false" title="按钮是否镂空,背景色透明" @change="change_plain_boolean"></boolean-data>
<boolean-data :defaultValue="false" title="是否禁用" @change="change_disabled_boolean"></boolean-data>
...
...
pages/component/checkbox/checkbox.uvue
浏览文件 @
348a9617
...
...
@@ -114,7 +114,7 @@ export default {
>
</view>
<scroll-view style="flex: 1"
:scroll-y="true"
>
<scroll-view style="flex: 1">
<view class="content">
<page-head title="组件属性"></page-head>
<boolean-data
...
...
pages/component/form/form.uvue
浏览文件 @
348a9617
<template>
<!-- #ifdef APP -->
<scroll-view class="scroll-view"
:scroll-y="true"
>
<scroll-view class="scroll-view">
<!-- #endif -->
<view class="page">
<form @submit="onFormSubmit" @reset="onFormReset">
...
...
pages/component/general-event/touch-event.uvue
浏览文件 @
348a9617
<template>
<scroll-view style="flex: 1"
:scroll-y="true"
>
<scroll-view style="flex: 1">
<page-head title="拖拽图标测试相关事件"></page-head>
<view class="container">
<view class="view-box">
...
...
pages/component/list-view/list-view-multiplex.uvue
浏览文件 @
348a9617
<template>
<scroll-view
scroll-x="true
" style="flex-direction: row;">
<scroll-view
direction="horizontal
" style="flex-direction: row;">
<button class="button_item" @click="delayShow">测试延时显示</button>
</scroll-view>
<list-view v-show="list_show" id="listview" style="flex: 1;" show-scrollbar=false @scrolltolower="onScrollTolower">
...
...
pages/component/mixin-datacom/datacom.uvue
浏览文件 @
348a9617
...
...
@@ -7,7 +7,7 @@
<view v-else="mixinDatacomResData.length>0">
<!-- 需要自行处理数据及相关UI展现 -->
<!-- {{mixinDatacomResData}} -->
<list-view class="list-view"
:scroll-y="true"
>
<list-view class="list-view">
<list-item class="list-item" v-for="(item, _) in mixinDatacomResData">
<text>{{item}}</text>
</list-item>
...
...
pages/component/progress/progress.uvue
浏览文件 @
348a9617
...
...
@@ -73,7 +73,7 @@ export default {
</progress>
</view>
<scroll-view style="flex: 1"
:scroll-y="true"
>
<scroll-view style="flex: 1">
<view class="content">
<page-head title="组件属性"></page-head>
<boolean-data
...
...
pages/component/radio/radio.uvue
浏览文件 @
348a9617
...
...
@@ -107,7 +107,7 @@ export default {
</radio>
</view>
<scroll-view style="flex: 1"
:scroll-y="true"
>
<scroll-view style="flex: 1">
<view class="content">
<page-head title="组件属性"></page-head>
<boolean-data
...
...
pages/component/slider/slider.uvue
浏览文件 @
348a9617
...
...
@@ -97,7 +97,7 @@
@changing="slider_changing" style="width: 90%"><text>uni-app-x</text></slider>
</view>
<scroll-view style="flex: 1"
:scroll-y="true"
>
<scroll-view style="flex: 1">
<view class="content">
<page-head title="组件属性"></page-head>
<boolean-data :defaultValue="false" title="是否显示当前 value" @change="change_show_value_boolean"></boolean-data>
...
...
pages/component/sticky-header/sticky-header.uvue
浏览文件 @
348a9617
...
...
@@ -13,7 +13,7 @@
<text class="text">向上滑动页面,体验sticky-header吸顶效果。</text>
</list-item>
<sticky-header>
<scroll-view style="background-color: #f5f5f5; flex-direction: row;"
:scroll-x="true" :scroll-y="false
" :show-scrollbar="false">
<scroll-view style="background-color: #f5f5f5; flex-direction: row;"
direction="horizontal
" :show-scrollbar="false">
<view class="flex-row" style="align-self: flex-start; flex-direction: row;">
<text ref="swipertab" class="sift-item"
v-for="(name,index) in sift_item" @click="clickTH(index)">
...
...
pages/component/textarea/textarea.uvue
浏览文件 @
348a9617
...
...
@@ -46,7 +46,7 @@ export default {
</script>
<template>
<scroll-view style="flex: 1"
:scroll-y="true"
>
<scroll-view style="flex: 1">
<view class="main">
<textarea
:value="default_value"
...
...
pages/component/unicloud-db-contacts/edit.uvue
浏览文件 @
348a9617
<template>
<scroll-view class="scroll-view"
:scroll-y="true"
>
<scroll-view class="scroll-view">
<unicloud-db ref="udb" v-slot:default="{data, loading, error}" :collection="collection" :where="where"
page-data="replace">
<view v-if="error!=null" class="error">{{error.errMsg}}</view>
...
...
pages/component/video/video.uvue
浏览文件 @
348a9617
...
...
@@ -11,7 +11,7 @@
@ended="onEnded" @timeupdate="onTimeUpdate" @waiting="onWaiting" @error="onError" @progress="onProgress"
@fullscreenclick="onFullScreenClick" @controlstoggle="onControlsToggle" @fullscreenchange="onFullScreenChange">
</video>
<scroll-view class="uni-padding-wrap uni-common-mt uni-flex-item"
:scroll-y="true"
>
<scroll-view class="uni-padding-wrap uni-common-mt uni-flex-item">
<view class="uni-btn-v">
<navigator url="/pages/component/video/video-format">
<button type="primary">视频格式示例</button>
...
...
pages/template/long-list/long-list.uvue
浏览文件 @
348a9617
<template>
<scroll-view ref="pageScrollView" class="page" :
scroll-y="true" :
rebound="false"
<scroll-view ref="pageScrollView" class="page" :rebound="false"
@startnestedscroll="onStartNestedScroll" @nestedprescroll="onNestedPreScroll">
<view ref="header" class="search-bar">
<input placeholder="搜索..." />
</view>
<view class="swiper-list">
<scroll-view ref="tabScroll" class="swiper-tabs"
:scroll-x="true
" :show-scrollbar="false">
<scroll-view ref="tabScroll" class="swiper-tabs"
direction="horizontal
" :show-scrollbar="false">
<view class="flex-row" style="align-self: flex-start;">
<text ref="swipertab" class="swiper-tabs-item" :class="swiperIndex==index ? 'swiper-tabs-item-active' : ''"
v-for="(item, index) in swiperList" :key="index" @click="onTabClick(index)">
...
...
pages/template/long-list2/long-list2.uvue
浏览文件 @
348a9617
<template>
<scroll-view ref="pageScrollView" class="page" :
scroll-y="true" :
rebound="false"
<scroll-view ref="pageScrollView" class="page" :rebound="false"
@startnestedscroll="onStartNestedScroll" @nestedprescroll="onNestedPreScroll"
:nested-scroll-child="nestedScrollChildId"
>
...
...
@@ -10,7 +10,7 @@
</swiper-item>
</swiper>
<view class="swiper-list">
<scroll-view ref="tabScroll" class="swiper-tabs"
:scroll-x="true
" :show-scrollbar="false">
<scroll-view ref="tabScroll" class="swiper-tabs"
direction="horizontal
" :show-scrollbar="false">
<view class="flex-row" style="align-self: flex-start;">
<text ref="swipertab" class="swiper-tabs-item" :class="swiperIndex==index ? 'swiper-tabs-item-active' : ''"
v-for="(item, index) in swiperList" :key="index" @click="onTabClick(index)">
...
...
pages/template/pull-zoom-image/pull-zoom-image.uvue
浏览文件 @
348a9617
...
...
@@ -2,7 +2,7 @@
<view @click="back" class="nav-back">
<image class="back-img" src="/static/template/pull-zoom-image/back.png" mode="widthFix"></image>
</view>
<scroll-view
:scroll-y="true"
style="flex:1;" :refresher-enabled="true"
<scroll-view style="flex:1;" :refresher-enabled="true"
refresher-default-style="none" @refresherpulling="onRefresherpulling"
:refresher-threshold="300" :refresher-max-drag-distance="299"
@scroll="onScroll" :rebound="false"
...
...
pages/template/scroll-fold-nav/scroll-fold-nav.uvue
浏览文件 @
348a9617
<template>
<scroll-view
:scroll-y="true"
@scroll="onScroll" class="scroll-view" rebound="false">
<scroll-view @scroll="onScroll" class="scroll-view" rebound="false">
<view class="height-seat" style="height: 125px;">
<!-- 垫高专用 -->
</view>
...
...
pages/template/scroll-sticky/scroll-sticky.uvue
浏览文件 @
348a9617
<template>
<scroll-view
:scroll-y="true"
@scroll="onScroll" class="page" rebound="false">
<scroll-view @scroll="onScroll" class="page" rebound="false">
<view class="content-item">
<text class="text">向上滑动页面,体验元素吸顶效果。</text>
</view>
...
...
@@ -123,4 +123,4 @@
padding: 5px 8px;
border-radius: 100px;
}
</style>
\ No newline at end of file
</style>
pages/template/swiper-list/swiper-list.uvue
浏览文件 @
348a9617
<template>
<view class="swiper-list">
<scroll-view ref="tabScroll" class="swiper-tabs"
:scroll-x="true
" :show-scrollbar="false">
<scroll-view ref="tabScroll" class="swiper-tabs"
direction="horizontal
" :show-scrollbar="false">
<view class="flex-row">
<text ref="swipertab" class="swiper-tabs-item" :class="swiperIndex==index ? 'swiper-tabs-item-active' : ''"
v-for="(item, index) in swiperList" :key="index" @click="onTabClick(index)">
...
...
pages/template/swiper-list2/swiper-list2.uvue
浏览文件 @
348a9617
<template>
<view class="swiper-list">
<scroll-view ref="tabScroll" class="swiper-tabs"
:scroll-x="true
" :show-scrollbar="false">
<scroll-view ref="tabScroll" class="swiper-tabs"
direction="horizontal
" :show-scrollbar="false">
<view class="flex-row" style="align-self: flex-start;">
<text ref="swipertab" class="swiper-tabs-item" :class="swiperIndex==index ? 'swiper-tabs-item-active' : ''"
v-for="(item, index) in swiperList" :key="index" @click="onTabClick(index)">
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录