|
@@ -365,6 +365,7 @@ const formData = reactive({
|
|
|
height: undefined,
|
|
|
netWeight: undefined,
|
|
|
sharedFolder: "",
|
|
|
+ artworkLibraryId: "0",
|
|
|
bomSpecId: "",
|
|
|
remark: "",
|
|
|
packagingMaterialList: [],
|
|
@@ -508,6 +509,7 @@ const addSpecification = () => {
|
|
|
height: undefined,
|
|
|
netWeight: undefined,
|
|
|
sharedFolder: "",
|
|
|
+ artworkLibraryId: "0",
|
|
|
bomSpecId: "",
|
|
|
remark: "",
|
|
|
packagingMaterialList: [],
|
|
@@ -527,6 +529,7 @@ const addSpecification = () => {
|
|
|
height: undefined,
|
|
|
netWeight: undefined,
|
|
|
sharedFolder: "",
|
|
|
+ artworkLibraryId: "0",
|
|
|
bomSpecId: "",
|
|
|
remark: "",
|
|
|
packagingMaterialList: [],
|
|
@@ -704,6 +707,7 @@ const clickDrawingFile = (index) => {
|
|
|
const selectPic = (row) => {
|
|
|
formData.data.skuSpecList[drawingFileIndex.value].sharedFolder = row.fileUrl;
|
|
|
formData.data.skuSpecList[drawingFileIndex.value].designImgUrl = row.imgUrl;
|
|
|
+ formData.data.skuSpecList[drawingFileIndex.value].artworkLibraryId = row.id;
|
|
|
ElMessage({ message: "选择完成", type: "success" });
|
|
|
openDrawingFile.value = false;
|
|
|
};
|