C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 regels
542 B

  1. const Http = require("../../utils/HttpBasics");
  2. var config = require("../../config/config.js");
  3. Component({
  4. properties: {
  5. questionnaire: {
  6. type: Object,
  7. value: {}
  8. }
  9. },
  10. data: {
  11. flag: false,
  12. },
  13. methods:{
  14. close:function(){
  15. this.setData({ flag: true })
  16. }
  17. },
  18. onReady: function () {
  19. console.log(this.questionnaire, 999999999)
  20. },
  21. onLoad: function (options) {
  22. console.log(this.questionnaire, 999999999)
  23. },
  24. onShow: function () {
  25. console.log(this.questionnaire, 999999999)
  26. }
  27. });