customerContact.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. "selection": false,
  20. "menuWidth": 150,
  21. "dialogClickModal": false,
  22. "showSummary": true,
  23. "summaryText": "合计",
  24. "sumColumnList": [
  25. {
  26. "name": "actualQuantity",
  27. "type": "sum"
  28. },
  29. {
  30. "name": "contractAmount",
  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":150
  48. },{
  49. "label": "合同号",
  50. "prop": "contractNumber",
  51. "index": 2,
  52. "width":150
  53. },{
  54. "label": "货物品种",
  55. "prop": "priceCategory",
  56. "index": 3,
  57. "width":200,
  58. "rules": [
  59. {
  60. "required": false,
  61. "message": " ",
  62. "trigger": "blur"
  63. }
  64. ]
  65. },
  66. {
  67. "label": "箱号",
  68. "prop": "cntrNo",
  69. "index": 4,
  70. "width":120
  71. },
  72. {
  73. "label": "库存件数",
  74. "prop": "inventoryNumber",
  75. "index": 5,
  76. "width":120
  77. },
  78. {
  79. "label": "库存重量",
  80. "prop": "inWeight",
  81. "index": 5,
  82. "width":120
  83. },
  84. {
  85. "label": "件数",
  86. "prop": "actualQuantity",
  87. "index": 6,
  88. "width":120
  89. },
  90. {
  91. "label": "发票重量(吨)",
  92. "prop": "invoiceWeight",
  93. "index": 7,
  94. "width":120,
  95. "rules": [
  96. {
  97. "required": false,
  98. "message": " ",
  99. "trigger": "blur"
  100. }
  101. ]
  102. },
  103. {
  104. "label": "码单重量(吨)",
  105. "prop": "billWeight",
  106. "index": 8,
  107. "width":120,
  108. "rules": [
  109. {
  110. "required": false,
  111. "message": " ",
  112. "trigger": "blur"
  113. }
  114. ]
  115. },
  116. {
  117. "label": "单价",
  118. "prop": "price",
  119. "index": 9,
  120. "width":100
  121. },{
  122. "label": "销售金额",
  123. "prop": "contractAmount",
  124. "index": 10,
  125. "width":120
  126. },
  127. {
  128. "label": "备注",
  129. "prop": "remarks",
  130. "index": 14,
  131. "width":120,
  132. "cell": true,
  133. "rules": [
  134. {
  135. "required": false,
  136. "message": " ",
  137. "trigger": "blur"
  138. }
  139. ]
  140. }
  141. ]
  142. }