customerContact.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. {
  2. "lazy": true,
  3. "tip": false,
  4. "simplePage": true,
  5. "searchShow": true,
  6. "addBtn":false,
  7. "editBtn":false,
  8. "delBtn":false,
  9. "addRowBtn":false,
  10. "cellBtn":false,
  11. "cancelBtn":false,
  12. "refreshBtn": false,
  13. "searchMenuSpan": 6,
  14. "dialogWidth": "60%",
  15. "align": "center",
  16. "tree": true,
  17. "border": true,
  18. "index": true,
  19. "stripe": true,
  20. "selection": false,
  21. "menuWidth": 150,
  22. "dialogClickModal": false,
  23. "showSummary": true,
  24. "summaryText": "合计",
  25. "sumColumnList": [
  26. {
  27. "name": "actualQuantity",
  28. "type": "sum",
  29. "decimals": 6
  30. },
  31. {
  32. "name": "contractAmount",
  33. "type": "sum",
  34. "decimals": 6
  35. },
  36. {
  37. "name": "billWeight",
  38. "type": "sum",
  39. "decimals": 6
  40. },
  41. {
  42. "name": "invoiceWeight",
  43. "type": "sum",
  44. "decimals": 6
  45. },
  46. {
  47. "name": "inventoryNumber",
  48. "type": "sum",
  49. "decimals": 6
  50. },
  51. {
  52. "name": "inWeight",
  53. "type": "sum",
  54. "decimals": 6
  55. }
  56. ],
  57. "column":[
  58. {
  59. "label": "提单号",
  60. "prop": "billNo",
  61. "overHidden": true,
  62. "index": 1,
  63. "width":150
  64. },{
  65. "label": "合同号",
  66. "prop": "contractNumber",
  67. "overHidden": true,
  68. "index": 2,
  69. "width":150
  70. },{
  71. "label": "货物品种",
  72. "prop": "priceCategory",
  73. "overHidden": true,
  74. "index": 3,
  75. "width":200,
  76. "rules": [
  77. {
  78. "required": false,
  79. "message": " ",
  80. "trigger": "blur"
  81. }
  82. ]
  83. },
  84. {
  85. "label": "箱号",
  86. "prop": "cntrNo",
  87. "overHidden": true,
  88. "index": 4,
  89. "width":120
  90. },
  91. {
  92. "label": "库存件数",
  93. "prop": "inventoryNumber",
  94. "overHidden": true,
  95. "index": 5,
  96. "width":120
  97. },
  98. {
  99. "label": "库存重量",
  100. "prop": "inWeight",
  101. "overHidden": true,
  102. "index": 6,
  103. "width":120
  104. },
  105. {
  106. "label": "件数",
  107. "prop": "actualQuantity",
  108. "overHidden": true,
  109. "index": 7,
  110. "width":120
  111. },
  112. {
  113. "label": "发票重量(吨)",
  114. "prop": "invoiceWeight",
  115. "overHidden": true,
  116. "index": 8,
  117. "width":120,
  118. "rules": [
  119. {
  120. "required": false,
  121. "message": " ",
  122. "trigger": "blur"
  123. }
  124. ]
  125. },
  126. {
  127. "label": "码单重量(吨)",
  128. "prop": "billWeight",
  129. "overHidden": true,
  130. "index": 9,
  131. "width":120,
  132. "rules": [
  133. {
  134. "required": false,
  135. "message": " ",
  136. "trigger": "blur"
  137. }
  138. ]
  139. },
  140. {
  141. "label": "单价",
  142. "prop": "price",
  143. "overHidden": true,
  144. "index": 10,
  145. "width":100
  146. },{
  147. "label": "销售金额",
  148. "prop": "contractAmount",
  149. "overHidden": true,
  150. "index": 11,
  151. "width":120
  152. },
  153. {
  154. "label": "备注",
  155. "prop": "remarks",
  156. "overHidden": true,
  157. "index": 12,
  158. "width":120,
  159. "cell": true,
  160. "rules": [
  161. {
  162. "required": false,
  163. "message": " ",
  164. "trigger": "blur"
  165. }
  166. ]
  167. },
  168. {
  169. "label": "创建人",
  170. "prop": "createUserName",
  171. "overHidden": true,
  172. "index": 13,
  173. "width":100
  174. },
  175. {
  176. "label": "创建日期",
  177. "prop": "createTime",
  178. "type": "date",
  179. "format": "yyyy-MM-dd HH:mm:ss",
  180. "overHidden": true,
  181. "index": 14,
  182. "width":160
  183. },
  184. {
  185. "label": "修改人",
  186. "prop": "updateUserName",
  187. "overHidden": true,
  188. "index": 15,
  189. "width":100
  190. },
  191. {
  192. "label": "修改日期",
  193. "prop": "updateTime",
  194. "type": "date",
  195. "format": "yyyy-MM-dd HH:mm:ss",
  196. "overHidden": true,
  197. "index": 16,
  198. "width":160
  199. }
  200. ]
  201. }