1. 新增MemoInput组件的maxSuggestions配置,限制下拉提示条数 2. 为调拨单相关页面替换输入框为带记忆功能的MemoInput 3. 移除冗余的regrade_quality_type字典依赖 4. 给删除按钮增加glc角色权限控制 5. 简化删除操作的Promise链式调用逻辑 6. 新增调拨单号、名称的枚举存储key
17 lines
813 B
JavaScript
17 lines
813 B
JavaScript
// 本地缓存提示输入框可用的storageKey
|
|
export const MemoInputStorageKey = {
|
|
productName: 'productName', // 钢卷类型名称
|
|
material: 'material', // 钢卷材质
|
|
manufacturer: 'manufacturer', // 钢卷制造商
|
|
surfaceTreatmentDesc: 'surfaceTreatmentDesc', // 钢卷表面处理
|
|
zincLayer: 'zincLayer', // 钢卷锌层
|
|
licensePlate: 'licensePlate', // 车牌号
|
|
qualityStatus: 'qualityStatus', // 质量状态
|
|
trimmingRequirement: 'trimmingRequirement', // 钢卷修剪要求
|
|
packingStatus: 'packingStatus', // 原料材质
|
|
packagingRequirement: 'packagingRequirement', // 打包要求
|
|
coilSpec: 'coilSpec', // 钢卷规格
|
|
coatingType: 'coatingType', // 钢卷镀层种类
|
|
transferNo: 'transferNo', // 调拨单号
|
|
transferName: 'transferName', // 调拨单名称
|
|
} |