BUGFIX:模特预览默认颜色添加;

This commit is contained in:
shahaibo
2024-10-20 13:39:01 +08:00
parent 77e71e3296
commit 0ea96c728c

View File

@@ -2871,6 +2871,7 @@ public class PythonService {
designPythonItemPrint.setPrint_path_list(new ArrayList<>());
dress.setPrint(new PrintToPython(designPythonItemPrint));
dress.setPath("aida-sys-image/images/female/blouse/0628001551.jpg");
dress.setColor("255 255 255");
response.add(dress);
DesignPythonItem skirt = new DesignPythonItem();
@@ -2882,6 +2883,7 @@ public class PythonService {
designPythonItemPrint1.setPrint_path_list(new ArrayList<>());
skirt.setPrint(new PrintToPython(designPythonItemPrint1));
skirt.setPath("aida-sys-image/images/female/skirt/0628000022.jpg");
skirt.setColor("255 255 255");
// skirt.setPath("aida-sys-image/images/female/dress/0628000000.jpg");
response.add(skirt);
} else {
@@ -2894,6 +2896,7 @@ public class PythonService {
designPythonItemPrint.setPrint_path_list(new ArrayList<>());
top.setPrint(new PrintToPython(designPythonItemPrint));
top.setPath("aida-sys-image/images/male/tops/mens_test_10.png");
top.setColor("255 255 255");
response.add(top);
DesignPythonItem bottom = new DesignPythonItem();
@@ -2905,6 +2908,7 @@ public class PythonService {
designPythonItemPrint1.setPrint_path_list(new ArrayList<>());
bottom.setPrint(new PrintToPython(designPythonItemPrint1));
bottom.setPath("aida-sys-image/images/male/bottoms/mens_test_6252.png");
bottom.setColor("255 255 255");
response.add(bottom);
}