Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
8d78c590
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看板
提交
8d78c590
编写于
6月 29, 2023
作者:
杜庆泉
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modal 测试示例补充
上级
dc6bc7bc
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
124 addition
and
16 deletion
+124
-16
pages/API/modal/modal.uvue
pages/API/modal/modal.uvue
+124
-16
未找到文件。
pages/API/modal/modal.uvue
浏览文件 @
8d78c590
<template>
<template>
<view>
<view>
<page-head :title="title"></page-head>
<page-head :title="title"></page-head>
<view class="uni-list">
<radio-group @change="radioChange">
<radio 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': ''" :value="item.value"
:checked="index === current">
{{item.name}}
</radio>
</radio-group>
</view>
<view class="uni-list">
<view class="uni-list-cell uni-list-cell-pd">
<view class="uni-list-cell-db">是否显示取消按钮</view>
<switch :checked="showCancelSelect" @change="showCancelChange"/>
</view>
<view class="uni-list-cell uni-list-cell-pd">
<view class="uni-list-cell-db">定制取消文案</view>
<switch :checked="cancelTextSelect" @change="cancelTextChange"/>
</view>
<view class="uni-list-cell uni-list-cell-pd">
<view class="uni-list-cell-db">定制确认文案</view>
<switch :checked="confirmTextSelect" @change="confirmTextChange"/>
</view>
<view class="uni-list-cell uni-list-cell-pd">
<view class="uni-list-cell-db">是否显示输入框</view>
<switch :checked="editableSelect" @change="editableChange"/>
</view>
<view class="uni-list-cell uni-list-cell-pd">
<view class="uni-list-cell-db">是否定制输入提示词</view>
<switch :checked="placeholderTextSelect" @change="placeholderTextChange"/>
</view>
</view>
<view class="uni-padding-wrap uni-common-mt">
<view class="uni-padding-wrap uni-common-mt">
<view class="uni-btn-v">
<view class="uni-btn-v">
<button class="uni-btn" type="default" @tap="modalTap">有标题的modal</button>
<button class="uni-btn" type="default" @tap="modalTap">modal测试</button>
<button class="uni-btn" type="default" @tap="noTitlemodalTap">无标题的modal</button>
</view>
</view>
<text>{{exeRet}}</text>
</view>
</view>
</view>
</view>
</template>
</template>
<script lang="ts">
<script lang="ts">
type ItemType = {
value : string,
name : string,
}
export default {
export default {
data() {
data() {
return {
return {
title: 'modal'
title: 'modal',
showCancelSelect:false,
cancelTextSelect:false,
confirmTextSelect:false,
editableSelect:false,
placeholderTextSelect:false,
exeRet:"",
items: [{
value: '标题',
name: '有标题'
},
{
value: '',
name: '无标题'
},
{
value: '超长标题测试内容,测试超过显示最大范围之后的样式-超长标题测试内容,测试超过显示最大范围之后的样式',
name: '超长标题'
}
] as ItemType[],
current: 0
}
}
},
},
methods: {
methods: {
showCancelChange: function (e : SwitchChangeEvent) {
this.showCancelSelect = e.detail.value
},
cancelTextChange: function (e : SwitchChangeEvent) {
this.cancelTextSelect = e.detail.value
},
confirmTextChange: function (e : SwitchChangeEvent) {
this.confirmTextSelect = e.detail.value
},
editableChange: function (e : SwitchChangeEvent) {
this.editableSelect = e.detail.value
},
placeholderTextChange: function (e : SwitchChangeEvent) {
this.placeholderTextSelect = e.detail.value
},
radioChange(e : RadioGroupChangeEvent) {
for (let i = 0; i < this.items.length; i++) {
if (this.items[i].value === e.detail.value) {
this.current = i;
break;
}
}
},
modalTap: function () {
modalTap: function () {
uni.showModal({
title: "弹窗标题",
let cancelTextVal = ''
content: "弹窗内容,告知当前状态、信息和解决方法,描述文字尽量控制在三行内",
let cancelColorVal = ''
showCancel: false,
if(this.cancelTextSelect){
confirmText: "确定"
cancelTextVal = "修改后的取消文本"
})
cancelColorVal = "#ff00ff"
},
}
noTitlemodalTap: function () {
uni.showModal({
let confirmTextVal = '确定'
content: "弹窗内容,告知当前状态、信息和解决方法,描述文字尽量控制在三行内",
let confirmColorVal = ''
confirmText: "确定",
if(this.confirmTextSelect){
cancelText: "取消"
confirmTextVal = "修改后的确定文本"
})
confirmColorVal = "#00ffff"
}
let placeholderTextVal = ''
let contentVal = "弹窗内容,告知当前状态、信息和解决方法,描述文字尽量控制在三行内"
if(this.placeholderTextSelect){
placeholderTextVal = "定制提示信息"
contentVal = ""
}
uni.showModal({
title: this.items[this.current].value,
editable:this.editableSelect,
placeholderText:placeholderTextVal,
content: contentVal,
showCancel: this.showCancelSelect,
cancelText:cancelTextVal,
cancelColor:cancelColorVal,
confirmText:confirmTextVal,
confirmColor:confirmColorVal,
success:function(res){
this.exeRet = JSON.stringify(res)
},
fail:function(res){
this.exeRet = JSON.stringify(res)
}
})
}
}
}
}
}
}
</script>
</script>
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录