109 lines
1.7 KiB
JavaScript
109 lines
1.7 KiB
JavaScript
export const typelist = [{
|
|
text: '常规保养',
|
|
type: 1,
|
|
from: 'orderType'
|
|
},{
|
|
text: '故障维修',
|
|
type: 2,
|
|
from: 'orderType'
|
|
},{
|
|
text: '事故维修',
|
|
type: 3,
|
|
from: 'accientOrderType'
|
|
},{
|
|
text: '退车',
|
|
type: 4,
|
|
from: 'backOrderType'
|
|
}]
|
|
|
|
export const settlementList = [{
|
|
text: '挂帐月结',
|
|
type: 1,
|
|
from: true
|
|
},{
|
|
text: '现金支付',
|
|
type: 2,
|
|
from: true
|
|
},{
|
|
text: '保险理赔',
|
|
type: 3,
|
|
from: true
|
|
},{
|
|
text: '索赔',
|
|
type: 4,
|
|
from: true
|
|
},{
|
|
text: '返修',
|
|
type: 5,
|
|
from: true
|
|
}]
|
|
|
|
export const returnList = [{
|
|
text: '到期退车',
|
|
type: 1,
|
|
from: true
|
|
},{
|
|
text: '违约退车',
|
|
type: 2,
|
|
from: true
|
|
},{
|
|
text: '回收车',
|
|
type: 3,
|
|
from: true
|
|
}]
|
|
|
|
export const damageList = [{
|
|
text: '双证齐全',
|
|
type: 1,
|
|
from: true
|
|
},{
|
|
text: '缺行驶证',
|
|
type: 2,
|
|
from: true
|
|
},{
|
|
text: '缺营运证',
|
|
type: 3,
|
|
from: true
|
|
}]
|
|
|
|
export const appearanceList = [{
|
|
text: '完好',
|
|
type: 1,
|
|
from: true
|
|
},{
|
|
text: '划痕',
|
|
type: 2,
|
|
from: true
|
|
},{
|
|
text: '破损',
|
|
type: 3,
|
|
from: true
|
|
}]
|
|
|
|
export const claimProfressList = [{
|
|
text: '待盖章',
|
|
type: 1,
|
|
from: true
|
|
},{
|
|
text: '已提交',
|
|
type: 2,
|
|
from: true
|
|
},{
|
|
text: '待打款',
|
|
type: 3,
|
|
from: true
|
|
}]
|
|
|
|
export const claimTypeList = [{
|
|
text: '未到账',
|
|
type: 1,
|
|
from: true
|
|
},{
|
|
text: '部分到账',
|
|
type: 2,
|
|
from: true
|
|
},{
|
|
text: '已到账',
|
|
type: 3,
|
|
from: true
|
|
}] |