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.
27 lines
528 B
27 lines
528 B
// index.js
|
|
Page({
|
|
data: {
|
|
result: ''
|
|
},
|
|
num1: 0, // 保存第1个数字
|
|
num2: 0, // 保存第2个数字
|
|
num1Input: function (e) {
|
|
this.num1 = Number(e.detail.value)
|
|
},
|
|
num2Input: function (e) {
|
|
this.num2 = Number(e.detail.value)
|
|
},
|
|
compare: function () {
|
|
var str = ''
|
|
if (this.num1 > this.num2) {
|
|
str = '第1个数大'
|
|
} else if (this.num1 < this.num2) {
|
|
str = '第2个数大'
|
|
} else {
|
|
str = '两数相等'
|
|
}
|
|
this.setData({
|
|
result: str
|
|
})
|
|
}
|
|
}) |