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.
47 lines
690 B
47 lines
690 B
Component({
|
|
data: {
|
|
},
|
|
properties: {
|
|
areaTop: {
|
|
type: Number,
|
|
value: 0
|
|
},
|
|
areaLeft: {
|
|
type: Number,
|
|
value: 0
|
|
},
|
|
areaWidth: {
|
|
type: String,
|
|
value: '100%'
|
|
},
|
|
areaHeight: {
|
|
type: String,
|
|
value: '100%'
|
|
},
|
|
buttonWidth: {
|
|
type: Number,
|
|
value: 178
|
|
},
|
|
buttonHeight: {
|
|
type: Number,
|
|
value: 178
|
|
},
|
|
buttonTop: {
|
|
type: Number,
|
|
value: 1000
|
|
},
|
|
buttonLeft: {
|
|
type: Number,
|
|
value: 560
|
|
},
|
|
imgUrl: {
|
|
type: String,
|
|
value: ''
|
|
}
|
|
},
|
|
methods: {
|
|
onClickButton () {
|
|
this.triggerEvent('movebtnCallBack')
|
|
}
|
|
}
|
|
})
|