optionList.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. export const option ={
  2. searchShow: true,
  3. searchMenuSpan: 8,
  4. align: "center",
  5. searchSpan: 8,
  6. tip: false,
  7. border: true,
  8. index: true,
  9. addBtn: false,
  10. viewBtn: false,
  11. editBtn: false,
  12. delBtn: false,
  13. menuWidth: 70,
  14. searchIcon: true,
  15. searchIndex: 2,
  16. column: [
  17. {
  18. label: "系统编号",
  19. prop: "sysNo",
  20. },
  21. {
  22. label: "客户",
  23. prop: "corpId",
  24. search: true,
  25. searchSpan: 8,
  26. },
  27. {
  28. label: "融资日期",
  29. prop: "financingDate",
  30. type: "date",
  31. format: 'yyyy-MM-dd',
  32. valueFormat: 'yyyy-MM-dd',
  33. search: true,
  34. searchSpan: 8,
  35. },
  36. {
  37. label: "融资类别",
  38. prop: "financingType",
  39. type: "select",
  40. dataType: 'number',
  41. props: {
  42. label: "dictValue",
  43. value: "dictKey"
  44. },
  45. dicData: [],
  46. },
  47. {
  48. label: "融资金额",
  49. prop: "financingAmount",
  50. },
  51. {
  52. label: "状态",
  53. prop: "status",
  54. type: "select",
  55. dataType: 'number',
  56. props: {
  57. label: "dictValue",
  58. value: "dictKey"
  59. },
  60. dicData: [],
  61. },
  62. {
  63. label: "备注",
  64. prop: "remarks",
  65. }
  66. ]
  67. }
  68. export const optionList ={
  69. align: "center",
  70. addBtn: false,
  71. refreshBtn: false,
  72. editBtn: false,
  73. delBtn: false,
  74. border: true,
  75. menuWidth: 120,
  76. stripe: true,
  77. column: [
  78. {
  79. label: "费用名称",
  80. prop: "feeId",
  81. overHidden: true,
  82. cell:true,
  83. width: 120,
  84. },
  85. {
  86. label: "计价单位",
  87. prop: "feeUnitId",
  88. overHidden: true,
  89. cell:true,
  90. width: 120,
  91. },
  92. {
  93. label: "开始天数",
  94. prop: "fromDays",
  95. overHidden: true,
  96. cell:true,
  97. width: 120,
  98. },
  99. {
  100. label: "结束天数",
  101. prop: "enDays",
  102. overHidden: true,
  103. cell:true,
  104. width: 120,
  105. },
  106. {
  107. label: "单价",
  108. prop: "price",
  109. overHidden: true,
  110. cell:true,
  111. width: 120,
  112. },
  113. {
  114. label: "状态",
  115. prop: "status",
  116. overHidden: true,
  117. cell:true,
  118. width: 120,
  119. },
  120. {
  121. label: "备注",
  122. prop: "remark",
  123. overHidden: true,
  124. cell:true,
  125. width: 120,
  126. },
  127. ]
  128. }