73 lines
1.1 KiB
JavaScript
73 lines
1.1 KiB
JavaScript
export const userTypes = {
|
|
'0': '个体商户',
|
|
'1': '企业商户',
|
|
}
|
|
|
|
export const contactPersonTypes = {
|
|
'LEGAL': '经营者/法定代表人',
|
|
'SUPER': '经办人',
|
|
}
|
|
|
|
export const certTypes = {
|
|
'0': '身份证'
|
|
}
|
|
|
|
export const companyChildTypes = {
|
|
'1': '普通企业',
|
|
'2': '事业单位',
|
|
'3': '政府机关',
|
|
'4': '社会组织',
|
|
}
|
|
|
|
export const sexs = {
|
|
'0': '男',
|
|
'1': '女'
|
|
}
|
|
|
|
export const settlementTypes = {
|
|
'0': '非法人结算',
|
|
'1': '法人结算'
|
|
}
|
|
|
|
export const settlementCardTypes = {
|
|
'11': '对私借记卡',
|
|
'21': '对公借记卡',
|
|
}
|
|
// WAIT 待提交
|
|
// INIT 待处理
|
|
// AUDIT 待审核
|
|
// SIGN 待签约
|
|
// FINISH 已完成
|
|
// REJECTED 失败
|
|
|
|
export const statusList = [{
|
|
value: 'WAIT',
|
|
name: '待提交',
|
|
class: 'gray'
|
|
},
|
|
{
|
|
value: 'INIT',
|
|
name: '待处理',
|
|
class: 'warning'
|
|
},
|
|
{
|
|
value: 'AUDIT',
|
|
name: '待审核',
|
|
class: 'warning'
|
|
},
|
|
{
|
|
value: 'SIGN',
|
|
name: '待签约',
|
|
class: 'warning'
|
|
},
|
|
{
|
|
value: 'FINISH',
|
|
name: '已完成',
|
|
class: 'success'
|
|
},
|
|
{
|
|
value: 'REJECTED',
|
|
name: '失败',
|
|
class: 'error'
|
|
},
|
|
] |