amortizeCostSummaryList.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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: 60,
  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. formatter:(row, value)=>{
  120. return value+'%'
  121. }
  122. },
  123. {
  124. label: '月摊销额(每节点/套)(K)',
  125. prop: 'ytxe',
  126. type: 'number',
  127. span: 24,
  128. minWidth: 110,
  129. align: 'center',
  130. search: true,
  131. showOverflowTooltip: true,
  132. },
  133. {
  134. label: '月使用工时(L)',
  135. prop: 'attendanceHours',
  136. type: 'number',
  137. span: 24,
  138. minWidth: 90,
  139. align: 'center',
  140. search: true,
  141. showOverflowTooltip: true,
  142. },
  143. {
  144. label: '月研发工时(M)',
  145. prop: 'workHours',
  146. type: 'number',
  147. span: 24,
  148. minWidth: 90,
  149. align: 'center',
  150. search: true,
  151. showOverflowTooltip: true,
  152. },
  153. {
  154. label: '研发分摊率(%)(N)',
  155. prop: 'yanfaFenTanLv',
  156. type: 'number',
  157. span: 24,
  158. minWidth: 90,
  159. align: 'center',
  160. showOverflowTooltip: true,
  161. },
  162. {
  163. label: '研发摊销',
  164. prop: 'yanfaTanXiao',
  165. type: 'number',
  166. span: 24,
  167. minWidth: 90,
  168. align: 'center',
  169. showOverflowTooltip: true,
  170. },
  171. ],
  172. };