chat-record.ts 416 B

1234567891011121314151617181920212223242526
  1. // module/health/components/chat-record/chat-record.ts
  2. Component({
  3. behaviors: ["wx://form-field-group"],
  4. lifetimes: {
  5. attached() {
  6. },
  7. },
  8. methods: {
  9. // 更多记录
  10. onMore() {
  11. wx.navigateTo({
  12. url: "/module/chats/pages/consultation-record/consultation-record",
  13. });
  14. },
  15. },
  16. properties: {},
  17. /**
  18. * 组件的初始数据
  19. */
  20. data: {
  21. },
  22. observers: {},
  23. });