detailsPage.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. {
  2. "headerAlign": "center",
  3. "align": "center",
  4. "border": true,
  5. "index": true,
  6. "lazy": true,
  7. "tip": false,
  8. "searchShow": false,
  9. "searchMenuSpan": 6,
  10. "addBtn": false,
  11. "viewBtn": false,
  12. "editBtn": false,
  13. "delBtn": false,
  14. "selection": true,
  15. "refreshBtn": false,
  16. "menuWidth": 220,
  17. "showSummary": true,
  18. "summaryText": "合计",
  19. "sumColumnList": [
  20. {
  21. "name": "amount",
  22. "type": "sum"
  23. },
  24. {
  25. "name": "serviceCharge",
  26. "type": "sum"
  27. },
  28. {
  29. "name": "matMoney",
  30. "type": "sum"
  31. }
  32. ],
  33. "column": [
  34. {
  35. "label": "状态",
  36. "prop": "strStatus"
  37. },
  38. {
  39. "label": "服务项目",
  40. "prop": "pname",
  41. "width": 120
  42. },
  43. {
  44. "label": "收费建议",
  45. "prop": "remarks",
  46. "width": 150
  47. },
  48. {
  49. "label": "承做人",
  50. "prop": "userid",
  51. "slot": true,
  52. "width": 180
  53. },
  54. {
  55. "label": "任务部门",
  56. "prop": "deptid",
  57. "type":"tree",
  58. "dicUrl": "/api/blade-system/dept/tree?tenantId=096359",
  59. "props": {
  60. "label": "title",
  61. "value": "value"
  62. },
  63. "cell": true,
  64. "slot": true,
  65. "width": 150,
  66. "rules": [
  67. {
  68. "required": true,
  69. "message": " ",
  70. "trigger": "blur"
  71. }
  72. ]
  73. },
  74. {
  75. "label": "单价",
  76. "prop": "price",
  77. "width": 120,
  78. "cell": true
  79. },
  80. {
  81. "label": "计价单位",
  82. "prop": "unit",
  83. "width": 120,
  84. "cell": true
  85. },
  86. {
  87. "label": "数量",
  88. "prop": "quantity",
  89. "width": 120,
  90. "cell": true
  91. },
  92. {
  93. "label": "合计金额",
  94. "prop": "amount",
  95. "width": 120,
  96. "rules": [
  97. {
  98. "required": true,
  99. "message": " ",
  100. "trigger": "blur"
  101. }
  102. ]
  103. },
  104. {
  105. "label": "服务费",
  106. "prop": "serviceCharge",
  107. "width": 120
  108. },
  109. {
  110. "label": "代垫费",
  111. "prop": "matMoney",
  112. "width": 120
  113. },
  114. {
  115. "label": "频率",
  116. "prop": "frequency",
  117. "type": "select",
  118. "dicUrl": "/api/blade-system/dict-biz/dictionary?code=frequency",
  119. "props": {
  120. "label": "dictValue",
  121. "value": "dictKey"
  122. },
  123. "width": 120,
  124. "cell": true
  125. },
  126. {
  127. "label": "提醒日",
  128. "prop": "reminderDay",
  129. "valueFormat": "yyyy-MM-dd HH:mm:ss",
  130. "format": "yyyy-MM-dd",
  131. "type": "date",
  132. "width": 150,
  133. "cell": true
  134. },
  135. {
  136. "label": "需求开始日期",
  137. "prop": "beginTime",
  138. "valueFormat": "yyyy-MM-dd HH:mm:ss",
  139. "format": "yyyy-MM-dd",
  140. "type": "date",
  141. "width": 150,
  142. "cell": true
  143. },
  144. {
  145. "label": "需求完成日期",
  146. "prop": "actualDate",
  147. "valueFormat": "yyyy-MM-dd HH:mm:ss",
  148. "format": "yyyy-MM-dd",
  149. "type": "date",
  150. "width": 150,
  151. "cell": true
  152. },
  153. {
  154. "label": "制单人",
  155. "prop": "createUserName",
  156. "disabled": true,
  157. "width": 120
  158. },
  159. {
  160. "label": "制单日期",
  161. "prop": "createTime",
  162. "disabled": true,
  163. "width": 150
  164. },
  165. {
  166. "label": "最新修改人",
  167. "prop": "updateUserName",
  168. "width": 120
  169. },
  170. {
  171. "label": "最新修改时间",
  172. "prop": "updateTime",
  173. "width": 150
  174. }
  175. ]
  176. }