/** 商品拖拽数据 */ export default class Drag { /** 是否启用拖拽 */ isStart: boolean; /** 当前拖动中的货品索引 */ current?: string; /** 准备插入的货物索引 */ container?: string; /** 插入位置 */ site?: 'u' | 'd'; }