assetConfig.js 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. // 资产详情列名
  2. export const assetColumn = [
  3. {
  4. title: '申报单号',
  5. dataIndex: 'declarationNumber',
  6. },
  7. {
  8. title: '处置方式',
  9. dataIndex: 'disposalWay',
  10. },
  11. {
  12. title: '批复单号',
  13. dataIndex: 'approvalOrderNumber',
  14. },
  15. {
  16. title: '批复数量',
  17. dataIndex: 'approvalQuantity',
  18. },
  19. {
  20. title: '批复金额',
  21. dataIndex: 'approvalAmount',
  22. },
  23. {
  24. title: '选择处置数量',
  25. dataIndex: 'choiceDisposedQuantity',
  26. },
  27. {
  28. title: '选择处置金额',
  29. dataIndex: 'choiceDisposedAmount',
  30. },
  31. {
  32. title: '评估价值',
  33. dataIndex: 'evaluateValue',
  34. },
  35. {
  36. title: '业务操作',
  37. dataIndex: 'operation',
  38. },
  39. ].map(item => ({ ...item, width: 100, align: 'center', ellipsis: true, resizable: true, maxWidth: 300, minWidth: 75 }));
  40. // 买受方列名
  41. export const acceptorColumn = [
  42. {
  43. title: '序号',
  44. dataIndex: 'index',
  45. key: 'index',
  46. width: 50,
  47. customRender: ({ text, record, index }) => `${index + 1}`,
  48. },
  49. {
  50. title: '买受方名称',
  51. dataIndex: 'buyerName',
  52. width: 100,
  53. },
  54. {
  55. title: '联系电话',
  56. dataIndex: 'phone',
  57. width: 100,
  58. },
  59. {
  60. title: '联系人',
  61. dataIndex: 'contactPerson',
  62. width: 100,
  63. },
  64. {
  65. title: '主营业务',
  66. dataIndex: 'mainBusiness',
  67. width: 100,
  68. },
  69. {
  70. title: '地址',
  71. dataIndex: 'address',
  72. width: 100,
  73. },
  74. {
  75. title: '好评率',
  76. dataIndex: 'positiveRating',
  77. width: 100,
  78. },
  79. {
  80. title: '操作',
  81. dataIndex: 'operation',
  82. key: 'operation',
  83. width: 100,
  84. },
  85. ].map(item => ({ ...item, width: 100, align: 'center', ellipsis: true, resizable: true, maxWidth: 300, minWidth: 75 }));
  86. // 买受方列名-新增
  87. export const acceptorAddColumn = [
  88. {
  89. title: '买受方名称',
  90. dataIndex: 'buyerName',
  91. },
  92. {
  93. title: '联系电话',
  94. dataIndex: 'phone',
  95. },
  96. {
  97. title: '联系人',
  98. dataIndex: 'contactPerson',
  99. },
  100. {
  101. title: '主营业务',
  102. dataIndex: 'mainBusiness',
  103. },
  104. {
  105. title: '地址',
  106. dataIndex: 'address',
  107. },
  108. {
  109. title: '操作',
  110. dataIndex: 'operation',
  111. key: 'operation',
  112. },
  113. ].map(item => ({ ...item, width: 100, align: 'center', ellipsis: true, resizable: true, maxWidth: 300, minWidth: 75 }));
  114. // 评价列名
  115. export const evaluateColumn = [
  116. {
  117. title: '维修时间',
  118. dataIndex: 'date',
  119. key: 'date',
  120. },
  121. {
  122. title: '评价人',
  123. dataIndex: 'user',
  124. key: 'user',
  125. },
  126. {
  127. title: '评价内容',
  128. dataIndex: 'content',
  129. key: 'content',
  130. },
  131. ];
  132. // 处置形式数据
  133. export const disposalFormDatas = [
  134. {
  135. value: 'Auction',
  136. label: '拍卖',
  137. },
  138. {
  139. value: 'Bidding',
  140. label: '招投标',
  141. },
  142. {
  143. value: 'Inquiry',
  144. label: '询价',
  145. },
  146. {
  147. value: 'AgreementTransfer',
  148. label: '协议转让',
  149. },
  150. {
  151. value: 'Other',
  152. label: '其他方式',
  153. },
  154. ];
  155. // 买受方报价
  156. export const quoteColumn = [
  157. {
  158. title: '序号',
  159. dataIndex: 'index',
  160. key: 'index',
  161. width: 50,
  162. customRender: ({ text, record, index }) => `${index + 1}`,
  163. },
  164. {
  165. title: '买受方名称',
  166. dataIndex: 'buyerName',
  167. width: 200,
  168. },
  169. {
  170. title: '联系电话',
  171. dataIndex: 'phone',
  172. width: 120,
  173. },
  174. {
  175. title: '联系人',
  176. dataIndex: 'contactPerson',
  177. width: 100,
  178. },
  179. {
  180. title: '地址',
  181. dataIndex: 'address',
  182. width: 150,
  183. },
  184. {
  185. title: '主营业务',
  186. dataIndex: 'mainBusiness',
  187. width: 150,
  188. },
  189. {
  190. title: '评价',
  191. dataIndex: 'positiveRating',
  192. width: 80,
  193. },
  194. {
  195. title: '报价',
  196. dataIndex: 'quotation',
  197. width: 120,
  198. },
  199. {
  200. title: '操作',
  201. dataIndex: 'operation',
  202. width: 120,
  203. },
  204. ].map(item => ({ ...item, align: 'center', ellipsis: true, resizable: true, maxWidth: 300, minWidth: 75 }));
  205. // 收益登记列名
  206. export const earningsColumn = [
  207. {
  208. title: '合同编号',
  209. dataIndex: 'contractNumber',
  210. isInput:true,
  211. },
  212. {
  213. title: '预计收益',
  214. dataIndex: 'expectedRevenue',
  215. isInput:false,
  216. },
  217. {
  218. title: '实收金额',
  219. dataIndex: 'actualRevenue',
  220. isInput:false,
  221. },
  222. {
  223. title: '评估鉴证费用',
  224. dataIndex: 'appraisalFee',
  225. isInput:false,
  226. },
  227. {
  228. title: '税金',
  229. dataIndex: 'taxAmount',
  230. isInput:false,
  231. },
  232. {
  233. title: '拍卖佣金',
  234. dataIndex: 'auctionCommission',
  235. isInput:false,
  236. },
  237. {
  238. title: '其他费用',
  239. dataIndex: 'otherExpenses',
  240. isInput:false,
  241. },
  242. {
  243. title: '备注',
  244. dataIndex: 'description',
  245. isInput:true,
  246. },
  247. ].map(item => ({ ...item, width: 100, align: 'center', ellipsis: true, resizable: true, maxWidth: 300, minWidth: 75 }));