联系方式修改

This commit is contained in:
“wanyongkang”
2023-01-13 18:29:25 +08:00
parent 3987a22b26
commit cc17860446
10 changed files with 51 additions and 23 deletions

View File

@@ -310,8 +310,8 @@
</div>
<div class="item">
<p>大客户/商务合作</p>
<p>电话/微信177 9666 8888</p>
<p>QQ70177252</p>
<p>电话/微信177 1909 2232</p>
<p>QQ937888580</p>
</div>
</div>

View File

@@ -355,6 +355,7 @@
<p style="color: #ec6e58;font-size:30px;font-weight: bold;background-color:#FFFF00">
需求5个以上可以联系客服设置优惠价;
开通后有任何问题可无理由退款,并支持自助提现
退款规则:购买价格-使用天数*天卡价格
</p>
@foreach (var package in item.Packages.Where(m => m.Status == 1&&(m.TenantId==1157||m.TenantId==9999||m.TenantId==10000)).OrderBy(m => m.TenantId))

View File

@@ -27,10 +27,11 @@
var name = $("#username").val()
if(name == '') { alert('手机号不能为空'); return; }
if (!timing(_self)) return;
var url = '/User/SendPhoneCode?key=FindUser_Code&phone=' + name;
var url = '/User/SendPhoneCodevefy?key=FindUser_Code&phone=' + name;
$.ajax({
type: 'GET',
type: 'POST',
url: url,
contentType: "application/json",
success: function (res) {
alert(res.Message)
//if (res.Code == 10000) {

View File

@@ -37,10 +37,11 @@
var name = $("#username").val()
if(name == '') { alert('手机号不能为空'); return; }
if (!timing(_self)) return;
var url = '/user/SendPhoneCode?key=User_Code&phone=' + name;
var url = '/user/SendPhoneCodevefy?key=User_Code&phone=' + name;
$.ajax({
type: 'GET',
type: 'POST',
url: url,
contentType: "application/json",
success: function (res) {
alert(res.Message)
}