elementui表單驗證 對比兩個表單大小

2021-10-24 20:09:39 字數 670 閱讀 1047

接到需求:將輸入的血壓最大值最小值進行對比,最大值不得小於最小值。

解決方法:使用表單驗證,自己寫個函式,注意,一定要轉化成number型別,不然會出現問題。

**:

data()

else

else

else

if(value <70)

elseif(

number

(value)

>

number

(this

.dataform.high)

)else}}

// }

lethigh

=(rule,value,callback)

=>

else

else

else

if(value >

160)

elseif(

number

(value)

<

number

(this

.dataform.low)

)else}}

// }

datarule:,]

,

low:

, high:

,},

element ui表單驗證

可以在pattern中書寫正則,並且配合elementui進行表單驗證。pattern 屬性規定用於驗證輸入欄位的模式。模式指的是正規表示式。rules message 以字母開頭,長度在2 5之間,只能包含字元 數字和下劃線 password message 只能輸入6 20個字母 數字 下劃線 ...

elementUI表單驗證

elementui表單驗證非常方便,我們直奔主題 1 驗證表單中的某個字段 驗證contact欄位 this.refs.orderform.validatefield contact 驗證phone欄位 this.refs.orderform.validatefield phone 2 驗證整個表單...

element ui表單驗證 正則驗證

數字型別的驗證需要在 v model 處加上 number 的修飾符,這是 vue 自身提供的用於將繫結值轉化為 number 型別的修飾符。export default methods at position 209 resetfo refs formname resetfields const ...