edit
This commit is contained in:
@@ -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 () {
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user