customerContact.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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": "amount",
  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":180,
  44. "cell": true,
  45. "rules": [
  46. {
  47. "required": true,
  48. "message": "请输入提单号",
  49. "trigger": "blur"
  50. }
  51. ]
  52. },{
  53. "label": "货物品种",
  54. "prop": "priceCategory",
  55. "index": 2,
  56. "width":200,
  57. "rules": [
  58. {
  59. "required": true,
  60. "message": "请输入货物品种",
  61. "trigger": "blur"
  62. }
  63. ]
  64. },{
  65. "label": "规格型号",
  66. "prop": "itemType",
  67. "index": 3,
  68. "width":150
  69. },
  70. {
  71. "label": "数量",
  72. "prop": "orderQuantity",
  73. "index": 4,
  74. "width":120
  75. },
  76. {
  77. "label": "已收数量",
  78. "prop": "actualQuantity",
  79. "index": 5,
  80. "width":100,
  81. "rules": [
  82. {
  83. "required": false,
  84. "message": " ",
  85. "trigger": "blur"
  86. }
  87. ]
  88. },{
  89. "label": "码单重量(吨)",
  90. "prop": "billWeight",
  91. "index": 6,
  92. "width":120
  93. },{
  94. "label": "发票净重(吨)",
  95. "prop": "invoiceWeight",
  96. "index": 7,
  97. "width":120,
  98. "rules": [
  99. {
  100. "required": false,
  101. "message": " ",
  102. "trigger": "blur"
  103. }
  104. ]
  105. },{
  106. "label": "单价",
  107. "prop": "price",
  108. "index": 8,
  109. "width":120
  110. },{
  111. "label": "合同金额",
  112. "prop": "amount",
  113. "index": 9,
  114. "width":120,
  115. "rules": [
  116. {
  117. "required": false,
  118. "message": " ",
  119. "trigger": "blur"
  120. }
  121. ]
  122. },{
  123. "label": "货物详情",
  124. "prop": "itemDescription",
  125. "index": 10,
  126. "width":180,
  127. "cell": true,
  128. "rules": [
  129. {
  130. "required": false,
  131. "message": " ",
  132. "trigger": "blur"
  133. }
  134. ]
  135. },{
  136. "label": "税率",
  137. "prop": "taxRate",
  138. "index": 11,
  139. "width":120,
  140. "cell": true,
  141. "rules": [
  142. {
  143. "required": false,
  144. "message": " ",
  145. "trigger": "blur"
  146. }
  147. ]
  148. }
  149. ]
  150. }