orderproductinfo.js 475 Bytes
// src/components/order/orderproductinfo.js
Component({
  
  /**
   * 组件的属性列表
   */
  properties: {
    productInfo: Object,
    statuStr:String,
    fromPage: Number,
  },

  /**
   * 组件的初始数据
   */
  data: {
    isShowStatus: false,
  },
  lifetimes: {
    attached: function () {
      if(this.properties.fromPage == 0){
        this.setData({isShowStatus:true});
      }
    },
  },

  /**
   * 组件的方法列表
   */
  methods: {

  }
})