index.js 256 B

12345678910111213141516171819
  1. Component({
  2. properties: {
  3. visible: {
  4. type: Boolean,
  5. value: false
  6. },
  7. coderList: {
  8. type: Array
  9. }
  10. },
  11. data: {
  12. selected: null
  13. },
  14. methods: {
  15. close: function () {
  16. this.triggerEvent("cancel");
  17. }
  18. }
  19. });