template_location.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "templateName":"位置管理",
  3. "directories": "property",
  4. "templateCode":"location",
  5. "templateKey":"locationId",
  6. "templateKeyName":"位置ID",
  7. "searchCode": "locationName",
  8. "searchName": "位置名称",
  9. "conditions": [
  10. {
  11. "name": "位置名称",
  12. "inputType": "input",
  13. "code": "locationName",
  14. "whereCondition": "equal"
  15. },
  16. {
  17. "name": "位置编码",
  18. "inputType": "input",
  19. "code": "locationId",
  20. "whereCondition": "equal"
  21. },
  22. {
  23. "name": "位置类型",
  24. "inputType": "select",
  25. "selectValue":"1000,2000,3000",
  26. "selectValueName":"小区,单元,房屋",
  27. "code": "locationType",
  28. "whereCondition": "equal"
  29. }
  30. ],
  31. "columns":[
  32. {
  33. "code":"locationName",
  34. "cnCode":"位置名称",
  35. "desc":"必填,请填写位置名称",
  36. "required":true,
  37. "hasDefaultValue":false,
  38. "inputType": "input",
  39. "limit":"max",
  40. "limitParam":"1,100",
  41. "limitErrInfo":"位置名称不能超过100位",
  42. "show": true
  43. },
  44. {
  45. "code": "locationType",
  46. "cnCode":"位置类型",
  47. "desc":"必填,请填写位置类型",
  48. "required":true,
  49. "hasDefaultValue":false,
  50. "inputType": "select",
  51. "selectValue":"1000,2000,3000",
  52. "selectValueName":"小区,单元,房屋",
  53. "limit":"num",
  54. "limitParam":"",
  55. "limitErrInfo":"位置类型 格式错误",
  56. "show": true
  57. }
  58. ]
  59. }