Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
1070f7bb
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看板
提交
1070f7bb
编写于
8月 09, 2023
作者:
DCloud-yinjiacheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
更新text示例
上级
b0d348fd
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
107 addition
and
3 deletion
+107
-3
pages.json
pages.json
+7
-1
pages/component/text/text-props.uvue
pages/component/text/text-props.uvue
+92
-0
pages/component/text/text.uvue
pages/component/text/text.uvue
+8
-2
未找到文件。
pages.json
浏览文件 @
1070f7bb
...
...
@@ -25,7 +25,13 @@
"style"
:
{
"navigationBarTitleText"
:
"text"
}
},
},
{
"path"
:
"pages/component/text/text-props"
,
"style"
:
{
"navigationBarTitleText"
:
"text-props"
}
},
{
"path"
:
"pages/component/progress/progress"
,
"style"
:
{
...
...
pages/component/text/text-props.uvue
0 → 100644
浏览文件 @
1070f7bb
<template>
<view>
<page-head :title="title"></page-head>
<view class="uni-padding-wrap uni-common-mt">
<view class="uni-title">
<text class="uni-title-text">text相关属性示例</text>
</view>
<view class="uni-title">
<text class="uni-subtitle-text">换行</text>
</view>
<view class="text-box">
<text>{{multiLineText}}</text>
</view>
<view class="uni-title">
<text class="uni-subtitle-text">截断(clip)</text>
</view>
<view class="text-box" style="height: 200rpx;">
<text class="uni-flex-item" style="text-overflow: clip;">{{multiLineText}}</text>
</view>
<view class="uni-title">
<text class="uni-subtitle-text">截断(ellipsis)</text>
</view>
<view class="text-box" style="height: 200rpx;">
<text class="uni-flex-item" style="text-overflow: ellipsis;">{{multiLineText}}</text>
</view>
<view class="uni-title">
<text class="uni-subtitle-text">selectable</text>
</view>
<view class="text-box">
<text :selectable="true">{{singleLineText}}</text>
</view>
<view class="uni-title">
<text class="uni-subtitle-text">space</text>
<text class="uni-subtitle-text">依次为nbsp ensp emsp效果</text>
</view>
<view class="text-box">
<text space="nbsp">{{singleLineText}}</text>
<text space="ensp">{{singleLineText}}</text>
<text space="emsp">{{singleLineText}}</text>
</view>
<view class="uni-title">
<text class="uni-subtitle-text">decode</text>
<text class="uni-subtitle-text">依次为lt gt amp apos nbsp ensp emsp效果</text>
</view>
<view class="text-box">
<text :decode="true">< > & '</text>
<text :decode="true">uni-app x,终极跨平台方案</text>
<text :decode="true">uni-app x,终极跨平台方案</text>
<text :decode="true">uni-app x,终极跨平台方案</text>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
title: 'text-props',
multiLineText: 'HBuilderX,轻巧、极速,极客编辑器;uni-app x,终极跨平台方案;uts,大一统语言;HBuilderX,轻巧、极速,极客编辑器;uni-app x,终极跨平台方案;uts,大一统语言',
singleLineText: 'uni-app x,终极跨平台方案'
}
},
methods: {
}
}
</script>
<style>
.text-box {
margin-bottom: 40rpx;
padding: 40rpx 0;
display: flex;
background-color: #FFFFFF;
justify-content: center;
align-items: center;
}
.text {
font-size: 30rpx;
color: #353535;
line-height: 54rpx;
text-align: center;
}
</style>
\ No newline at end of file
pages/component/text/text.uvue
浏览文件 @
1070f7bb
...
...
@@ -7,7 +7,8 @@
</view>
<view class="uni-btn-v">
<button class="uni-btn" type="primary" :disabled="!canAdd" @click="add">add line</button>
<button class="uni-btn" type="warn" :disabled="!canRemove" @click="remove">remove line</button>
<button class="uni-btn" type="warn" :disabled="!canRemove" @click="remove">remove line</button>
<button class="uni-btn" type="primary" @click="textProps">更多属性示例</button>
</view>
</view>
</view>
...
...
@@ -52,7 +53,12 @@
this.canAdd = this.extraLine.length < 12;
this.canRemove = this.extraLine.length > 0;
}
}
},
textProps: function () {
uni.navigateTo({
url: '/pages/component/text/text-props'
})
}
}
}
</script>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录