Compare commits

...

1 Commits

2 changed files with 10 additions and 0 deletions

View File

@@ -262,6 +262,11 @@ export default {
$("#tipMsg").text("请输入体验天数");
$("#tipModal").modal('show');
return;
}
if ($('#sendDays').val()>30) {
$("#tipMsg").text("赠送天数不超过30天");
$("#tipModal").modal('show');
return;
}
var sendDays = $('#sendDays').val();
var sendDesc = $('#sendDesc').val();

View File

@@ -254,6 +254,11 @@ export default {
$("#tipModal").modal('show');
return;
}
if ($('#sendDays').val()>30) {
$("#tipMsg").text("赠送天数不超过30天");
$("#tipModal").modal('show');
return;
}
var sendDays = $('#sendDays').val();
var sendDesc = $('#sendDesc').val();
var nameplateId = $('#sendNameplateId').val();