Requirement.js 948 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. Page({
  2. data: {
  3. objectIndex: '',//默认显示位置
  4. objectArray: [
  5. {
  6. id:0,
  7. name: '中国'
  8. },
  9. {
  10. id: 1,
  11. name: '美国'
  12. },
  13. {
  14. id: 2,
  15. name: '德国'
  16. },
  17. {
  18. id: 3,
  19. name: '法国'
  20. }
  21. ],
  22. index: 0,
  23. multiArray: [['不限','18岁', '19岁', '20岁', '21岁', '22岁'], [ '不限', '18岁', '19岁', '20岁', '21岁', '22岁']],
  24. multiIndex: [0, 0]
  25. },
  26. //json选择器:
  27. bindPickerChange: function (e) {
  28. console.log(e.target.dataset.name)
  29. console.log('picker发送选择改变,携带值为', e.detail.value)
  30. console.log(e)
  31. this.setData({
  32. objectIndex: e.detail.value
  33. })
  34. },
  35. // 多列选择器
  36. bindMultiPickerChange: function (e) {
  37. console.log('picker发送选择改变,携带值为', e.detail.value)
  38. this.setData({
  39. multiIndex: e.detail.value
  40. })
  41. },
  42. })