uniapp的两种弹窗方式

uniapp的两种弹窗方式

方式一:

bash 复制代码
			// 提示存储唯一值
					// uni.showModal({
					//   title: '提示',
					//   content: this.deveiceId,
					//   success(res) {
					//     if (res.confirm) {
					//       console.log('用户点击了确定');

					//     } else if (res.cancel) {
					//       console.log('用户点击了取消');
					//     }
					//   }
					// });

方式二:

bash 复制代码
uni.showActionSheet({
  itemList: ['选择1', '选择2'], // 按钮列表
  success: function (res) {
    // res.tapIndex 是用户点击的按钮索引,0 表示第一个按钮"选择1",1 表示第二个按钮"选择2"
    if (res.tapIndex === 0) {
      console.log('用户选择了选择1');
      // 在这里处理选择1的逻辑
    } else if (res.tapIndex === 1) {
      console.log('用户选择了选择2');
      // 在这里处理选择2的逻辑
    }
  },
  fail: function (res) {
    // 用户点击了取消按钮或者关闭了弹框
    console.log('用户取消了操作');
  }
});
相关推荐
mCell18 小时前
GSAP ScrollTrigger 详解
前端·javascript·动效
gnip18 小时前
Node.js 子进程:child_process
前端·javascript
excel21 小时前
为什么在 Three.js 中平面能产生“起伏效果”?
前端
excel1 天前
Node.js 断言与测试框架示例对比
前端
天蓝色的鱼鱼1 天前
前端开发者的组件设计之痛:为什么我的组件总是难以维护?
前端·react.js
codingandsleeping1 天前
使用orval自动拉取swagger文档并生成ts接口
前端·javascript
石金龙1 天前
[译] Composition in CSS
前端·css
白水清风1 天前
微前端学习记录(qiankun、wujie、micro-app)
前端·javascript·前端工程化
Ticnix1 天前
函数封装实现Echarts多表渲染/叠加渲染
前端·echarts
用户22152044278001 天前
new、原型和原型链浅析
前端·javascript