bjtype.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. var bjTypeData = [{
  2. value: "1",
  3. text: "刑事案件",
  4. children: [ {
  5. value: "001",
  6. text: "盗窃",
  7. children: [ {
  8. value: "100105",
  9. text: "盗窃电动自行车"
  10. }, {
  11. value: "100199",
  12. text: "其他盗窃"
  13. }]
  14. },{
  15. value: "002",
  16. text: "抢劫",
  17. children: [ {
  18. value: "100299",
  19. text: "其他抢劫"
  20. }]
  21. },{
  22. value: "003",
  23. text: "抢夺",
  24. children: [ {
  25. value: "100399",
  26. text: "其他抢夺"
  27. }]
  28. }]
  29. },{
  30. value: "2",
  31. text: "治安案件",
  32. children: [ {
  33. value: "004",
  34. text: "盗窃",
  35. children: [ {
  36. value: "201002",
  37. text: "盗窃电动自行车"
  38. }, {
  39. value: "201005",
  40. text: "其他盗窃"
  41. },{
  42. value: "201003",
  43. text: "盗窃电动车电瓶"
  44. }]
  45. }]
  46. },{
  47. value: "3",
  48. text: "群众救助",
  49. children: [ {
  50. value: "50",
  51. text: "群众救助",
  52. children: [ {
  53. value: "-",
  54. text: "-"
  55. }]
  56. },{
  57. value: "500900",
  58. text: "其他群众救助",
  59. children: [ {
  60. value: "-",
  61. text: "-"
  62. }]
  63. }]
  64. }]