parent
2b177a82be
commit
5ee02aee19
@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Eslint config file
|
||||
* Documentation: https://eslint.org/docs/user-guide/configuring/
|
||||
* Install the Eslint extension before using this feature.
|
||||
*/
|
||||
module.exports = {
|
||||
env: {
|
||||
es6: true,
|
||||
browser: true,
|
||||
node: true,
|
||||
},
|
||||
ecmaFeatures: {
|
||||
modules: true,
|
||||
},
|
||||
parserOptions: {
|
||||
ecmaVersion: 2018,
|
||||
sourceType: 'module',
|
||||
},
|
||||
globals: {
|
||||
wx: true,
|
||||
App: true,
|
||||
Page: true,
|
||||
getCurrentPages: true,
|
||||
getApp: true,
|
||||
Component: true,
|
||||
requirePlugin: true,
|
||||
requireMiniProgram: true,
|
||||
},
|
||||
// extends: 'eslint:recommended',
|
||||
rules: {},
|
||||
}
|
After Width: | Height: | Size: 113 KiB |
@ -0,0 +1,8 @@
|
||||
{
|
||||
"pages": [
|
||||
"pages/index/index"
|
||||
],
|
||||
"window": {
|
||||
"navigationBarTextStyle": "white"
|
||||
}
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
/**app.wxss**/
|
||||
.container {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 200rpx 0;
|
||||
box-sizing: border-box;
|
||||
}
|
@ -0,0 +1 @@
|
||||
Subproject commit 2b177a82beefa947c4fb19c3105fb07183241a0e
|
@ -0,0 +1,26 @@
|
||||
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
|
||||
})
|
||||
}
|
||||
});
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"navigationBarTitleText": "比较数字大小"
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
/**index.wxss**/
|
||||
view {
|
||||
margin: 50rpx;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 600rpx;
|
||||
margin-top: 20rpx;
|
||||
border-bottom: 2rpx solid #ccc;
|
||||
}
|
||||
|
||||
button {
|
||||
margin: 50rpx;
|
||||
}
|
||||
|
||||
button {
|
||||
color: #fff;
|
||||
background: #369;
|
||||
letter-spacing: 12rpx;
|
||||
}
|
||||
|
@ -0,0 +1,7 @@
|
||||
{
|
||||
"desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
|
||||
"rules": [{
|
||||
"action": "allow",
|
||||
"page": "*"
|
||||
}]
|
||||
}
|
Loading…
Reference in new issue