listItemSystem.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. {
  2. "viewSetting": {
  3. "html": "<table width='100%' border='0' cellpadding='5' cellspacing='0' styles='editTable'></table>"
  4. },
  5. "headSetting": {
  6. "html": "<tr styles='viewHeadNode'></tr>"
  7. },
  8. "documentSetting": {
  9. "html": "<tr styles='documentNode'></tr>",
  10. "mouseoverStyles": "documentNode_over",
  11. "action": "open"
  12. },
  13. "items": [
  14. // {
  15. // "name": "$checkbox",
  16. // "head": {
  17. // "html": "<th styles='normalThNode'></th>",
  18. // "width": "5%"
  19. // },
  20. // "content": {
  21. // "html": "<td styles='normalTdNode'></td>",
  22. // //"condition": "function(d){ return d.status==0 ? true : false }",
  23. // "value": ""
  24. // }
  25. // },
  26. {
  27. "name": "configName",
  28. "head": {
  29. "html": "<th styles='normalThNode' lable='configName'></th>",
  30. "width": "15%"
  31. },
  32. "content": {
  33. "html": "<td styles='normalTdCenterNode' item='configName'></td>",
  34. "items": {
  35. "configName" : {}
  36. }
  37. }
  38. },
  39. {
  40. "name": "configCode",
  41. "head": {
  42. "html": "<th styles='normalThNode' lable='configCode'></th>",
  43. "width": "15%"
  44. },
  45. "content": {
  46. "html": "<td styles='normalTdCenterNode' item='configCode'></td>",
  47. "items": {
  48. "configCode" : {}
  49. }
  50. }
  51. },
  52. {
  53. "name": "configValue",
  54. "head": {
  55. "html": "<th styles='normalThNode' lable='configValue'></th>",
  56. "width": "20%"
  57. },
  58. "content": {
  59. "html": "<td styles='normalTdCenterNode' item='configValue'></td>",
  60. "items": {
  61. "configValue" : {}
  62. }
  63. }
  64. },
  65. {
  66. "name": "orderNumber",
  67. "head": {
  68. "html": "<th styles='normalThNode' lable='orderNumber'></th>",
  69. "width": "10%"
  70. },
  71. "content": {
  72. "html": "<td styles='normalTdCenterNode' item='orderNumber'></td>",
  73. "items": {
  74. "orderNumber" : {}
  75. }
  76. }
  77. },
  78. {
  79. "name": "description",
  80. "head": {
  81. "html": "<th styles='normalThNode' lable='description'></th>",
  82. "width": "30%"
  83. },
  84. "content": {
  85. "html": "<td styles='normalTdCenterNode' item='description'></td>",
  86. "items": {
  87. "description" : {}
  88. }
  89. }
  90. }
  91. // {
  92. // "head": {
  93. // "html": "<th styles='normalThNode' lable='action'></th>",
  94. // "width": "10%"
  95. // },
  96. // "content": {
  97. // "html": "<td styles='normalTdCenterNode'>" +
  98. // " <span styles='documentActionNode' item='action_comfirm'></span>" +
  99. // " <span styles='documentActionNode' item='remove'></span>" +
  100. // "</td>",
  101. // "items": {
  102. // "action_edit": {
  103. // //"access": "admin",
  104. // "title": "edit",
  105. // "text": "edit",
  106. // "action": "action_edit",
  107. // "styles": "documentActionNode",
  108. // "mouseoverStyles": "documentActionNode_over",
  109. // "mousedownStyles": "documentActionNode_down"
  110. // },
  111. // "remove": {
  112. // "title": "remove",
  113. // "text": "remove",
  114. // "action": "remove",
  115. // "condition": "function( d ){ return true }",
  116. // "styles": "documentActionNode",
  117. // "mouseoverStyles": "documentActionNode_over",
  118. // "mousedownStyles": "documentActionNode_down"
  119. // }
  120. // }
  121. // }
  122. // }
  123. ]
  124. }