91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

uniapp組件uni-popup彈出層怎么用

發布時間:2022-03-31 09:02:29 來源:億速云 閱讀:3657 作者:小新 欄目:開發技術

這篇文章主要介紹了uniapp組件uni-popup彈出層怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

一、基本用法

uniapp組件uni-popup彈出層怎么用

uniapp組件uni-popup彈出層怎么用

<template>
	<view>
		<button type="primary" @click="toggle('top')">頂部彈出</button>
		<button type="primary" @click="toggle('center')">居中彈出</button>
		<button type="primary" @click="toggle('bottom')">底部彈出</button>
		<uni-popup ref="popup" :type="type" :animation="false" :maskClick="true" @change="change">
			<view >
				popup 內容,此示例沒有動畫效果
			</view>
		</uni-popup>
	</view>
</template>
 
<script>
export default {
	data() {
		return {
			type: 'top'
		};
	},
	methods: {
		toggle(type) {
			this.type = type;
			this.$refs['popup'].open();
		},
		change(e) {
			uni.showToast({
				title:'popup: ' + e.type + ' ,狀態:'+e.show
			})
		}
	}
};
</script>

二、自定義彈出層(dialog + message) 示例

uniapp組件uni-popup彈出層怎么用

uniapp組件uni-popup彈出層怎么用

<template>
	<view>
		<button  @click="toggleMessage('success')">成功</button>
		<button  @click="toggleMessage('error')">錯誤</button>
		<button  @click="toggleMessage('warn')">警告</button>
		<button  @click="toggleMessage('info')">信息</button>
		<!-- 消息提示 -->
		<uni-popup ref="popupMessage" type="message">
			<uni-popup-message :type="msgType" :message="message" :duration="700" />
		</uni-popup>
		<!-- 對話框 -->
		<uni-popup ref="popupDialog" type="dialog">
			<uni-popup-dialog :type="msgType" title="通知" content="歡迎使用 uni-popup!" :before-close="true" @confirm="dialogConfirm" @close="dialogClose" />
		</uni-popup>
	</view>
</template>
 
<script>
export default {
	data() {
		return {
			msgType: 'success',
			message: '這是一條成功消息提示'
		};
	},
	methods: {
		toggleMessage(type) {
			this.msgType = type;
			switch (type) {
				case 'success':
					this.message = '這是一條成功消息提示';
					break;
				case 'warn':
					this.message = '這是一條警告消息提示';
					break;
				case 'info':
					this.message = '這是一條消息提示';
					break;
				case 'error':
					this.message = '這是一條錯誤消息提示';
					break;
			}
			this.$refs['popupDialog'].open();
		},
		dialogConfirm() {
			this.$refs.popupMessage.open();
			
			this.$refs['popupDialog'].close();
		},
		dialogClose() {
			this.msgType = 'info';
			this.message = '點擊了對話框的取消按鈕';
			this.$refs.popupMessage.open();
			
			this.$refs.popupDialog.close();
		}
	}
};
</script>

三、提交信息 (input + 延遲關閉)

uniapp組件uni-popup彈出層怎么用

<template>
	<view>
		輸入內容:{{value}}
		<button type="primary" @click="confirmDialog">輸入對話框</button>
		<uni-popup ref="dialogInput" type="dialog">
			<uni-popup-dialog mode="input" title="輸入內容" value="對話框預置提示內容!" placeholder="請輸入內容" @confirm="dialogInputConfirm"/>
		</uni-popup>
	</view>
</template>
 
<script>
	export default {
		data() {
			return {
				msgType: 'success',
				value: '默認輸入的內容'
			}
		},
		methods: {
			confirmDialog() {
				this.$refs['dialogInput'].open()
			},
			dialogConfirm(done) {
				this.$refs['popupMessage'].open()
			},
			dialogInputConfirm( val) {
				uni.showLoading({
					title: '1秒后會關閉'
				})
				this.value = val
				setTimeout(() => {
					uni.hideLoading()
				}, 1000)
			}
		},
	}
</script>

四、底部分享示例

uniapp組件uni-popup彈出層怎么用

<template>
	<view>
		<button type="primary" @click="confirmShare">分享模版示例</button>
		<uni-popup ref="popupShare" type="share">
			<uni-popup-share title="分享到" @select="select"></uni-popup-share>
		</uni-popup>
	</view>
</template>
 
<script>
	export default {
		data() {
			return {
			}
		},
		methods: {
			confirmShare() {
				this.$refs.popupShare.open()
			},
			select(e) {
				uni.showToast({
					title: `您選擇了第${e.index+1}項:${e.item.text}`,
					icon: 'none'
				})
			}
		},
	}
</script>

感謝你能夠認真閱讀完這篇文章,希望小編分享的“uniapp組件uni-popup彈出層怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿鲁科尔沁旗| 樟树市| 七台河市| 会同县| 颍上县| 吴桥县| 保定市| 兴化市| 长泰县| 鄂温| 加查县| 开平市| 衡山县| 修水县| 青河县| 嵊泗县| 岑溪市| 彰化县| 河南省| 荆州市| 屏东市| 清流县| 商河县| 安阳县| 临泉县| 武隆县| 酒泉市| 海淀区| 两当县| 武功县| 冷水江市| 舞钢市| 调兵山市| 大埔区| 新绛县| 交口县| 门源| 兴文县| 武冈市| 甘谷县| 黑河市|