Commit 6e15498e authored by limengyang's avatar limengyang

fix(lmy): 新增区域现货商品限制

parent ced412d4
......@@ -115,6 +115,10 @@
};
});
const toRight = () => {
for (const k of selectedRows.value) {
if (['成品模型', '实验动物类', '技术服务'].includes(k.type))
return message.error('暂不支持实验动物和技术服务类商品');
}
let arr = JSON.parse(JSON.stringify(selectedRows.value));
rightData.value = [...arr, ...rightData.value];
for (let i = 0; i < selectedRows.value.length; i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment