123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- export const contractTypeList = [{
- label: '循环合同',
- value: 1
- }, {
- label: '代办合同',
- value: 2
- }]
- export const contractStatus = [{
- label: '待审核',
- value: 0,
- color: '#888'
- }, {
- label: '审核通过',
- value: 3,
- color: '#57e63e'
- }, {
- label: '驳回',
- value: 4,
- color: '#E63E3E'
- }]
- export const workType = [{
- label: '循环',
- value: 1
- }, {
- label: '代办',
- value: 2
- }]
- export const alterTypeDetail = [{
- label: '普通变更',
- value: '普通变更'
- }, {
- label: '股权变更',
- value: '股权变更'
- }, {
- label: '减资',
- value: '减资'
- }, {
- label: '跨区变更',
- value: '跨区变更'
- }]
- export const subType = [{
- label: '启用',
- value: 0
- }, {
- label: '停用',
- value: 1
- }]
- export const confirmDefault = [{
- label: '是',
- value: 1
- }, {
- label: '否',
- value: 0
- }]
- export const yesOrNo = [{
- label: '是',
- value: 1
- }, {
- label: '否',
- value: 0
- }]
- export const confirmBool = [{
- label: '是',
- value: true
- }, {
- label: '否',
- value: false
- }]
- export const salaryStatusTypes = [{
- label: '未开始',
- value: 0,
- color: '#fff'
- }, {
- label: '待审核',
- value: 2,
- color: '#0F8BFF'
- }, {
- label: '已完成',
- value: 3,
- color: '#2FCB81'
- }, {
- label: '驳回待处理',
- value: 4,
- color: '#E63E3E'
- }]
- export const taxTypes = [{
- value: '小规模纳税人',
- label: '小规模纳税人'
- }, {
- value: '一般纳税人',
- label: '一般纳税人'
- }, {
- value: '个体工商户',
- label: '个体工商户'
- }]
- export const collectionMethods = [{
- value: '查账征收',
- label: '查账征收'
- }, {
- value: '定期定额',
- label: '定期定额'
- }]
- export const incomeDefault = [{
- value: '0',
- label: '0'
- }, {
- value: '0~200万元',
- label: '0~200万元'
- }, {
- value: '200~500万元',
- label: '200~500万元'
- }, {
- value: '500~1000万元',
- label: '500~1000万元'
- }, {
- value: '1000万元以上',
- label: '1000万元以上'
- }]
- export const selectStatus = [
- {
- label: "未开始",
- value: 0,
- color: "#888",
- },
- {
- label: "进行中",
- value: 1,
- color: "#FFB836",
- },
- {
- label: "已完成",
- value: 3,
- color: "#2FCB81",
- },
- ]
- export const selectMonths = [{
- label: '一月',
- value: '01'
- }, {
- label: '二月',
- value: '02'
- }, {
- label: '三月',
- value: '03'
- }, {
- label: '四月',
- value: '04'
- }, {
- label: '五月',
- value: '05'
- }, {
- label: '六月',
- value: '06'
- }, {
- label: '七月',
- value: '07'
- }, {
- label: '八月',
- value: '08'
- }, {
- label: '九月',
- value: '09'
- }, {
- label: '十月',
- value: '10'
- }, {
- label: '十一月',
- value: '11'
- }, {
- label: '十二月',
- value: '12'
- }]
|