42 lines
557 B
JavaScript
42 lines
557 B
JavaScript
// components/number-box/index.js
|
|
Component({
|
|
|
|
/**
|
|
* 组件的属性列表
|
|
*/
|
|
properties: {
|
|
value:{
|
|
type:Number,
|
|
value:0
|
|
},
|
|
disabled:{
|
|
type:Boolean,
|
|
value:false
|
|
}
|
|
},
|
|
|
|
/**
|
|
* 组件的初始数据
|
|
*/
|
|
data: {
|
|
|
|
},
|
|
|
|
/**
|
|
* 组件的方法列表
|
|
*/
|
|
methods: {
|
|
reduce(){
|
|
if(this.properties.value>1){
|
|
this.setData({
|
|
value:this.properties.value-1
|
|
})
|
|
}
|
|
},
|
|
plus(){
|
|
this.setData({
|
|
value:this.properties.value+1
|
|
})
|
|
}
|
|
}
|
|
}) |