index.js 345 B

1234567891011121314151617181920
  1. // lionfish_comshop/components/singleSkuItem/index.js
  2. Component({
  3. externalClasses: ["i-class"],
  4. properties: {
  5. goodsInfo: {
  6. type: Object
  7. },
  8. status: {
  9. type: Number
  10. },
  11. orderNo: {
  12. type: String
  13. }
  14. },
  15. methods: {
  16. goodsConfirmed: function () {
  17. this.triggerEvent("goodsConfirmed");
  18. }
  19. }
  20. })