tongue-analysis.ts 425 B

12345678910111213141516
  1. import PageContainerBehavior from "../../../../core/behavior/page-container.behavior";
  2. // module/health/pages/tongue-analysis/tongue-analysis.ts
  3. Component({
  4. behaviors: [PageContainerBehavior],
  5. lifetimes: {
  6. attached() {
  7. this.getOpenerEventChannel().on('load', (data) => { this.setData(data); });
  8. }
  9. },
  10. properties: {},
  11. data: {
  12. title: '异常分析',
  13. dataset: [] as AnyArray,
  14. },
  15. methods: {}
  16. })