customerContact.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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": true,
  20. "menuWidth": 180,
  21. "dialogClickModal": false,
  22. "showSummary": true,
  23. "summaryText": "合计",
  24. "sumColumnList": [
  25. {
  26. "name": "contractAmount",
  27. "type": "sum"
  28. },
  29. {
  30. "name": "billWeight",
  31. "type": "sum"
  32. },
  33. {
  34. "name": "invoiceWeight",
  35. "type": "sum"
  36. }
  37. ],
  38. "column":[
  39. {
  40. "label": "提单号",
  41. "prop": "billNo",
  42. "index": 1,
  43. "width":150
  44. },{
  45. "label": "合同号",
  46. "prop": "contractNumber",
  47. "index": 2,
  48. "width":150
  49. },{
  50. "label": "货物品种",
  51. "prop": "priceCategory",
  52. "index": 3,
  53. "width":200,
  54. "rules": [
  55. {
  56. "required": false,
  57. "message": " ",
  58. "trigger": "blur"
  59. }
  60. ]
  61. },
  62. {
  63. "label": "箱号",
  64. "prop": "cntrNo",
  65. "index": 4,
  66. "width":120
  67. },
  68. {
  69. "label": "库存件数",
  70. "prop": "inventoryNumber",
  71. "index": 5,
  72. "width":120
  73. },
  74. {
  75. "label": "库存重量",
  76. "prop": "inWeight",
  77. "index": 5,
  78. "width":120
  79. },
  80. {
  81. "label": "件数",
  82. "prop": "actualQuantity",
  83. "index": 6,
  84. "width":120
  85. },
  86. {
  87. "label": "发票重量(吨)",
  88. "prop": "invoiceWeight",
  89. "index": 7,
  90. "width":120,
  91. "rules": [
  92. {
  93. "required": false,
  94. "message": " ",
  95. "trigger": "blur"
  96. }
  97. ]
  98. },
  99. {
  100. "label": "码单重量(吨)",
  101. "prop": "billWeight",
  102. "index": 8,
  103. "width":120,
  104. "rules": [
  105. {
  106. "required": false,
  107. "message": " ",
  108. "trigger": "blur"
  109. }
  110. ]
  111. },
  112. {
  113. "label": "单价",
  114. "prop": "price",
  115. "index": 9,
  116. "width":100
  117. },{
  118. "label": "发票金额",
  119. "prop": "contractAmount",
  120. "index": 10,
  121. "width":120
  122. },
  123. {
  124. "label": "币别",
  125. "prop": "currency",
  126. "type": "select",
  127. "dicUrl": "/api/blade-system/dict-biz/dictionary?code=currency",
  128. "props": {
  129. "label": "dictValue",
  130. "value": "dictValue"
  131. },
  132. "index": 11,
  133. "width":120
  134. },
  135. {
  136. "label": "汇率",
  137. "prop": "exRate",
  138. "cell": true,
  139. "index": 12,
  140. "width":120
  141. },
  142. {
  143. "label": "税率",
  144. "prop": "taxRate",
  145. "index": 13,
  146. "width":100,
  147. "cell": true
  148. },{
  149. "label": "备注",
  150. "prop": "remarks",
  151. "index": 14,
  152. "width":120,
  153. "cell": true,
  154. "rules": [
  155. {
  156. "required": false,
  157. "message": " ",
  158. "trigger": "blur"
  159. }
  160. ]
  161. }
  162. ]
  163. }