This commit is contained in:
2025-04-09 16:46:56 +08:00
parent 11c1d3edfa
commit ea0c99e4d0
3 changed files with 26 additions and 16 deletions
+11 -1
View File
@@ -1426,7 +1426,17 @@
layer.msg($("select[name='kind2Value'] option:selected").html() + "最大尺寸超过150*150CM需要拼接!", {offset: ['300px', '300px']}, function () {
});
}
} else if ($("select[name='kind2Value'] option:selected").val() == 11 || $("select[name='kind2Value'] option:selected").val() == 13) {
} else if ($("select[name='kind2Value'] option:selected").val() == 11) {
if (size.split("*")[1] < 20 || size.split("*")[0] < 20) {
layer.msg($("select[name='kind2Value'] option:selected").html() + "最小尺寸20*20CM", {offset: ['300px', '300px']}, function () {
});
return false;
}
if ((size.split("*")[1] > 500 || size.split("*")[0] > 500)) {
layer.msg($("select[name='kind2Value'] option:selected").html() + "最大尺寸超过500*500CM需要拼接!", {offset: ['300px', '300px']}, function () {
});
}
} else if ($("select[name='kind2Value'] option:selected").val() == 13) {
if (size.split("*")[1] < 20 || size.split("*")[0] < 20) {
layer.msg($("select[name='kind2Value'] option:selected").html() + "最小尺寸20*20CM", {offset: ['300px', '300px']}, function () {
});