You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
537 B

Page({
num1: 0,// 保存第一个数字
num2: 0,//保存第二个数字
num1Input: function (e) {
this.num1 = Number(e.detail.value)
},
num2Input: function (e) {
this.num2 = Number(e.detail.value)
},
data: {
result: ''
},
compare: function () {
var str = ''
if (this.num1 > this.num2) {
str = '第一个数大'
} else if (this.num1 < this.num2) {
str = '第二个数大'
} else {
str = '两数相等'
}
this.setData(
{
result: str
}
)
}
})