| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- 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',
- 角色数据权限字典: 'role_data_authority_dic',
- 区域等级: 'main_area_level',
- 区域类型: 'main_area_type',
- 工种类型: 'work_type',
- '客户/供应商资质类型': 'contact_qc_type',
- 版本规则分类: 'version_rule_type',
- 生产类型: 'productionType',
- 质检标准类型: 'quality_testing_code',
- 质检方式: 'quality_method_code',
- 质检项标准单位: 'quality_inspection_standard_unit',
- 数学字符: 'mathematical_symbol',
- 质检类型: 'inspection_type',
- 不良品处理类型: 'unqualified_products_type',
- 质检计划类型: 'inspection_plan_type',
- 预警类型: 'warning_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'
- ];
- //审核状态
- export const reviewStatus = {
- 0: '未提交',
- 1: '审核中',
- 2: '已审核',
- 3: '审核不通过'
- };
|