12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // component/fauleInfoItem/faultInfoItem.ts
- import { TimeUtil } from '../../utils/TimeUtil'
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- itemData: null
- },
- /**
- * 组件的初始数据
- */
- data: {
- myItemData: null,
- itemTime: '',
- imgArr: [],
- },
- lifetimes: {
- attached: function () {
- // 在组件实例被从页面节点树添加时执行
- //创建节点选择器
- console.log("this.properties.itemData:", this.properties.itemData)
- this.setData({
- myItemData: this.properties.itemData,
- itemTime: TimeUtil.dateFormat(parseInt(this.properties.itemData.created), "yyyy-MM-dd HH:mm"),
- })
- if (this.properties.itemData.img) {
- this.setData({
- imgArr: this.properties.itemData.img.split(',')
- })
- }
- },
- detached: function () {
- // 在组件实例被从页面节点树移除时执行
- },
- },
- /**
- * 组件的方法列表
- */
- methods: {
- }
- })
|