my-manage-goods.js 423 B

123456789101112131415161718192021222324
  1. Page({
  2. data: {
  3. value: '',
  4. result: ['a', 'b'],
  5. checked: true
  6. },
  7. onChange(e) {
  8. this.setData({
  9. value: e.detail,
  10. checked: true,
  11. });
  12. },
  13. onSearch() {
  14. Toast('搜索' + this.data.value);
  15. },
  16. onClick() {
  17. Toast('搜索' + this.data.value);
  18. },
  19. onChange_switch({ detail }) {
  20. // 需要手动对 checked 状态进行更新
  21. this.setData({ checked: detail });
  22. },
  23. });