东风启辰小程序端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

27 行
362B

  1. // pages/agreement/agreement.js
  2. const app = getApp()
  3. Component({
  4. /**
  5. * 组件的属性列表
  6. */
  7. properties: {
  8. },
  9. /**
  10. * 组件的初始数据
  11. */
  12. data: {
  13. imgUrl: app.globalData.urlStatic,//图片路径
  14. },
  15. /**
  16. * 组件的方法列表
  17. */
  18. methods: {
  19. closeXieyi:function(){
  20. this.triggerEvent('myevent')
  21. }
  22. },
  23. })