【uniapp】确认弹出框,选择确定和取消

【uniapp】确认弹出框,选择确定和取消_第1张图片

代码如下:

	  


submit(){
			let that=this
			uni.showModal({
					title: '提示:',
					content: '请确认是否要提交?',
					success: function(res) {
						if (res.confirm) {
							// console.log('确定');
					     	//TODO
						} else if (res.cancel) {
							// console.log('取消');
							//TODO
						}
					}
			});
},

你可能感兴趣的:(uniapp,uni-app)