Browse Source

完善

master
yunuo970428 1 month ago
parent
commit
4517365a85
  1. 30
      secure.html

30
secure.html

@ -59,12 +59,12 @@
<div class="secure-popup__close" onclick="closePopuptc()">
<img src="./images/close.png">
</div>
<div style="display: flex;justify-content: space-around;align-content: center">
<div>
<div style="display: flex;flex-direction: row;justify-content: space-between;align-content: center">
<div style="width: 60%">
<div style="background-color: #262A2F;border-radius: 5px 0px 5px 0px;height: 40px;display: flex;flex-direction: column;justify-content: center">
<span style="color: #FFFFFF;text-align: center">标准套餐</span>
</div>
<table>
<table style="width: 100%">
<tr style="height: 50px">
<td rowspan="3" style="font-size: 16px; font-weight: 700">基础防护</td>
<td class="biaozhun-taocan" data="300" fuwu="1"><img class="thumbnail_1" referrerpolicy="no-referrer" src="./images/unchoice.png">
@ -133,21 +133,21 @@
</tr>
</table>
</div>
<div style="display: flex;flex-direction: column;justify-content: center;align-content: center">
<div class="modal-body">
<span class="control-label" style="text-align: center;width: 100%;float: left">您选择了标准套餐,<span class="gongji">0</span>元/月</span>
<span class="control-label" style="text-align: center;width: 100%;float: left">请留下您的联系方式,我们会尽快与您联系</span>
<div style="display: flex;flex-direction: column;justify-content: center;align-content: center;margin-left: 10px">
<div class="modal-body" style="width: 90%">
<span class="control-label" style="text-align: center;width: 80%;float: left">您选择了标准套餐,<span class="gongji">0</span>元/月</span>
<span class="control-label" style="text-align: center;width: 80%;float: left">请留下您的联系方式,我们会尽快与您联系</span>
<form id="myModal2_form" class="form-horizontal" role="form" onsubmit="return submit_myModal2_btn();">
<div style="margin-top: 10px;width: 100%">
<input type="text" class="form-control" name="name" placeholder="姓名" style="height: 45px;width: 100%"/>
<input type="text" class="form-control" name="name" placeholder="姓名" style="height: 45px;width: 80%"/>
</div>
<div style="margin-top: 10px;width: 100%">
<input type="text" class="form-control big" name="telephone" placeholder="电话" style="height: 45px;width: 100%">
<input type="text" class="form-control big" name="telephone" placeholder="电话" style="height: 45px;width: 80%">
</div>
<div style="margin-top: 10px; margin-bottom: 10px;width: 100%">
<input type="text" class="form-control big" name="companyName" placeholder="公司名称" style="height: 45px;width: 100%">
<input type="text" class="form-control big" name="companyName" placeholder="公司名称" style="height: 45px;width: 80%">
</div>
<button type="submit" style="background-color: rgba(21, 170, 125, 1);margin-left: 15px; width: 95%;display: block;font-size: 18px;border-radius: 6px;padding: 10px 16px">
<button type="submit" style="background-color: rgba(21, 170, 125, 1);margin-left: 15px; width: 75%;display: block;font-size: 18px;border-radius: 6px;padding: 10px 16px">
<span style="color: white">提交您的信息</span>
</button>
</form>
@ -201,6 +201,9 @@
padding-left: 5px;
}
</style>
<script>
var time = ''
</script>
<script>
var taocan = 0;
$('td.biaozhun-taocan').on('click', function(){
@ -285,6 +288,7 @@
function openPopup() {
document.getElementById("popup").style.display = "block";
document.getElementById("mask").style.display = "block";
time = Date.now()
$('#codeImg').attr('src', 'http://aos.yyundong.com/ycsafe/captcha/captchaImage?type=math&timestamp=' + Date.now());
}
@ -343,7 +347,8 @@
'name': name,
'telephone': telephone,
'companyName': companyName,
'captcha': captcha
'captcha': captcha,
'timestamp': time,
}, function (resp) {
if (!!resp && !!resp.result) {
@ -355,6 +360,7 @@
}
function changeCodeImg() {
time = Date.now()
$('#codeImg').attr('src', 'http://aos.yyundong.com/ycsafe/captcha/captchaImage?type=math&timestamp=' + Date.now());
}
</script>

Loading…
Cancel
Save