customerContact.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. {
  2. "lazy": true,
  3. "tip": false,
  4. "simplePage": true,
  5. "searchShow": true,
  6. "addBtn":false,
  7. "editBtn":false,
  8. "addRowBtn":false,
  9. "cellBtn":false,
  10. "cancelBtn":false,
  11. "refreshBtn": false,
  12. "searchMenuSpan": 6,
  13. "align": "center",
  14. "delBtn":false,
  15. "dialogWidth": "60%",
  16. "tree": true,
  17. "border": true,
  18. "index": true,
  19. "selection": true,
  20. "menuWidth": 180,
  21. "dialogClickModal": false,
  22. "showSummary": true,
  23. "summaryText": "合计",
  24. "sumColumnList": [
  25. {
  26. "name": "orderQuantity",
  27. "type": "sum"
  28. },
  29. {
  30. "name": "amount",
  31. "type": "sum"
  32. },
  33. {
  34. "name": "billWeight",
  35. "type": "sum"
  36. },
  37. {
  38. "name": "invoiceWeight",
  39. "type": "sum"
  40. }
  41. ],
  42. "column":[
  43. {
  44. "label": "提单号",
  45. "prop": "billNo",
  46. "index": 1,
  47. "width":180,
  48. "cell": true,
  49. "rules": [
  50. {
  51. "required": true,
  52. "message": "请输入提单号",
  53. "trigger": "blur"
  54. }
  55. ]
  56. },{
  57. "label": "货物品种",
  58. "prop": "priceCategory",
  59. "index": 2,
  60. "width":200,
  61. "rules": [
  62. {
  63. "required": true,
  64. "message": "请输入货物品种",
  65. "trigger": "blur"
  66. }
  67. ]
  68. },{
  69. "label": "规格型号",
  70. "prop": "itemType",
  71. "index": 3,
  72. "width":150
  73. },
  74. {
  75. "label": "件数",
  76. "prop": "orderQuantity",
  77. "index": 4,
  78. "width":120
  79. },
  80. {
  81. "label": "发票重量(吨)",
  82. "prop": "invoiceWeight",
  83. "index": 5,
  84. "width":120,
  85. "rules": [
  86. {
  87. "required": false,
  88. "message": " ",
  89. "trigger": "blur"
  90. }
  91. ]
  92. },
  93. {
  94. "label": "码单重量(吨)",
  95. "prop": "billWeight",
  96. "index": 6,
  97. "width":120
  98. },
  99. {
  100. "label": "单价",
  101. "prop": "price",
  102. "index": 7,
  103. "width":120
  104. },
  105. {
  106. "label": "发票金额",
  107. "prop": "amount",
  108. "index": 8,
  109. "width":120,
  110. "rules": [
  111. {
  112. "required": false,
  113. "message": " ",
  114. "trigger": "blur"
  115. }
  116. ]
  117. },
  118. {
  119. "label": "已收件数",
  120. "prop": "actualQuantity",
  121. "index": 9,
  122. "width":100,
  123. "rules": [
  124. {
  125. "required": false,
  126. "message": " ",
  127. "trigger": "blur"
  128. }
  129. ]
  130. },
  131. {
  132. "label": "已收发票重量(吨)",
  133. "prop": "actualWeight",
  134. "index": 9,
  135. "width":120,
  136. "rules": [
  137. {
  138. "required": false,
  139. "message": " ",
  140. "trigger": "blur"
  141. }
  142. ]
  143. },
  144. {
  145. "label": "税率",
  146. "prop": "taxRate",
  147. "index": 10,
  148. "width":120,
  149. "rules": [
  150. {
  151. "required": false,
  152. "message": " ",
  153. "trigger": "blur"
  154. }
  155. ]
  156. },
  157. {
  158. "label": "备注",
  159. "prop": "remarks",
  160. "index": 11,
  161. "width":200,
  162. "cell": true,
  163. "rules": [
  164. {
  165. "required": false,
  166. "message": "请输入备注",
  167. "trigger": "blur"
  168. }
  169. ]
  170. }
  171. ]
  172. }