| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- export default {
- 类型用途: 'type_use',
- 分类编号: 'classify_no',
- 分隔符: 'separate',
- 任务类型: 'taskCategory',
- 流程分类: 'processCategory',
- 角度: 'angle',
- 生命周期: 'life_cycle',
- 网络状态: 'network_status',
- 计量单位: 'measuring_uint',
- 金额单位: 'money_unit',
- 仓库: 'warehouse',
- 时间单位: 'time_unit',
- 处置仓库: 'modificatiWnarehouse',
- 干燥区域: 'drying_area',
- 按单按库: 'order_library',
- 日期方式: 'date_method',
- 开槽类型: 'slotting_type',
- 不良品处理类型: 'unqualified_products_type',
- 返工返修处置: 'return_repair_work_type',
- 订单类型: 'order_type',
- 不合格品原因: 'unqualified_products_reason',
- 订单计划类型: 'plan_type',
- 异常类型: 'Exception_type',
- 请托类型: 'entrust_type',
- 退料场景: 'returnScenario',
- 精度等级: 'accuracy_level',
- 质检计划类型: 'inspection_plan_type',
- 处置状态: 'dispose_status',
- 紧急程度: 'urgent_type',
- 记录规则类型: 'record_sheet',
- 检查有效期单位: 'validity_unit',
- 事项类型: 'record_rules_item_type',
- 报工类型: 'record_rules_report_work_type',
- 执行方式: 'produce_task_config_execute_method',
- 记录规则报工类型: 'record_rules_report_work_type',
- 记录规则执行方式: 'produce_task_config_execute_method',
- 记录规则事项类型: 'record_rules_item_type',
- 规则类型: 'rule_type',
- 规则状态: 'rule_status',
- 规则周期: 'rule_cycle',
- 流程实例的结果: 'bpm_process_instance_result',
- 取样类型: 'quality_method_code',
- 放行类型: 'checklist_type',
- 文档类型: 'doc_type',
- 工艺参数单位: 'parameter_code',
- 巡点检周期: 'patrol_cycle',
- 业务类型: 'business_type',
- 行业类别: 'industry_type',
- 记录表模板样式: 'record_template_style',
- 数学字符: 'mathematical_symbol'
- };
- export const numberList = ['date_method'];
- export const reviewStatus = {
- 0: '未提交',
- 1: '审核中',
- 2: '已审核',
- 3: '审核不通过'
- };
- export const produceTypeList = [
- {
- label: '加工',
- value: 1
- },
- {
- label: '装配',
- value: 3
- }
- ];
- // 质检方案状态
- export const inspectionProjectStatus = [
- {
- label: '待检',
- value: 0,
- type: 'info'
- },
- {
- label: '已检',
- value: 1,
- type: 'success'
- },
- {
- label: '已派单',
- value: 2,
- type: 'warning'
- },
- {
- label: '已请托',
- value: 3,
- type: 'warning'
- },
- {
- label: '检验中',
- value: 4,
- type: ''
- }
- ];
|