| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- export default {
- 单位: 'unit',
- 条码分类: 'BARCODE',
- 资产类型: 'ASSECTSTYPE',
- 物品类型: 'classify',
- 产地: 'purchase_origin',
- 物品机型: 'product_model_key',
- 物品颜色: 'product_color_key',
- 流程实例的结果: 'bpm_process_instance_result',
- 质检计划类型: 'inspection_plan_type',
- }
- //发货审核状态
- export const reviewStatusEnum = [{
- value: 0,
- label: '未提交'
- },
- {
- value: 1,
- label: '审核中'
- },
- {
- value: 2,
- label: '已审核'
- },
- {
- value: 3,
- label: '审核未通过'
- },
- {
- value: 7,
- label: '作废'
- },
- ];
- //商品级别
- export const levelList = [{
- value: '1',
- text: '特级'
- },
- {
- value: '2',
- text: '一级'
- },
- {
- value: '3',
- text: '二级'
- },
- {
- value: '4',
- text: '三级'
- }
- ];
- //属性类型
- export const lbjtList = {
- 1: '自制件',
- 2: '采购件',
- 3: '外协件',
- 4: '受托件'
- };
- //需求类型
- export const requirementSourceType = [
- { value: '1', text: '生产性物资采购' },
- { value: '2', text: '非生产性物资采购' },
- { value: '3', text: '带料生产委外' },
- { value: '4', text: '不带料生产委外' },
- { value: '5', text: '研发委外' },
- { value: '6', text: '外协自供料采购' },
- { value: '7', text: '外协客供料采购' },
- { value: '8', text: '退货委外' },
- { value: '9', text: '委外返修' },
- { value: '99', text: '其他' }
- ];
- // 列表维度
- export const dimensionType = [
- { value: 1, text: '物品维度' },
- { value: 2, text: '批次维度' },
- { value: 3, text: '包装维度' }
- ];
|