vue.js提交按鈕時簡單的if判斷表示式示例

祈澈姑娘發表於2018-08-28

簡單的業務需求如下,看圖說話

1:當充值金額沒有填寫的時候,會有Toast小彈框提示“請輸入有效的充值金額”

圖片.png

if (!this.money)
                {
                    console.log('money',money);
                    Toast({
                        message: '請輸入有效的充值金額',
                        duration: 2000
                    });
                }
複製程式碼

2:當第二個框實收金額沒有填寫的時候,會有Toast小彈框提示“請輸入有效的實付金額”

圖片.png

 else if (!this.moneyReal)
                {
                    console.log('moneyReal',moneyReal);
                    Toast({
                        message: '請輸入有效的實付金額',
                        duration: 2000
                    });
                }
複製程式碼

3:當兩個輸入框都填寫的時候,會彈出一個MessageBox詢問框

圖片.png

else
                {
                    MessageBox.confirm('你確定要充值麼?', '提示').then(action => {
                    });
                }

複製程式碼

具體demo如下

<template>
	<div class="app">

		<mt-field label="充值金額" id="money" placeholder="請輸入" v-model="money" type="number"></mt-field>
		<mt-field label="實收金額" id="moneyReal" placeholder="請輸入" v-model="moneyReal" type="number"></mt-field>
		<div class="rechage">
			<button @click="chongZhiForMember">充 值</button>
		</div>
	</div>
</template>

<script>
	import { Field, MessageBox, Toast } from 'mint-ui';
	export default {
		data() {
			return {

				// 會員卡餘額
			}
		},
		methods: {

			chongZhiForMember() {
				if(!this.money) {
					console.log('money', money);
					Toast({
						message: '請輸入有效的充值金額',
						duration: 2000
					});
				} else if(!this.moneyReal) {
					console.log('moneyReal', moneyReal);
					Toast({
						message: '請輸入有效的實付金額',
						duration: 2000
					});
				} else {
					MessageBox.confirm('你確定要充值麼?', '提示').then(action => {

					});
				}
			}
		},

	}
</script>
<style scoped>
	.app {
		background: #F1F1F1;
		height: 17.78rem;
	}
	
	.rechage button {
		outline: none;
		border: none;
		height: 1rem;
		width: 3.5rem;
		font-size: 0.5rem;
		color: white;
		background: #449EF4;
		border-radius: 0.15rem;
	}
	
	.rechage {
		text-align: center;
		margin-top: 1rem
	}
</style>
複製程式碼

相關文章