| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- export default {
- 类型用途: 'type_use',
- 分类编号: 'classify_no',
- 分隔符: 'separate',
- 任务类型: 'taskCategory',
- 流程分类: 'processCategory',
- 角度: 'angle',
- 生命周期: 'life_cycle',
- 网络状态: 'network_status',
- 金额单位: 'money_unit',
- 时间单位: 'time_unit',
- 订单来源: 'order_source',
- 订单类型: 'order_type',
- 生产状态: 'production_status',
- 按单按库: 'order_library',
- 紧急程度: 'urgent_type',
- 订单计划类型: 'plan_type',
- 交付要求: 'require_ments',
- 交货状态: 'delivery_status',
- 客户状态: 'contact_status',
- 企业类型: 'company_category',
- 结算方式: 'settlement_mode',
- 付款方式: 'pay_way',
- 商机来源:'business_opport_code',
- 影响力:'influence_level_code',
- 态度:'attittude_code',
- 商机阶段:'business_stage_code',
- 客户联系人状态: 'contact_link_status'
- };
- export const numberList = [
- 'urgent_type',
- 'patrol_cycle',
- 'order_library',
- 'order_type',
- 'require_ments',
- 'order_source',
- 'production_status',
- 'plan_type',
- 'delivery_status'
- ];
- //报价管理-审核枚举
- export const reviewStatus={
- 0:'未提交',
- 1:'待审核',
- 2:'已审核',
- 3:'审核不通过'
- }
- //报价单-是否接受拆单
- export const acceptUnpackoptions=[
- {label:'接受',value:1},
- {label:'不接受',value:0}
- ]
|