amortizeCostSummaryList.js 3.3 KB

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