Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
b8bc87b0
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
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看板
提交
b8bc87b0
编写于
6月 08, 2023
作者:
Y
yurj26
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: update style
上级
8e20dcc0
变更
6
显示空白变更内容
内联
并排
Showing
6 changed file
with
29 addition
and
24 deletion
+29
-24
common/uni.css
common/uni.css
+11
-4
main.uts
main.uts
+2
-4
pages/component/button/button.uvue
pages/component/button/button.uvue
+1
-2
pages/component/checkbox/checkbox.uvue
pages/component/checkbox/checkbox.uvue
+6
-5
pages/component/radio/radio.uvue
pages/component/radio/radio.uvue
+2
-1
pages/component/view/view.uvue
pages/component/view/view.uvue
+7
-8
未找到文件。
common/uni.css
浏览文件 @
b8bc87b0
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
margin-top
:
10
rpx
;
margin-top
:
10
rpx
;
font-size
:
24
rpx
;
font-size
:
24
rpx
;
color
:
#888
;
color
:
#888
;
font-weight
:
500
;
}
}
.uni-common-mb
{
.uni-common-mb
{
...
@@ -35,6 +36,7 @@
...
@@ -35,6 +36,7 @@
.uni-hello-text
{
.uni-hello-text
{
color
:
#7A7E83
;
color
:
#7A7E83
;
line-height
:
22px
;
}
}
.uni-list
{
.uni-list
{
...
@@ -42,6 +44,7 @@
...
@@ -42,6 +44,7 @@
position
:
relative
;
position
:
relative
;
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
padding-left
:
30
rpx
;
}
}
.uni-list-cell
{
.uni-list-cell
{
...
@@ -52,12 +55,16 @@
...
@@ -52,12 +55,16 @@
align-items
:
center
;
align-items
:
center
;
}
}
.uni-list-cell-line
{
border-bottom
:
1px
solid
#c8c7cc
;
}
.uni-list-cell-hover
{
.uni-list-cell-hover
{
background-color
:
#eee
;
background-color
:
#eee
;
}
}
.uni-list-cell-pd
{
.uni-list-cell-pd
{
padding
:
22
rpx
30
rpx
;
padding
:
22
rpx
30
rpx
22
rpx
0
;
}
}
.uni-list-cell-left
{
.uni-list-cell-left
{
...
...
main.uts
浏览文件 @
b8bc87b0
import App from './App'
import App from './App'
import PageHead from './components/page-head/page-head'
import ULink from './components/u-link/u-link'
import { createSSRApp } from 'vue'
import { createSSRApp } from 'vue'
export function createApp() {
export function createApp() {
const app = createSSRApp(App)
const app = createSSRApp(App)
app.component('page-head', PageHead)
app.component('u-link', ULink)
return {
return {
app
app
}
}
...
...
pages/component/button/button.uvue
浏览文件 @
b8bc87b0
...
@@ -65,8 +65,7 @@
...
@@ -65,8 +65,7 @@
}
}
.button-sp-area {
.button-sp-area {
/* margin: 0 auto; */
margin: 0 auto;
padding: 0 20%;
width: 60%;
width: 60%;
}
}
...
...
pages/component/checkbox/checkbox.uvue
浏览文件 @
b8bc87b0
...
@@ -40,7 +40,8 @@
...
@@ -40,7 +40,8 @@
</view>
</view>
<view class="uni-list">
<view class="uni-list">
<checkbox-group @change="checkboxChange">
<checkbox-group @change="checkboxChange">
<view class="uni-list-cell uni-list-cell-pd" v-for="item in items" :key="item.value">
<view class="uni-list-cell uni-list-cell-pd" v-for="(item, index) in items" :key="item.value"
:class="index < items.length - 1 ? 'uni-list-cell-line': ''">
<view>
<view>
<checkbox :value="item.value" :checked="item.checked">{{item.name}}</checkbox>
<checkbox :value="item.value" :checked="item.checked">{{item.name}}</checkbox>
</view>
</view>
...
...
pages/component/radio/radio.uvue
浏览文件 @
b8bc87b0
...
@@ -33,7 +33,8 @@
...
@@ -33,7 +33,8 @@
</view>
</view>
<view class="uni-list">
<view class="uni-list">
<radio-group @change="radioChange">
<radio-group @change="radioChange">
<view class="uni-list-cell uni-list-cell-pd" v-for="(item, index) in items" :key="item.value">
<view class="uni-list-cell uni-list-cell-pd" v-for="(item, index) in items" :key="item.value"
:class="index < items.length - 1 ? 'uni-list-cell-line': ''">
<view>
<view>
<radio :value="item.value" :checked="index === current">{{item.name}}</radio>
<radio :value="item.value" :checked="index === current">{{item.name}}</radio>
</view>
</view>
...
...
pages/component/view/view.uvue
浏览文件 @
b8bc87b0
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
<view class="uni-title uni-common-mt">
<view class="uni-title uni-common-mt">
<text class="uni-title-text">
<text class="uni-title-text">
column
flex-direction:
column
</text>
</text>
<text class="uni-subtitle-text">
<text class="uni-subtitle-text">
纵向布局
纵向布局
...
@@ -78,14 +78,14 @@
...
@@ -78,14 +78,14 @@
<view class="text-box" style="width: 200rpx;"><text class="text">固定宽度</text></view>
<view class="text-box" style="width: 200rpx;"><text class="text">固定宽度</text></view>
</view>
</view>
<view class="uni-flex uni-row" style="-webkit-flex-wrap: wrap;flex-wrap: wrap;">
<view class="uni-flex uni-row" style="-webkit-flex-wrap: wrap;flex-wrap: wrap;">
<view class="text-box" style="width:
28
0rpx;"><text class="text">一行显示不全,wrap折行</text></view>
<view class="text-box" style="width:
32
0rpx;"><text class="text">一行显示不全,wrap折行</text></view>
<view class="text-box" style="width:
28
0rpx;"><text class="text">一行显示不全,wrap折行</text></view>
<view class="text-box" style="width:
32
0rpx;"><text class="text">一行显示不全,wrap折行</text></view>
<view class="text-box" style="width:
28
0rpx;"><text class="text">一行显示不全,wrap折行</text></view>
<view class="text-box" style="width:
32
0rpx;"><text class="text">一行显示不全,wrap折行</text></view>
</view>
</view>
<view class="uni-flex uni-row">
<view class="uni-flex uni-row">
<view class="text-box"
<view class="text-box"
style="-webkit-flex: 1;flex: 1;height: 200rpx;-webkit-justify-content: center;justify-content: center;-webkit-align-items: flex-start;align-items: flex-start;">
style="-webkit-flex: 1;flex: 1;height: 200rpx;-webkit-justify-content: center;justify-content: center;-webkit-align-items: flex-start;align-items: flex-start;">
<text class="text">垂直居顶</text>
<text class="text"
style="line-height: 70rpx;"
>垂直居顶</text>
</view>
</view>
<view class="text-box"
<view class="text-box"
style="-webkit-flex: 1;flex: 1;height: 200rpx;-webkit-justify-content: center;justify-content: center;-webkit-align-items: center;align-items: center;">
style="-webkit-flex: 1;flex: 1;height: 200rpx;-webkit-justify-content: center;justify-content: center;-webkit-align-items: center;align-items: center;">
...
@@ -93,7 +93,7 @@
...
@@ -93,7 +93,7 @@
</view>
</view>
<view class="text-box"
<view class="text-box"
style="-webkit-flex: 1;flex: 1;height: 200rpx;-webkit-justify-content: center;justify-content: center;-webkit-align-items: flex-end;align-items: flex-end;">
style="-webkit-flex: 1;flex: 1;height: 200rpx;-webkit-justify-content: center;justify-content: center;-webkit-align-items: flex-end;align-items: flex-end;">
<text class="text">垂直居底</text>
<text class="text"
style="line-height: 70rpx;"
>垂直居底</text>
</view>
</view>
</view>
</view>
...
@@ -115,7 +115,7 @@
...
@@ -115,7 +115,7 @@
<view class="text-box"
<view class="text-box"
style="height: 120rpx;justify-content: start;align-items: start;padding-left: 20rpx;">
style="height: 120rpx;justify-content: start;align-items: start;padding-left: 20rpx;">
<text class="text">文字居左,留出左间距</text>
<text class="text"
style="line-height: 70rpx;"
>文字居左,留出左间距</text>
</view>
</view>
<view class="uni-flex uni-row">
<view class="uni-flex uni-row">
...
@@ -167,7 +167,6 @@
...
@@ -167,7 +167,6 @@
}
}
.text {
.text {
line-height: 70rpx;
color: #777;
color: #777;
font-size: 26rpx;
font-size: 26rpx;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录