index.js 202 B

12345678910111213141516
  1. // components/goodList/index.js
  2. Component({
  3. properties: {
  4. status: {
  5. type: String,
  6. value: 0,
  7. },
  8. bastList: {
  9. type: Object,
  10. value: [],
  11. }
  12. },
  13. data: {
  14. }
  15. })