default.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. export const contractTypeList = [{
  2. label: '循环合同',
  3. value: 1
  4. }, {
  5. label: '代办合同',
  6. value: 2
  7. }]
  8. export const contractStatus = [{
  9. label: '待审核',
  10. value: 0,
  11. color: '#888'
  12. }, {
  13. label: '审核通过',
  14. value: 3,
  15. color: '#57e63e'
  16. }, {
  17. label: '驳回',
  18. value: 4,
  19. color: '#E63E3E'
  20. }]
  21. export const workType = [{
  22. label: '循环',
  23. value: 1
  24. }, {
  25. label: '代办',
  26. value: 2
  27. }]
  28. export const alterTypeDetail = [{
  29. label: '普通变更',
  30. value: '普通变更'
  31. }, {
  32. label: '股权变更',
  33. value: '股权变更'
  34. }, {
  35. label: '减资',
  36. value: '减资'
  37. }, {
  38. label: '跨区变更',
  39. value: '跨区变更'
  40. }]
  41. export const subType = [{
  42. label: '启用',
  43. value: 0
  44. }, {
  45. label: '停用',
  46. value: 1
  47. }]
  48. export const confirmDefault = [{
  49. label: '是',
  50. value: 1
  51. }, {
  52. label: '否',
  53. value: 0
  54. }]
  55. export const yesOrNo = [{
  56. label: '是',
  57. value: 1
  58. }, {
  59. label: '否',
  60. value: 0
  61. }]
  62. export const confirmBool = [{
  63. label: '是',
  64. value: true
  65. }, {
  66. label: '否',
  67. value: false
  68. }]
  69. export const salaryStatusTypes = [{
  70. label: '未开始',
  71. value: 0,
  72. color: '#fff'
  73. }, {
  74. label: '待审核',
  75. value: 2,
  76. color: '#0F8BFF'
  77. }, {
  78. label: '已完成',
  79. value: 3,
  80. color: '#2FCB81'
  81. }, {
  82. label: '驳回待处理',
  83. value: 4,
  84. color: '#E63E3E'
  85. }]
  86. export const taxTypes = [{
  87. value: '小规模纳税人',
  88. label: '小规模纳税人'
  89. }, {
  90. value: '一般纳税人',
  91. label: '一般纳税人'
  92. }, {
  93. value: '个体工商户',
  94. label: '个体工商户'
  95. }]
  96. export const collectionMethods = [{
  97. value: '查账征收',
  98. label: '查账征收'
  99. }, {
  100. value: '定期定额',
  101. label: '定期定额'
  102. }]
  103. export const incomeDefault = [{
  104. value: '0',
  105. label: '0'
  106. }, {
  107. value: '0~200万元',
  108. label: '0~200万元'
  109. }, {
  110. value: '200~500万元',
  111. label: '200~500万元'
  112. }, {
  113. value: '500~1000万元',
  114. label: '500~1000万元'
  115. }, {
  116. value: '1000万元以上',
  117. label: '1000万元以上'
  118. }]
  119. export const selectStatus = [
  120. {
  121. label: "未开始",
  122. value: 0,
  123. color: "#888",
  124. },
  125. {
  126. label: "进行中",
  127. value: 1,
  128. color: "#FFB836",
  129. },
  130. {
  131. label: "已完成",
  132. value: 3,
  133. color: "#2FCB81",
  134. },
  135. ]
  136. export const selectMonths = [{
  137. label: '一月',
  138. value: '01'
  139. }, {
  140. label: '二月',
  141. value: '02'
  142. }, {
  143. label: '三月',
  144. value: '03'
  145. }, {
  146. label: '四月',
  147. value: '04'
  148. }, {
  149. label: '五月',
  150. value: '05'
  151. }, {
  152. label: '六月',
  153. value: '06'
  154. }, {
  155. label: '七月',
  156. value: '07'
  157. }, {
  158. label: '八月',
  159. value: '08'
  160. }, {
  161. label: '九月',
  162. value: '09'
  163. }, {
  164. label: '十月',
  165. value: '10'
  166. }, {
  167. label: '十一月',
  168. value: '11'
  169. }, {
  170. label: '十二月',
  171. value: '12'
  172. }]