Commit 732ad1bc authored by 332784038@qq.com's avatar 332784038@qq.com

Merge branch 'master-fix' into pre-release

# Conflicts:
#	src/views/ecw/productPrice/edit.vue
parents 652b3a88 14b81c4c
......@@ -874,7 +874,11 @@ export default {
return packging
.filter((item) => !!item.packagingTypes)
.map((item) => {
item.packagingTypes = item.packagingTypes?.join(",") || "";
if (item.packagingTypes.length === 0){
item.packagingTypes = "";
} else {
item.packagingTypes = item.packagingTypes?.join(",") || "";
}
return item;
});
},
......
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