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

123456789101112131415161718
  1. // var plugin = requirePlugin("issuer-plugin");
  2. Page({
  3. data: {
  4. items: [],
  5. currentItem: 0
  6. },
  7. onLoad: function () {
  8. // plugin.sayHello();
  9. // var world = plugin.answer;
  10. },
  11. addItem: function () {
  12. this.data.items.push(this.data.currentItem++);
  13. this.setData({
  14. items: this.data.items,
  15. currentItem: this.data.currentItem
  16. });
  17. }
  18. });