9 lines
394 B
JavaScript
9 lines
394 B
JavaScript
|
|
// 本地缓存提示输入框可用的storageKey
|
||
|
|
export const MemoInputStorageKey = {
|
||
|
|
productName: 'productName', // 钢卷类型名称
|
||
|
|
material: 'material', // 钢卷材质
|
||
|
|
manufacturer: 'manufacturer', // 钢卷制造商
|
||
|
|
surfaceTreatmentDesc: 'surfaceTreatmentDesc', // 钢卷表面处理
|
||
|
|
zincLayer: 'zincLayer', // 钢卷锌层
|
||
|
|
licensePlate: 'licensePlate', // 车牌号
|
||
|
|
}
|