customerContact.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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": 300,
  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. "label": "库存",
  63. "prop": "kuCun",
  64. "index": 4,
  65. "width":120
  66. },{
  67. "label": "数量",
  68. "prop": "actualQuantity",
  69. "index": 5,
  70. "width":120
  71. },{
  72. "label": "码单重量(吨)",
  73. "prop": "billWeight",
  74. "index": 6,
  75. "width":120,
  76. "rules": [
  77. {
  78. "required": false,
  79. "message": " ",
  80. "trigger": "blur"
  81. }
  82. ]
  83. },{
  84. "label": "发票净重(吨)",
  85. "prop": "invoiceWeight",
  86. "index": 7,
  87. "width":120,
  88. "rules": [
  89. {
  90. "required": false,
  91. "message": " ",
  92. "trigger": "blur"
  93. }
  94. ]
  95. },{
  96. "label": "单价",
  97. "prop": "price",
  98. "index": 8,
  99. "width":100
  100. },{
  101. "label": "合同金额",
  102. "prop": "contractAmount",
  103. "index": 9,
  104. "width":120
  105. },
  106. {
  107. "label": "货物详情",
  108. "prop": "cname",
  109. "index": 10,
  110. "width":120,
  111. "cell": true,
  112. "rules": [
  113. {
  114. "required": false,
  115. "message": " ",
  116. "trigger": "blur"
  117. }
  118. ]
  119. },{
  120. "label": "税率",
  121. "prop": "taxRate",
  122. "index": 11,
  123. "width":100,
  124. "cell": true
  125. },{
  126. "label": "备注",
  127. "prop": "remarks",
  128. "index": 12,
  129. "width":120,
  130. "cell": true,
  131. "rules": [
  132. {
  133. "required": false,
  134. "message": " ",
  135. "trigger": "blur"
  136. }
  137. ]
  138. }
  139. ]
  140. }