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.
26 lines
529 B
26 lines
529 B
7 months ago
|
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 = '第1个数大'
|
||
|
} else if (this.num1 < this.num2) {
|
||
|
str = '第2个数大'
|
||
|
} else {
|
||
|
str = '两数相等'
|
||
|
}
|
||
|
this.setData({
|
||
|
result: str
|
||
|
})
|
||
|
}
|
||
|
});
|