export default { 类型用途: 'type_use', 分类编号: 'classify_no', 分隔符: 'separate', 任务类型: 'taskCategory', 流程分类: 'processCategory', 角度: 'angle', 生命周期: 'life_cycle', 网络状态: 'network_status', 金额单位: 'money_unit', 时间单位: 'time_unit', 规则类型: 'rule_type', 规则状态: 'rule_status', 规则周期: 'rule_cycle', 运维计划状态: 'plan_status', 紧急程度: 'urgent_type', 计量单位: 'measuring_uint', 单位: 'packing_unit', 体积单位: 'volume_unit', 重量单位: 'weight_unit', 质保预警参考: 'quality_assurance', 保质期单位: 'date_unit', 排程类型: 'schedule_type', 提前期单位: 'leadtime_unit', 价格单位: 'price_unit', 检验方案: 'inspection_scheme', 文件模块: 'file_module', 产能计划周期: 'capacity_cycle', 产量目标单位: 'target_unit', 产能计划状态: 'capacity_status', 分类层级: 'bom_level', 周转车材质: 'turnover_material', 证件类型: 'id_type', 台账状态: 'ledger', 工种: 'workType', 二级编码规则: 'Secondary', 三级编码规则: 'Third', 工艺参数单位: 'parameter_code', 成型剂类别: 'forming_code', 工位编码: 'Station coding', 机构类型: 'group_type', 工作流任务分配规则的类型: 'bpm_task_assign_rule_type', 工作流任务分配自定义脚本: 'bpm_task_assign_script', 流程实例的结果: 'bpm_process_instance_result', 结算方式: 'settlement_mode', 质保期单位: 'date_unit', 商机阶段: 'business_stage_code', 影响力: 'influence_level_code', 态度: 'attittude_code', 商机来源: 'business_opport_code', 合同类型: 'contract_type', 销售类型: 'order_type', 退货类型: 'sale_return_type', 需求来源类型: 'requirement_source_type', 采购订单类型: 'purchase_type', 退货类型: 'sale_return_order_type', 质检状态: 'quality_control_code', 质检结果: 'Qc_results_code', 采购收货单类型: 'purchase_receive_type', 产品不合格类型: 'product_unqualified_type', 关联类型: 'fin_link_type', 巡点检周期: 'patrol_cycle', '客户/供应商资质类型': 'contact_qc_type', 派车任务类型: 'logistic_delivery_type', 计划紧急程度: 'logistic_urgency_level_type', 计划工单费用类型: 'logistic_list_cost_type', 驾照类型: 'driver_license_type', 单据类型: 'receipt_type', 项目类型: 'pro_projects_type', 项目优先级别: 'pro_projects_level', 项目状态: 'pro_projects_status', 项目任务类型: 'task_type', 交付物类型: 'deliverables_type', 交付物流程类型: 'pro_files_approve_type', 预算单位: 'pro_projects_budget_unit', 异常类型: 'Exception_type', 异常判定: 'Exception_decide', 异常处置: 'Exception_dispose', 问题类型: 'question_type', 变更类型: 'change_type', 请托类型: 'entrust_type', 设备处置方式: 'equipment_Disposal', 不拆物料层规格: 'material_layer', 生产类型: 'productionType', 协同办公分类: 'collaborative_type', 市场活动类型: 'activity_type', 客户联系人状态: 'contact_link_status', 产地:'purchase_origin', 管理类别: 'manage_type', }; export const numberList = [ 'capacity_cycle', 'target_unit', 'capacity_status', // 'date_unit', 'quality_assurance', 'schedule_type', 'leadtime_unit', 'inspection_scheme', 'angle', 'id_type', 'rule_status', 'ledger', 'patrol_cycle' ]; //报价单-是否接受拆单 export const acceptUnpackoptions = [ { label: '接受', value: 1 }, { label: '不接受', value: 0 } ]; //发货审核状态 export const reviewStatusEnum = [ { value: 0, label: '未提交' }, { value: 1, label: '待审核' }, { value: 2, label: '已审核' }, { value: 3, label: '审核未通过' } ]; //主数据分类关联对应常量 export const treeClassifyCodeEnum = { CHACHE: 'w10-2', producerType: 'W10', PROCESSTYPE: 'PROCESS001' }; export const reviewStatus = { 0: '未提交', 1: '审核中', 2: '已审核', 3: '审核不通过' }; //项目管理——项目、计划、任务状态 export const proStatusEnum = [ { value: 0, label: '未开始' }, { value: 1, label: '执行中' }, { value: 2, label: '暂停中' }, { value: 3, label: '已完成' }, { value: 4, label: '已终止' } ]; // 计价方式 export const pricingWayList= [ { id: 1, name: '按数量计费' }, { id: 2, name: '按重量计费' } ] //来源类型 export const relationType= { 1: '收货确认单', }