index.js 208 B

123456789101112131415161718192021
  1. var app = getApp();
  2. Component({
  3. properties: {
  4. benefit: {
  5. type: Object,
  6. value: [],
  7. }
  8. },
  9. data: {
  10. },
  11. ready: function () {
  12. },
  13. attached: function () {
  14. },
  15. methods: {
  16. }
  17. })