Files
bodyWeight/components/configureDevice_4/configureDevice_4.js
T
2025-05-29 08:45:04 +08:00

27 lines
490 B
JavaScript

const app = getApp();
import $ from "../../utils/request";
Component({
data: {
},
lifetimes: {
attached() {
},
detached() {
// 在组件实例被从页面节点树移除时执行
console.log('MyComponent detached!');
}
},
// 组件的方法
methods: {
bindOk() {
this.triggerEvent('deviceEvent', {
status: true
});
}
}
});