流程改版

This commit is contained in:
17792275749
2025-05-29 08:45:04 +08:00
parent ba54f14735
commit f9c22f1da4
83 changed files with 1831 additions and 2603 deletions
@@ -0,0 +1,27 @@
const app = getApp();
import $ from "../../utils/request";
Component({
data: {
},
lifetimes: {
attached() {
},
detached() {
// 在组件实例被从页面节点树移除时执行
console.log('MyComponent detached!');
}
},
// 组件的方法
methods: {
bindOk() {
this.triggerEvent('deviceEvent', {
status: true
});
}
}
});