31 lines
408 B
JavaScript
31 lines
408 B
JavaScript
// components/verifyfailed/verifyfailed.js
|
|
Component({
|
|
|
|
/**
|
|
* Component properties
|
|
*/
|
|
properties: {
|
|
|
|
},
|
|
|
|
/**
|
|
* Component initial data
|
|
*/
|
|
data: {
|
|
|
|
},
|
|
|
|
/**
|
|
* Component methods
|
|
*/
|
|
methods: {
|
|
show_service() {
|
|
this.triggerEvent('service', {}, {});
|
|
},
|
|
go_back() {
|
|
this.triggerEvent('back', {}, {});
|
|
},
|
|
|
|
}
|
|
})
|