amortizeCostSummaryList.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. export default {
  2. height: 'auto',
  3. calcHeight: 30,
  4. tip: false,
  5. searchShow: true,
  6. searchMenuSpan: 6,
  7. border: true,
  8. index: true,
  9. addBtn: false,
  10. menu: false,
  11. searchLabelWidth: 140,
  12. labelWidth: 140,
  13. menuWidth: 290,
  14. dialogClickModal: false,
  15. dialogWidth: 500,
  16. dialogType: "drawer",
  17. column: [
  18. {
  19. label: '月份',
  20. prop: 'yearAndMonth',
  21. span: 24,
  22. width: 65,
  23. align: 'center',
  24. showOverflowTooltip: true,
  25. },
  26. {
  27. label: '研发项目编号',
  28. prop: 'xmbh',
  29. span: 24,
  30. width: 100,
  31. align: 'center',
  32. showOverflowTooltip: true,
  33. },
  34. {
  35. label: '研发项目名称',
  36. prop: 'xmmc',
  37. span: 24,
  38. width: 120,
  39. search: true,
  40. showOverflowTooltip: true,
  41. },
  42. {
  43. label: '资产编号',
  44. prop: 'zcbm',
  45. type: 'input',
  46. span: 24,
  47. width: 100,
  48. align: 'center',
  49. showOverflowTooltip: true,
  50. },
  51. {
  52. label: '无形资产名称',
  53. prop: 'zcmc',
  54. type: 'input',
  55. span: 24,
  56. minWidth: 120,
  57. search: true,
  58. showOverflowTooltip: true,
  59. },
  60. {
  61. label: '资产类别',
  62. prop: 'zclb',
  63. type: 'select',
  64. dicUrl: '/api/kd-system/dict/dictionary?code=zclb',
  65. props: {
  66. label: 'dictValue',
  67. value: 'dictKey',
  68. },
  69. span: 24,
  70. width: 90,
  71. align: 'center',
  72. showOverflowTooltip: true,
  73. search: true,
  74. },
  75. {
  76. label: '功率',
  77. prop: 'gl',
  78. type: 'number',
  79. span: 24,
  80. width: 60,
  81. align: 'center',
  82. showOverflowTooltip: true,
  83. display: true
  84. },
  85. {
  86. label: '用途',
  87. prop: 'yt',
  88. type: 'select',
  89. dicUrl: '/api/kd-system/dict/dictionary?code=zcyt',
  90. props: {
  91. label: 'dictValue',
  92. value: 'dictKey',
  93. },
  94. search: true,
  95. span: 24,
  96. width: 65,
  97. align: 'center',
  98. showOverflowTooltip: true,
  99. },
  100. {
  101. label: '资产原值(元)',
  102. prop: 'zcyz',
  103. type: 'number',
  104. span: 24,
  105. width: 90,
  106. align: 'center',
  107. search: true,
  108. showOverflowTooltip: true,
  109. },
  110. {
  111. label: '净残值率(%)',
  112. prop: 'jcz',
  113. type: 'number',
  114. span: 24,
  115. width: 70,
  116. align: 'center',
  117. search: true,
  118. showOverflowTooltip: true,
  119. },
  120. {
  121. label: '月摊销额(每节点/套)',
  122. prop: 'ytxe',
  123. type: 'number',
  124. span: 24,
  125. minWidth: 110,
  126. align: 'center',
  127. search: true,
  128. showOverflowTooltip: true,
  129. },
  130. {
  131. label: '月使用工时(L)',
  132. prop: 'attendanceHours',
  133. type: 'number',
  134. span: 24,
  135. minWidth: 90,
  136. align: 'center',
  137. search: true,
  138. showOverflowTooltip: true,
  139. },
  140. {
  141. label: '月研发工时(M)',
  142. prop: 'workHours',
  143. type: 'number',
  144. span: 24,
  145. minWidth: 90,
  146. align: 'center',
  147. search: true,
  148. showOverflowTooltip: true,
  149. },
  150. {
  151. label: '研发分摊率(%)',
  152. prop: 'yanfaFenTanLv',
  153. type: 'number',
  154. span: 24,
  155. minWidth: 90,
  156. align: 'center',
  157. showOverflowTooltip: true,
  158. },
  159. {
  160. label: '研发摊销',
  161. prop: 'yanfaTanXiao',
  162. type: 'number',
  163. span: 24,
  164. minWidth: 90,
  165. align: 'center',
  166. showOverflowTooltip: true,
  167. },
  168. ],
  169. };