faultInfoItem.ts 950 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // component/fauleInfoItem/faultInfoItem.ts
  2. import { TimeUtil } from '../../utils/TimeUtil'
  3. Component({
  4. /**
  5. * 组件的属性列表
  6. */
  7. properties: {
  8. itemData: null
  9. },
  10. /**
  11. * 组件的初始数据
  12. */
  13. data: {
  14. myItemData: null,
  15. itemTime: ''
  16. },
  17. lifetimes: {
  18. attached: function () {
  19. // 在组件实例被从页面节点树添加时执行
  20. //创建节点选择器
  21. console.log("this.properties.itemData:", this.properties.itemData)
  22. this.setData({
  23. myItemData: this.properties.itemData,
  24. itemTime: TimeUtil.dateFormat(parseInt(this.properties.itemData.created), "yyyy-MM-dd HH:mm"),
  25. })
  26. },
  27. detached: function () {
  28. // 在组件实例被从页面节点树移除时执行
  29. },
  30. },
  31. /**
  32. * 组件的方法列表
  33. */
  34. methods: {
  35. }
  36. })