C端小程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

29 行
409 B

  1. // component/FMAllLayerControl/FMAllLayerControl.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. allLayer: {
  8. type: Boolean,
  9. }
  10. },
  11. /**
  12. * 组件的初始数据
  13. */
  14. data: {
  15. btnUrl: './image/',
  16. },
  17. /**
  18. * 组件的方法列表
  19. */
  20. methods: {
  21. // 切换单多层
  22. switchLayers: function () {
  23. this.triggerEvent('switchLayers');
  24. },
  25. }
  26. })